-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
86 lines (85 loc) · 2.34 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
{ "orders":[
{ "id":4,
"code": "300001",
"customer": "Ahmed Radwan",
"address": "El Mokattam",
"phone": "010545424646",
"status": "FINISHED",
"type": "Pickup",
"items": [],
"noOfItems":0,
"notes":"",
"location":{
"lat":29.9136976,
"lng":30.8893275
}
},
{
"id":5,
"code": "300002",
"customer": "Mohamed Radwan",
"address": "El Haram",
"phone": "010545424646",
"status": "PENDING",
"type": "Pickup",
"items": [],
"noOfItems":3,
"notes":"",
"location":{
"lat":29.9136976,"lng":30.8893275
}
},
{
"id":8,
"code": "300003",
"customer": "Diaa Radwan",
"address": "El Mokattam",
"phone": "010545424646",
"status": "FINISHED",
"type": "Deliver",
"items": [],
"noOfItems":4,
"notes":"",
"location":{
"lat":29.9136976,"lng":30.8893275
}
},
{
"id":10,
"code": "300004",
"customer": "Yasser Radwan",
"address": "El Haram",
"phone": "010545424646",
"status": "PENDING",
"type": "Pickup",
"items": [],
"noOfItems":0,
"notes":"",
"location":{
"lat":29.9136976,"lng":30.8893275
}
},
{
"id":11,
"code": "300005",
"customer": "Aly Radwan",
"address": "El Mokattam",
"phone": "010545424646",
"status": "FINISHED",
"type": "Deliver",
"items": [],
"noOfItems":0,
"notes":"",
"location":{
"lat":29.9136976,"lng":30.8893275
}
}
],
"categories":[
{"name": "Carpet", "count": 4, "image": "~/assets/images/carpet.png"},
{"name": "Blanket", "count": 0, "image": "~/assets/images/blanket.png"},
{"name": "Curtain", "count": 0, "image": "~/assets/images/curtain.png"},
{"name": "Cloth", "count": 0, "image": "~/assets/images/cloth.png"},
{"name": "Other", "count": 0, "image": "~/assets/images/other.png"}
]
}