-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
95 lines (95 loc) · 2.02 KB
/
db.json
File metadata and controls
95 lines (95 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"users": [
{
"email": "algo@gmail.com",
"password": "$2a$10$WKnZ1A1YOXYLo0yb0oketOfVvKHNUTWYp2SUU0GNteiJkSZXsM3fe",
"name": "holi",
"lastname": "boli",
"id": 1
}
],
"machines": [
{
"id": 9,
"name": "dsdaddasdasd",
"description": "dasdsadas",
"lifetime": "11/11/1111",
"active": false
},
{
"id": 10,
"name": "adasdasd",
"description": "dsadsadsadsa",
"lifetime": "11/11/1111",
"active": false
},
{
"id": 11,
"name": "Visitas_Comprobante_de_Entradas",
"description": "dsdsds",
"lifetime": "11/11/1111",
"active": false
}
],
"finances": [
{
"id": 9,
"name": "Comprar de material",
"day": "26/05/2022",
"quantity": 500,
"type": false
},
{
"id": 10,
"name": "Ventas Diarias",
"day": "26/05/2022",
"quantity": 600,
"type": true
},
{
"id": 11,
"name": "Ventas Diarias",
"day": "26/05/2022",
"quantity": 300,
"type": true
},
{
"id": 12,
"name": "Compra Tela",
"day": "26/05/2022",
"quantity": 200,
"type": false
}
],
"products": [
{
"id": 1,
"name": "Blue SEA",
"description": "Product Description",
"inventoryStatus": false,
"category": "Fitness",
"price": 79,
"quantity": 2
},
{
"id": 2,
"name": "Blue",
"description": "Product Description",
"price": 29,
"category": "Clothing",
"quantity": 25,
"inventoryStatus": "INSTOCK",
"rating": 5
},
{
"id": 3,
"name": "Bra",
"description": "Product Description",
"price": 15,
"category": "Accessories",
"quantity": 73,
"inventoryStatus": "INSTOCK",
"rating": 4
}
]
}