-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-data.json
More file actions
159 lines (155 loc) · 5.2 KB
/
example-data.json
File metadata and controls
159 lines (155 loc) · 5.2 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*this is an example of the data that you can use to generate the invoice*/
{
"invoices": [
{
"company": {
"name": "jackson-riley",
"ruc": "1793168604001",
"address": "316 Anthony Islands, Hendersonmouth, AK 81929",
"city": "Port Ryanbury",
"country": "Peru",
"phone": "001-900-356-9146",
"website": "www.jackson-riley.com",
"email": "info@jackson-riley.com",
"taxId": "04319450"
},
"invoice": {
"number": "1100001",
"date": "2025-01-02",
"payableAt": "2025-01-05",
"orderNumber": "3400001"
},
"client": {
"name": "ENAP SIPETROL S.A. ENAP SIPEC",
"ruc": "1791239245001",
"address": "AV. GRANADOS VIA A NAYON EDIFICIO EKOPARK OFICINA 3 PISO 3",
"city": "Quito",
"country": "Ecuador",
"employee_name": "Melanie Norris",
"employee_position": "Budget Analyst",
"employee_signature": "enap_signature_1.png",
"in_charge_info": {
"name": "Andrew Price",
"position": "Accounts Payable Clerk",
"signature": "signature1_.png"
}
},
"items": [
{
"code": "36A1",
"description": "Software quality assurance and testing",
"hes": "81200001",
"quantity": 2,
"unitCost": 49.18,
"cost": 98.36
},
{
"code": "36A2",
"description": "Database design and management",
"hes": "81200001",
"quantity": 3,
"unitCost": 68.87,
"cost": 206.61
}
],
"totals": {
"beforeTax": 304.97,
"taxRate": 15,
"tax": 45.75,
"totalDue": 350.72
},
"in_charge_info": {
"name": "Andrew Price",
"position": "Accounts Payable Clerk",
"signature": "signature1_.png"
}
}
]
}
/*this is an example of the data that you can use to generate the contract*/
{
"contracts": [
{
"company": {
"name": "jackson-riley",
"ruc": "1793168604001",
"address": "316 Anthony Islands, Hendersonmouth, AK 81929",
"city": "Port Ryanbury",
"country": "Peru",
"phone": "001-900-356-9146",
"website": "www.jackson-riley.com",
"email": "info@jackson-riley.com",
"taxId": "04319450"
},
"client": {
"name": "ENAP SIPETROL S.A. ENAP SIPEC",
"ruc": "1791239245001",
"address": "AV. GRANADOS VIA A NAYON EDIFICIO EKOPARK OFICINA 3 PISO 3",
"city": "Quito",
"country": "Ecuador",
"employee_name": "Melanie Norris",
"employee_position": "Budget Analyst",
"employee_signature": "enap_signature_1.png",
"in_charge_info": {
"name": "Andrew Price",
"position": "Accounts Payable Clerk",
"signature": "signature1_.png"
}
},
"items": [
{
"code": "36A1",
"description": "Software quality assurance and testing",
"hes": "81200001",
"quantity": 2,
"unitCost": 49.18,
"cost": 98.36
},
{
"code": "36A2",
"description": "Database design and management",
"hes": "81200001",
"quantity": 3,
"unitCost": 68.87,
"cost": 206.61
}
],
"totals": {
"beforeTax": 304.97,
"taxRate": 15,
"tax": 45.75,
"totalDue": 350.72
},
"contract": {
"number": "6500001",
"startDate": "2025-01-02",
"endDate": "2025-09-22",
"invoiceNumber": "1100001",
"hes": "81200001",
"orderNumber": "3400001"
}
}
]
}
/*this is an example of the data that you can use to generate the delivery receipt*/
{
"deliveries": [
{
"receiver": {
"number": "1400001",
"name": "ENAP SIPETROL S.A. ENAP SIPEC",
"from": "jackson-riley",
"ruc": "1793168604001",
"invoiceNumber": "1100001",
"hes": "81200001",
"orderNumber": "3400001",
"date": "2025-01-02",
"endDate": "2025-03-12",
"price": 350.72,
"employee_name": "Melanie Norris",
"employee_position": "Budget Analyst",
"employee_signature": "enap_signature_1.png"
}
}
]
}