-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathorders.json
More file actions
98 lines (98 loc) · 1.31 KB
/
orders.json
File metadata and controls
98 lines (98 loc) · 1.31 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
[
{
"id": 1,
"items": [
{
"id": 1234,
"name": "Baju Kemeja",
"price": 250000,
"quantity": 2
},
{
"id": 5678,
"name": "Celana Jeans",
"price": 350000,
"quantity": 1
}
],
"total_price": 850000
},
{
"id": 2,
"items": [
{
"id": 9876,
"name": "Sepatu Sneakers",
"price": 500000,
"quantity": 1
},
{
"id": 5432,
"name": "Jaket Kulit",
"price": 800000,
"quantity": 1
}
],
"total_price": 1300000
},
{
"id": 3,
"items": [
{
"id": 2468,
"name": "Tas Ransel",
"price": 200000,
"quantity": 1
},
{
"id": 1357,
"name": "Topi Baseball",
"price": 50000,
"quantity": 3
}
],
"total_price": 350000
},
{
"id": 4,
"items": [
{
"id": 8642,
"name": "Kacamata Hitam",
"price": 150000,
"quantity": 2
},
{
"id": 9753,
"name": "Kaos Oblong",
"price": 100000,
"quantity": 5
}
],
"total_price": 800000
},
{
"id": 5,
"items": [
{
"id": 1111,
"name": "Perhiasan Kalung",
"price": 350000,
"quantity": 1
},
{
"id": 2222,
"name": "Perhiasan Gelang",
"price": 250000,
"quantity": 2
},
{
"id": 3333,
"name": "Perhiasan Cincin",
"price": 200000,
"quantity": 3
}
],
"total_price": 1400000
}
]