desolo-2918 commited on
Commit
a0bee94
·
verified ·
1 Parent(s): 27e801c

Create data/orders.json

Browse files
Files changed (1) hide show
  1. data/orders.json +224 -0
data/orders.json ADDED
@@ -0,0 +1,224 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "order_id": "ORD-10001",
4
+ "customer_id": "CUST-2001",
5
+ "order_date": "2024-01-25T14:30:00",
6
+ "items": [
7
+ {
8
+ "product_id": "PROD-1001",
9
+ "product_name": "Premium Smartphone",
10
+ "quantity": 1,
11
+ "unit_price": 999.99,
12
+ "discount_percentage": 10,
13
+ "final_price": 899.99,
14
+ "total": 899.99
15
+ },
16
+ {
17
+ "product_id": "PROD-1002",
18
+ "product_name": "Wireless Noise-Canceling Headphones",
19
+ "quantity": 1,
20
+ "unit_price": 349.99,
21
+ "discount_percentage": 15,
22
+ "final_price": 297.49,
23
+ "total": 297.49
24
+ }
25
+ ],
26
+ "subtotal": 1197.48,
27
+ "tax_amount": 104.78,
28
+ "shipping_cost": 0.00,
29
+ "total_amount": 1302.26,
30
+ "shipping_address": {
31
+ "street": "123 Main Street",
32
+ "city": "New York",
33
+ "state": "NY",
34
+ "zip_code": "10001",
35
+ "country": "USA"
36
+ },
37
+ "shipping_method": "express",
38
+ "tracking_number": "TRACK-789456123",
39
+ "carrier": "FedEx",
40
+ "status": "shipped",
41
+ "estimated_delivery": "2024-01-28T17:00:00",
42
+ "actual_delivery": null,
43
+ "notes": "Leave at front door"
44
+ },
45
+ {
46
+ "order_id": "ORD-10002",
47
+ "customer_id": "CUST-2002",
48
+ "order_date": "2024-01-20T10:15:00",
49
+ "items": [
50
+ {
51
+ "product_id": "PROD-1003",
52
+ "product_name": "Ultra-Thin Laptop",
53
+ "quantity": 1,
54
+ "unit_price": 1299.99,
55
+ "discount_percentage": 5,
56
+ "final_price": 1234.99,
57
+ "total": 1234.99
58
+ }
59
+ ],
60
+ "subtotal": 1234.99,
61
+ "tax_amount": 108.06,
62
+ "shipping_cost": 0.00,
63
+ "total_amount": 1343.05,
64
+ "shipping_address": {
65
+ "street": "789 Oak Lane",
66
+ "city": "Los Angeles",
67
+ "state": "CA",
68
+ "zip_code": "90001",
69
+ "country": "USA"
70
+ },
71
+ "shipping_method": "standard",
72
+ "tracking_number": "TRACK-456789012",
73
+ "carrier": "UPS",
74
+ "status": "delivered",
75
+ "estimated_delivery": "2024-01-25T17:00:00",
76
+ "actual_delivery": "2024-01-24T15:30:00",
77
+ "notes": null
78
+ },
79
+ {
80
+ "order_id": "ORD-10003",
81
+ "customer_id": "CUST-2003",
82
+ "order_date": "2024-01-18T16:45:00",
83
+ "items": [
84
+ {
85
+ "product_id": "PROD-1004",
86
+ "product_name": "Smart Watch Pro",
87
+ "quantity": 2,
88
+ "unit_price": 399.99,
89
+ "discount_percentage": 20,
90
+ "final_price": 319.99,
91
+ "total": 639.98
92
+ }
93
+ ],
94
+ "subtotal": 639.98,
95
+ "tax_amount": 56.00,
96
+ "shipping_cost": 9.99,
97
+ "total_amount": 705.97,
98
+ "shipping_address": {
99
+ "street": "321 Elm Street",
100
+ "city": "Chicago",
101
+ "state": "IL",
102
+ "zip_code": "60601",
103
+ "country": "USA"
104
+ },
105
+ "shipping_method": "overnight",
106
+ "tracking_number": "TRACK-321654987",
107
+ "carrier": "FedEx",
108
+ "status": "delivered",
109
+ "estimated_delivery": "2024-01-19T12:00:00",
110
+ "actual_delivery": "2024-01-19T10:45:00",
111
+ "notes": "Ring doorbell"
112
+ },
113
+ {
114
+ "order_id": "ORD-10004",
115
+ "customer_id": "CUST-2004",
116
+ "order_date": "2024-01-22T09:30:00",
117
+ "items": [
118
+ {
119
+ "product_id": "PROD-1005",
120
+ "product_name": "Premium Coffee Maker",
121
+ "quantity": 1,
122
+ "unit_price": 799.99,
123
+ "discount_percentage": 25,
124
+ "final_price": 599.99,
125
+ "total": 599.99
126
+ }
127
+ ],
128
+ "subtotal": 599.99,
129
+ "tax_amount": 52.50,
130
+ "shipping_cost": 15.99,
131
+ "total_amount": 668.48,
132
+ "shipping_address": {
133
+ "street": "567 Park Avenue",
134
+ "city": "Houston",
135
+ "state": "TX",
136
+ "zip_code": "77001",
137
+ "country": "USA"
138
+ },
139
+ "shipping_method": "standard",
140
+ "tracking_number": "TRACK-147852369",
141
+ "carrier": "USPS",
142
+ "status": "processing",
143
+ "estimated_delivery": "2024-01-29T17:00:00",
144
+ "actual_delivery": null,
145
+ "notes": "Fragile item - handle with care"
146
+ },
147
+ {
148
+ "order_id": "ORD-10005",
149
+ "customer_id": "CUST-2001",
150
+ "order_date": "2024-01-15T13:20:00",
151
+ "items": [
152
+ {
153
+ "product_id": "PROD-1002",
154
+ "product_name": "Wireless Noise-Canceling Headphones",
155
+ "quantity": 1,
156
+ "unit_price": 349.99,
157
+ "discount_percentage": 15,
158
+ "final_price": 297.49,
159
+ "total": 297.49
160
+ },
161
+ {
162
+ "product_id": "PROD-1004",
163
+ "product_name": "Smart Watch Pro",
164
+ "quantity": 1,
165
+ "unit_price": 399.99,
166
+ "discount_percentage": 20,
167
+ "final_price": 319.99,
168
+ "total": 319.99
169
+ }
170
+ ],
171
+ "subtotal": 617.48,
172
+ "tax_amount": 54.03,
173
+ "shipping_cost": 0.00,
174
+ "total_amount": 671.51,
175
+ "shipping_address": {
176
+ "street": "123 Main Street",
177
+ "city": "New York",
178
+ "state": "NY",
179
+ "zip_code": "10001",
180
+ "country": "USA"
181
+ },
182
+ "shipping_method": "express",
183
+ "tracking_number": "TRACK-963852741",
184
+ "carrier": "DHL",
185
+ "status": "delivered",
186
+ "estimated_delivery": "2024-01-18T17:00:00",
187
+ "actual_delivery": "2024-01-17T14:20:00",
188
+ "notes": null
189
+ },
190
+ {
191
+ "order_id": "ORD-10006",
192
+ "customer_id": "CUST-2005",
193
+ "order_date": "2023-07-10T11:00:00",
194
+ "items": [
195
+ {
196
+ "product_id": "PROD-1001",
197
+ "product_name": "Premium Smartphone",
198
+ "quantity": 1,
199
+ "unit_price": 999.99,
200
+ "discount_percentage": 10,
201
+ "final_price": 899.99,
202
+ "total": 899.99
203
+ }
204
+ ],
205
+ "subtotal": 899.99,
206
+ "tax_amount": 78.75,
207
+ "shipping_cost": 12.99,
208
+ "total_amount": 991.73,
209
+ "shipping_address": {
210
+ "street": "890 Madison Street",
211
+ "city": "Phoenix",
212
+ "state": "AZ",
213
+ "zip_code": "85001",
214
+ "country": "USA"
215
+ },
216
+ "shipping_method": "standard",
217
+ "tracking_number": "TRACK-753159486",
218
+ "carrier": "UPS",
219
+ "status": "cancelled",
220
+ "estimated_delivery": "2023-07-15T17:00:00",
221
+ "actual_delivery": null,
222
+ "notes": "Customer cancelled order"
223
+ }
224
+ ]