-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
90 lines (90 loc) · 1.83 KB
/
db.json
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
{
"Producto": [
{
"id": 1,
"codigo": "PC",
"descripcion": "PC de escritorio",
"precioUnitario": "20000"
},
{
"id": 2,
"codigo": "Cable USB",
"descripcion": "Cable USB",
"precioUnitario": "120"
},
{
"id": 3,
"codigo": "Laptop",
"descripcion": "Pc portatil",
"precioUnitario": "24999"
}
],
"Cliente": [
{
"id": 1,
"nombre": "Nahuel",
"direccion": "Aldea Brasilera",
"cuit": "4123121945"
},
{
"id": 2,
"nombre": "Guille",
"direccion": "Paraná",
"cuit": "654646516516"
},
{
"id": 3,
"nombre": "Juan",
"direccion": "Paraná",
"cuit": "848486748641"
}
],
"Factura": [
{
"id": 2,
"total": 24490.4,
"tipo": "a",
"fecha": "2019-11-12",
"numero": "1",
"puntoVenta": "Paraná",
"cliente": {
"id": 1,
"nombre": "Nahuel",
"direccion": "Aldea Brasilera",
"cuit": "4123121945"
},
"items": [
{
"id": 0,
"cantidad": "1",
"codigo": "PC",
"descripcion": "PC de escritorio",
"iva": "21",
"producto": {
"id": 1,
"codigo": "PC",
"descripcion": "PC de escritorio",
"precioUnitario": "20000"
},
"subtotal": 20000,
"precioUnitario": 24200
},
{
"id": 1,
"cantidad": "2",
"codigo": "Cable USB",
"descripcion": "Cable USB",
"iva": "21",
"producto": {
"id": 2,
"codigo": "Cable USB",
"descripcion": "Cable USB",
"precioUnitario": "120"
},
"subtotal": 240,
"precioUnitario": 290.4
}
]
}
]
}