-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.json
More file actions
294 lines (294 loc) · 7.69 KB
/
Copy pathdatabase.json
File metadata and controls
294 lines (294 loc) · 7.69 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
{
"warehouses" : [ {
"id" : "WH001",
"name" : "Main Warehouse",
"categories" : [ {
"name" : "Grocery",
"subcategories" : [ {
"name" : "Beverages",
"items" : [ {
"id" : "IT005",
"name" : "Soda (12-pack)",
"cost" : 7.0,
"carryingCostRate" : 0.15,
"demand" : 2000.0,
"orderingCost" : 40.0,
"description" : "Canned soft drinks.",
"currentQuantity" : 150
} ]
}, {
"name" : "Produce",
"items" : [ {
"id" : "IT006",
"name" : "Apples (Red)",
"cost" : 0.5,
"carryingCostRate" : 0.4,
"demand" : 8000.0,
"orderingCost" : 15.0,
"description" : "Fresh fruit. High carrying cost due to spoilage.",
"currentQuantity" : 50
} ]
} ]
}, {
"name" : "Apparels",
"subcategories" : [ {
"name" : "T-Shirts",
"items" : [ {
"id" : "IT007",
"name" : "Basic White Tee",
"cost" : 4.0,
"carryingCostRate" : 0.1,
"demand" : 5000.0,
"orderingCost" : 80.0,
"description" : "Plain cotton t-shirt.",
"currentQuantity" : 30
} ]
} ]
}, {
"name" : "Electronics",
"subcategories" : [ {
"name" : "Phones",
"items" : [ {
"id" : "IT003",
"name" : "Phone Model A",
"cost" : 150.0,
"carryingCostRate" : 0.25,
"demand" : 300.0,
"orderingCost" : 200.0,
"description" : "Entry smartphone",
"currentQuantity" : 500
} ]
}, {
"name" : "Mobiles",
"items" : [ ]
} ]
}, {
"name" : "Stationery",
"subcategories" : [ {
"name" : "Pens",
"items" : [ {
"id" : "IT008",
"name" : "Blue Gel Pen",
"cost" : 1.5,
"carryingCostRate" : 0.1,
"demand" : 10000.0,
"orderingCost" : 10.0,
"description" : "Standard writing pen.",
"currentQuantity" : 1500
} ]
}, {
"name" : "Paper & Ink",
"items" : [ {
"id" : "IT009",
"name" : "A4 Printer Paper",
"cost" : 5.0,
"carryingCostRate" : 0.12,
"demand" : 4000.0,
"orderingCost" : 50.0,
"description" : "20lb white office paper.",
"currentQuantity" : 800
}, {
"id" : "CML02HP",
"name" : "Hand Made Paper",
"cost" : 65.0,
"carryingCostRate" : 0.8,
"demand" : 1800.0,
"orderingCost" : 45.0,
"description" : "Brought to you by Camel.",
"currentQuantity" : 80
} ]
} ]
}, {
"name" : "Household Items",
"subcategories" : [ {
"name" : "Cleaning Supplies",
"items" : [ {
"id" : "IT010",
"name" : "All-Purpose Cleaner",
"cost" : 6.0,
"carryingCostRate" : 0.08,
"demand" : 1500.0,
"orderingCost" : 70.0,
"description" : "General surface cleaner.",
"currentQuantity" : 250
} ]
} ]
}, {
"name" : "Groceries",
"subcategories" : [ ]
} ],
"linkedStoreIds" : [ "ST001" ]
}, {
"id" : "WH002",
"name" : "Regional Warehouse",
"categories" : [ {
"name" : "Apparels",
"subcategories" : [ {
"name" : "Jackets",
"items" : [ {
"id" : "IT011",
"name" : "Winter Puffer Coat",
"cost" : 90.0,
"carryingCostRate" : 0.25,
"demand" : 200.0,
"orderingCost" : 150.0,
"description" : "Heavy winter jacket.",
"currentQuantity" : 40
}, {
"id" : "asd",
"name" : "das",
"cost" : 10.0,
"carryingCostRate" : 0.0,
"demand" : 120.0,
"orderingCost" : 0.0,
"description" : "",
"currentQuantity" : 2
} ]
} ]
}, {
"name" : "Household Items",
"subcategories" : [ {
"name" : "Laundry",
"items" : [ {
"id" : "IT012",
"name" : "Liquid Detergent (Bulk)",
"cost" : 25.0,
"carryingCostRate" : 0.1,
"demand" : 600.0,
"orderingCost" : 60.0,
"description" : "Large container of laundry soap.",
"currentQuantity" : 1
} ]
} ]
}, {
"name" : "HouseHold",
"subcategories" : [ ]
} ],
"linkedStoreIds" : [ ]
} ],
"stores" : [ {
"id" : "ST001",
"name" : "Downtown Store",
"linkedWarehouseId" : "WH001",
"categories" : [ ]
}, {
"id" : "ST002",
"name" : "Outlet Store",
"linkedWarehouseId" : "WH002",
"categories" : [ ]
} ],
"users" : [ {
"roleType" : "SUPER",
"id" : "SU001",
"name" : "Super Admin",
"password" : "adminpass",
"role" : "Super User"
}, {
"roleType" : "WH_ADMIN",
"id" : "WA001",
"name" : "WA001",
"password" : "whpass",
"role" : "Warehouse Admin"
}, {
"roleType" : "WH_ADMIN",
"id" : "WA002",
"name" : "WA002",
"password" : "whpass",
"role" : "Warehouse Admin"
}, {
"roleType" : "STORE_ADMIN",
"id" : "SA001",
"name" : "SA001",
"password" : "storepass",
"role" : "Store Admin"
}, {
"roleType" : "STORE_ADMIN",
"id" : "SA002",
"name" : "SA002",
"password" : "mikestorepass",
"role" : "Store Admin"
}, {
"roleType" : "KEEPER",
"id" : "KEP001",
"name" : "KEP001",
"password" : "keeperpass",
"role" : "Keeper"
}, {
"roleType" : "END_USER",
"id" : "END001",
"name" : "END001",
"password" : "buyerpass",
"role" : "End User"
} ],
"orders" : [ {
"orderId" : "ORD1",
"itemId" : "IT001",
"itemName" : "Widget X",
"requestingStoreId" : "ST001",
"targetWarehouseId" : "WH001",
"quantity" : 30,
"status" : "REJECTED",
"orderDate" : "2025-11-27T10:00:00",
"fulfillmentDetails" : "Fulfilled from WH001"
}, {
"orderId" : "ORD2",
"itemId" : "IT004",
"itemName" : "Widget Z",
"requestingStoreId" : "ST002",
"targetWarehouseId" : "WH002",
"quantity" : 50,
"status" : "PENDING",
"orderDate" : "2025-11-27T11:00:00",
"fulfillmentDetails" : null
}, {
"orderId" : "ORD3",
"itemId" : "IT003",
"itemName" : "Phone Model A",
"requestingStoreId" : "SA001",
"targetWarehouseId" : "WH001",
"quantity" : 2,
"status" : "PENDING",
"orderDate" : "2025-11-27T13:13:55.5087317",
"fulfillmentDetails" : null
}, {
"orderId" : "ORD4",
"itemId" : "IT006",
"itemName" : "Apples (Red)",
"requestingStoreId" : "ST001",
"targetWarehouseId" : "WH001",
"quantity" : 150,
"status" : "REJECTED",
"orderDate" : "2025-11-28T01:06:09.0921039",
"fulfillmentDetails" : "Reason: No stock available."
}, {
"orderId" : "ORD5",
"itemId" : "IT006",
"itemName" : "Apples (Red)",
"requestingStoreId" : "ST001",
"targetWarehouseId" : "WH001",
"quantity" : 50,
"status" : "FORWARDED",
"orderDate" : "2025-11-28T01:31:49.8264009",
"fulfillmentDetails" : "Forwarded to WH002"
}, {
"orderId" : "ORD6",
"itemId" : "IT008",
"itemName" : "Blue Gel Pen",
"requestingStoreId" : "ST001",
"targetWarehouseId" : "WH001",
"quantity" : 10,
"status" : "PENDING",
"orderDate" : "2025-11-28T13:50:25.8107239",
"fulfillmentDetails" : null
}, {
"orderId" : "ORD7",
"itemId" : "IT007",
"itemName" : "Basic White Tee",
"requestingStoreId" : "END001",
"targetWarehouseId" : "WH001",
"quantity" : 1,
"status" : "PENDING",
"orderDate" : "2025-11-28T13:51:03.9636541",
"fulfillmentDetails" : null
} ]
}