-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
108 lines (108 loc) · 2.44 KB
/
Copy pathdb.json
File metadata and controls
108 lines (108 loc) · 2.44 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
{
"users": [
{
"id": 1,
"email": "admin@test.com",
"password": "123123",
"token": "123123"
},
{
"id": 2,
"title": "admin2@test.com",
"password": "123123",
"token": "123123"
}
],
"orders": {
"showingDateFormatted": "August 28",
"data": [
{
"id": 100021,
"date": "Aug 28",
"customer": "test user",
"phone": "+444566458612",
"driver": "",
"address": "R9W8+F5 Dhaka, Bangladesh",
"amount": "£28.00",
"time": "06:04",
"status": "Confirmed",
"paymentStatus": "Paid",
"paymentMethod": "C.Card",
"map": {
"latitude": "23.8461333",
"longitude": "90.3654296"
}
},
{
"id": 100020,
"date": "Aug 28",
"customer": "test user",
"phone": "+445433458612",
"driver": "",
"address": "R9W8+F5 Dhaka, Bangladesh",
"amount": "£105.50",
"time": "06:02",
"status": "Confirmed",
"paymentStatus": "Paid",
"paymentMethod": "C.Card",
"map": {
"latitude": "23.8461333",
"longitude": "90.3654296"
}
},
{
"id": 100006,
"date": "Aug 28",
"customer": "Test Test Order",
"phone": "+44123458612",
"driver": "",
"address": "Marlpit Lane, Coulsdon CR5 2HE, UK",
"amount": "£28.00",
"time": "12:16",
"status": "Confirmed",
"paymentStatus": "Paid",
"paymentMethod": "C.Card",
"map": {
"latitude": "51.313712389989036",
"longitude": "-0.13376813381910324"
}
}
],
"totalOrders": 16,
"totalAmount": 504.1,
"topSellingProducts": [
{
"count": 6,
"totalPrice": "159.00",
"product_id": 207,
"name": "Chef's Special"
},
{
"count": 5,
"totalPrice": "42.00",
"product_id": 292,
"name": "BBQ LOver Pizza"
},
{
"count": 3,
"totalPrice": "8.90",
"product_id": 263,
"name": "Chips"
},
{
"count": 2,
"totalPrice": "59.80",
"product_id": 181,
"name": "Family Meal"
},
{
"count": 2,
"totalPrice": "15.00",
"product_id": 252,
"name": "Grilled Wings & Chips - 8pcs"
}
],
"refreshTime": 10,
"lastOrderId": 100021
}
}