-
Notifications
You must be signed in to change notification settings - Fork 4
/
StationeryStoreInit.sql
590 lines (565 loc) · 74.3 KB
/
StationeryStoreInit.sql
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
INSERT INTO Status (StatusId, Name, Description, CreatedBy_Id, CreatedDateTime)
VALUES
(0, 'Disabled', 'Static item is disabled', '[UserId]', CURRENT_TIMESTAMP),
(1, 'Enabled', 'Static item is enabled', '[UserId]', CURRENT_TIMESTAMP),
(2, 'Cancelled', 'Transaction item has been cancelled by user', '[UserId]', CURRENT_TIMESTAMP),
(3, 'Draft', 'Transaction item has been created but not submitted', '[UserId]', CURRENT_TIMESTAMP),
(4, 'Pending Approval', 'Requested requisition/stock adjustment is pending approval', '[UserId]', CURRENT_TIMESTAMP),
(5, 'Rejected', 'Requested requisition/stock adjustment has been rejected', '[UserId]', CURRENT_TIMESTAMP),
(6, 'Approved', 'Requested requisition/stock adjustment has been approved', '[UserId]', CURRENT_TIMESTAMP),
(7, 'Requisition Processed', 'Requested requisition has been processed by store clerk', '[UserId]', CURRENT_TIMESTAMP),
(8, 'Ready For Collection', 'Requested requisition/disbursement is ready for collection', '[UserId]', CURRENT_TIMESTAMP),
(9, 'Partially Fulfilled', 'Requested requisition has been partially disbursed', '[UserId]', CURRENT_TIMESTAMP),
(10, 'Items Collected', 'Requested requisition has been fully disbursed', '[UserId]', CURRENT_TIMESTAMP),
(11, 'Awaiting Delivery', 'Purchase Order/Purchase Order Item is awaiting delivery from supplier', '[UserId]', CURRENT_TIMESTAMP),
(12, 'Partially Delivered', 'Purchase Order has been partially fulfilled by supplier', '[UserId]', CURRENT_TIMESTAMP),
(13, 'Delivered', 'Purchase Order/Purchase Order Item has been fulfilled by supplier', '[UserId]', CURRENT_TIMESTAMP),
(14, 'Unread', 'Notification has not been read by receipient', '[UserId]', CURRENT_TIMESTAMP),
(15, 'Read', 'Notification has been read by receipient', '[UserId]', CURRENT_TIMESTAMP),
(16, 'Cleared', 'Notification has been cleared by receipient', '[UserId]', CURRENT_TIMESTAMP),
(17, 'Awaiting Picking', 'Item has not yet been retrieved from store', '[UserId]', CURRENT_TIMESTAMP),
(18, 'Picked', 'Item has been retrieved from store', '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Titles (TitleId, Name, CreatedBy_Id, CreatedDateTime)
VALUES
(1, 'Mr.', '[UserId]', CURRENT_TIMESTAMP),
(2, 'Ms.', '[UserId]', CURRENT_TIMESTAMP),
(3, 'Mrs.', '[UserId]', CURRENT_TIMESTAMP),
(4, 'Dr.', '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO NotificationTypes (NotificationTypeId, Name, CreatedBy_Id, CreatedDateTime)
VALUES
(1, 'Collection Ready', '[UserId]', CURRENT_TIMESTAMP),
(2, 'Requisition Approval', '[UserId]', CURRENT_TIMESTAMP),
(3, 'Stock Adjustment Approval', '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO CollectionPoints (CollectionPointId, ClerkInCharge_Id, Name, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
(1, '[UserId]', 'Admin Building (9:30am)', 1, '[UserId]', CURRENT_TIMESTAMP),
(2, '[UserId]', 'Management School (11:00am)', 1, '[UserId]', CURRENT_TIMESTAMP),
(3, '[UserId]', 'Medical School (9:30am)', 1, '[UserId]', CURRENT_TIMESTAMP),
(4, '[UserId]', 'Engineering School (11:00am)', 1, '[UserId]', CURRENT_TIMESTAMP),
(5, '[UserId]', 'Science School (9:30am)', 1, '[UserId]', CURRENT_TIMESTAMP),
(6, '[UserId]', 'University Hospital (11:00am)', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Departments (DepartmentCode, Name, Representative_Id, Head_Id, CollectionPoint_CollectionPointId, ContactName, PhoneNumber, FaxNumber, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
('ENGL', 'English Dept', '[UserId]', '[UserId]', 1, 'Mrs Pamela Kow', '874 2234', '892 1456', 1, '[UserId]', CURRENT_TIMESTAMP),
('CPSC', 'Computer Science', '[UserId]', '[UserId]', 2, 'Mr Wee Kian Fatt', '890 1235', '892 1457', 1, '[UserId]', CURRENT_TIMESTAMP),
('COMM', 'Commerce Dept', '[UserId]', '[UserId]', 3, 'Mr Mohd Azman', '874 1284', '892 1256', 1, '[UserId]', CURRENT_TIMESTAMP),
('REGR', 'Registrar Dept', '[UserId]', '[UserId]', 4, 'Ms Helen Ho', '890 1266', '892 1465', 1, '[UserId]', CURRENT_TIMESTAMP),
('ZOOL', 'Zoology Dept', '[UserId]', '[UserId]', 5, 'Mr Peter Tan Ah Meng', '890 1266', '892 1465', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO AspNetRoles (Id, Name)
VALUES
(1, 'Employee'),
(2, 'DepartmentHead'),
(3, 'Store Clerk'),
(4, 'Store Supervisor'),
(5, 'Store Manager'),
(6, 'Admin');
UPDATE AspNetUsers
SET Department_DepartmentCode = 'ENGL', Supervisor_Id = '[UserId]', FirstName = 'Admin', Status_StatusId = 1
WHERE Id = '[UserId]';
INSERT INTO ItemCategories (ItemCategoryId, Name, Description, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
(1, 'Clip', 'Clips', 1, '[UserId]', CURRENT_TIMESTAMP),
(2, 'Envelope', 'Envelopes', 1, '[UserId]', CURRENT_TIMESTAMP),
(3, 'Eraser', 'Erasers', 1, '[UserId]', CURRENT_TIMESTAMP),
(4, 'Exercise', 'Exercise Books', 1, '[UserId]', CURRENT_TIMESTAMP),
(5, 'File', 'Files', 1, '[UserId]', CURRENT_TIMESTAMP),
(6, 'Pad', 'Pads', 1, '[UserId]', CURRENT_TIMESTAMP),
(7, 'Paper', 'Paper', 1, '[UserId]', CURRENT_TIMESTAMP),
(8, 'Pen', 'Pens', 1, '[UserId]', CURRENT_TIMESTAMP),
(9, 'Puncher', 'Punchers', 1, '[UserId]', CURRENT_TIMESTAMP),
(10, 'Ruler', 'Rulers', 1, '[UserId]', CURRENT_TIMESTAMP),
(11, 'Sharpener', 'Sharpeners', 1, '[UserId]', CURRENT_TIMESTAMP),
(12, 'Scissors', 'Scissors', 1, '[UserId]', CURRENT_TIMESTAMP),
(13, 'Shorthand', 'Shorthand Books', 1, '[UserId]', CURRENT_TIMESTAMP),
(14, 'Stapler', 'Staplers', 1, '[UserId]', CURRENT_TIMESTAMP),
(15, 'Tack', 'Tacks', 1, '[UserId]', CURRENT_TIMESTAMP),
(16, 'Tape', 'Tapes', 1, '[UserId]', CURRENT_TIMESTAMP),
(17, 'Tparency', 'Transparency', 1, '[UserId]', CURRENT_TIMESTAMP),
(18, 'Tray', 'Trays', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Items (ItemCode, Name, Description, Uom, IteMCategory_ItemCategoryId, Bin, ReorderLevel, ReorderQuantity, CreatedBy_Id, CreatedDateTime, Status_StatusId)
VALUES
('C001', 'Clips Double', 'Clips Double 1"', 'Dozen', 1, 'E78', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('C002', 'Clips Double', 'Clips Double 2"', 'Dozen', 1, 'W73', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('C003', 'Clips Double', 'Clips Double 3/4"', 'Dozen', 1, 'A60', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('C004', 'Clips Paper', 'Clips Paper Large', 'Box', 1, 'G12', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('C005', 'Clips Paper', 'Clips Paper Medium', 'Box', 1, 'E15', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('C006', 'Clips Paper', 'Clips Paper Small', 'Box', 1, 'R87', 50, 30, '[UserId]', CURRENT_TIMESTAMP, 1),
('E001', 'Envelope Brown', 'Envelope Brown (3"x6")', 'Each', 2, 'L44', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E002', 'Envelope Brown', 'Envelope Brown (3"x6") w/ Window', 'Each', 2, 'W24', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E003', 'Envelope Brown', 'Envelope Brown (5"x7")', 'Each', 2, 'E94', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E004', 'Envelope Brown', 'Envelope Brown (5"x7") w/ Window', 'Each', 2, 'H88', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E005', 'Envelope White', 'Envelope White (3"x6")', 'Each', 2, 'Q27', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E006', 'Envelope White', 'Envelope White (3"x6") w/ Window', 'Each', 2, 'N10', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E007', 'Envelope White', 'Envelope White (5"x7")', 'Each', 2, 'K24', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E008', 'Envelope White', 'Envelope White (5"x7") w/ Window', 'Each', 2, 'V63', 600, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('E020', 'Eraser (hard)', 'Eraser (hard)', 'Each', 3, 'F79', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('E021', 'Eraser (soft)', 'Eraser (soft)', 'Each', 3, 'I57', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('E030', 'Exercise Book', 'Exercise Book (100 pg)', 'Each', 4, 'J19', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E031', 'Exercise Book', 'Exercise Book (120 pg)', 'Each', 4, 'S96', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E032', 'Exercise Book A4 Hardcover', 'Exercise Book A4 Hardcover (100 pg)', 'Each', 4, 'C28', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E033', 'Exercise Book A4 Hardcover', 'Exercise Book A4 Hardcover (120 pg)', 'Each', 4, 'V17', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E034', 'Exercise Book A4 Hardcover', 'Exercise Book A4 Hardcover (200 pg)', 'Each', 4, 'J27', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E035', 'Exercise Book Hardcover', 'Exercise Book Hardcover (100 pg)', 'Each', 4, 'Q47', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('E036', 'Exercise Book Hardcover', 'Exercise Book Hardcover (120 pg)', 'Each', 4, 'K13', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('F020', 'File Separator', 'File Separator', 'Set', 5, 'L22', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('F021', 'File-Blue Plain', 'File-Blue Plain', 'Each', 5, 'P27', 200, 100, '[UserId]', CURRENT_TIMESTAMP, 1),
('F022', 'File-Blue with Logo', 'File-Blue with Logo', 'Each', 5, 'X59', 200, 100, '[UserId]', CURRENT_TIMESTAMP, 1),
('F023', 'File-Brown w/o Logo', 'File-Brown w/o Logo', 'Each', 5, 'O24', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F024', 'File-Brown with Logo', 'File-Brown with Logo', 'Each', 5, 'N50', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F031', 'Folder Plastic Blue', 'Folder Plastic Blue', 'Each', 5, 'G57', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F032', 'Folder Plastic Clear', 'Folder Plastic Clear', 'Each', 5, 'T80', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F033', 'Folder Plastic Green', 'Folder Plastic Green', 'Each', 5, 'M53', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F034', 'Folder Plastic Pink', 'Folder Plastic Pink', 'Each', 5, 'R25', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('F035', 'Folder Plastic Yellow', 'Folder Plastic Yellow', 'Each', 5, 'B86', 200, 150, '[UserId]', CURRENT_TIMESTAMP, 1),
('H011', 'Highlighter Blue', 'Highlighter Blue', 'Box', 8, 'E41', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('H012', 'Highlighter Green', 'Highlighter Green', 'Box', 8, 'I69', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('H013', 'Highlighter Pink', 'Highlighter Pink', 'Box', 8, 'I93', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('H014', 'Highlighter Yellow', 'Highlighter Yellow', 'Box', 8, 'M51', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('H031', 'Hole Puncher 2 holes', 'Hole Puncher 2 holes', 'Each', 9, 'G75', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('H032', 'Hole Puncher 3 holes', 'Hole Puncher 3 holes', 'Each', 9, 'R40', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('H033', 'Hole Puncher Adjustable', 'Hole Puncher Adjustable', 'Each', 9, 'R42', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('P010', 'Pad Postit Memo 1"x2"', 'Pad Postit Memo 1"x2"', 'Packet', 6, 'U48', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P011', 'Pad Postit Memo 1/2"x1"', 'Pad Postit Memo 1/2"x1"', 'Packet', 6, 'R7', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P012', 'Pad Postit Memo 1/2"x2"', 'Pad Postit Memo 1/2"x2"', 'Packet', 6, 'G45', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P013', 'Pad Postit Memo 2"x3"', 'Pad Postit Memo 2"x3"', 'Packet', 6, 'W84', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P014', 'Pad Postit Memo 2"x4"', 'Pad Postit Memo 2"x4"', 'Packet', 6, 'C40', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P015', 'Pad Postit Memo 2"x4"', 'Pad Postit Memo 2"x4"', 'Packet', 6, 'K29', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P016', 'Pad Postit Memo 3/4"x2"', 'Pad Postit Memo 3/4"x2"', 'Packet', 6, 'B66', 100, 60, '[UserId]', CURRENT_TIMESTAMP, 1),
('P020', 'Paper Photostat A3', 'Paper Photostat A3', 'Box', 7, 'V62', 500, 500, '[UserId]', CURRENT_TIMESTAMP, 1),
('P021', 'Paper Photostat A4', 'Paper Photostat A4', 'Box', 7, 'R85', 500, 500, '[UserId]', CURRENT_TIMESTAMP, 1),
('P030', 'Pen Ballpoint Black', 'Pen Ballpoint Black', 'Dozen', 8, 'S38', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P031', 'Pen Ballpoint Blue', 'Pen Ballpoint Blue', 'Dozen', 8, 'T98', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P032', 'Pen Ballpoint Red', 'Pen Ballpoint Red', 'Dozen', 8, 'Z96', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P033', 'Pen Felt Tip Black', 'Pen Felt Tip Black', 'Dozen', 8, 'W65', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P034', 'Pen Felt Tip Blue', 'Pen Felt Tip Blue', 'Dozen', 8, 'V61', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P035', 'Pen Felt Tip Red', 'Pen Felt Tip Red', 'Dozen', 8, 'F36', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P036', 'Pen Transparency Permanent', 'Pen Transparency Permanent', 'Packet', 8, 'V70', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P037', 'Pen Transparency Soluble', 'Pen Transparency Soluble', 'Packet', 8, 'U63', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P038', 'Pen Whiteboard Marker Black', 'Pen Whiteboard Marker Black', 'Box', 8, 'B63', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P039', 'Pen Whiteboard Marker Blue', 'Pen Whiteboard Marker Blue', 'Box', 8, 'Q77', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P040', 'Pen Whiteboard Marker Green', 'Pen Whiteboard Marker Green', 'Box', 8, 'A77', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P041', 'Pen Whiteboard Marker Red', 'Pen Whiteboard Marker Red', 'Box', 8, 'O7', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P042', 'Pencil 2B', 'Pencil 2B', 'Dozen', 8, 'E26', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P043', 'Pencil 2B with Eraser End', 'Pencil 2B with Eraser End', 'Dozen', 8, 'D9', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P044', 'Pencil 4H', 'Pencil 4H', 'Dozen', 8, 'P6', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P045', 'Pencil B', 'Pencil B', 'Dozen', 8, 'E83', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('P046', 'Pencil B with Eraser End', 'Pencil B with Eraser End', 'Dozen', 8, 'O63', 100, 50, '[UserId]', CURRENT_TIMESTAMP, 1),
('R002', 'Ruler 12"', 'Ruler 12"', 'Dozen', 10, 'Y44', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('R001', 'Ruler 6"', 'Ruler 6"', 'Dozen', 10, 'K31', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S100', 'Scissors', 'Scissors', 'Each', 12, 'Q13', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S040', 'Scotch Tape', 'Scotch Tape', 'Each', 15, 'R30', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S041', 'Scotch Tape Dispenser', 'Scotch Tape Dispenser', 'Each', 15, 'H99', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S101', 'Sharpener', 'Sharpener', 'Each', 11, 'Z17', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S010', 'Shorthand Book (100 pg)', 'Shorthand Book (100 pg)', 'Each', 13, 'O66', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('S011', 'Shorthand Book (120 pg)', 'Shorthand Book (120 pg)', 'Each', 13, 'Z84', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('S012', 'Shorthand Book (80 pg)', 'Shorthand Book (80 pg)', 'Each', 13, 'K79', 100, 80, '[UserId]', CURRENT_TIMESTAMP, 1),
('S020', 'Stapler No. 28', 'Stapler No. 28', 'Each', 14, 'T35', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S021', 'Stapler No. 36', 'Stapler No. 36', 'Each', 14, 'J84', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S022', 'Stapler No. 28', 'Stapler No. 28', 'Box', 14, 'M93', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('S023', 'Stapler No. 36', 'Stapler No. 36', 'Box', 14, 'I13', 50, 20, '[UserId]', CURRENT_TIMESTAMP, 1),
('T001', 'Thumb Tacks Large', 'Thumb Tacks Large', 'Box', 15, 'K22', 10, 10, '[UserId]', CURRENT_TIMESTAMP, 1),
('T002', 'Thumb Tacks Medium', 'Thumb Tacks Medium', 'Box', 15, 'I92', 10, 10, '[UserId]', CURRENT_TIMESTAMP, 1),
('T003', 'Thumb Tacks Small', 'Thumb Tacks Small', 'Box', 15, 'K23', 10, 10, '[UserId]', CURRENT_TIMESTAMP, 1),
('T020', 'Transparency Blue', 'Transparency Blue', 'Box', 17, 'P84', 100, 200, '[UserId]', CURRENT_TIMESTAMP, 1),
('T021', 'Transparency Clear', 'Transparency Clear', 'Box', 17, 'M86', 500, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('T022', 'Transparency Green', 'Transparency Green', 'Box', 17, 'S78', 100, 200, '[UserId]', CURRENT_TIMESTAMP, 1),
('T023', 'Transparency Red', 'Transparency Red', 'Box', 17, 'T47', 100, 200, '[UserId]', CURRENT_TIMESTAMP, 1),
('T024', 'Transparency Reverse Blue', 'Transparency Reverse Blue', 'Box', 17, 'C21', 100, 200, '[UserId]', CURRENT_TIMESTAMP, 1),
('T025', 'Transparency Cover 3M', 'Transparency Cover 3M', 'Box', 17, 'I53', 500, 400, '[UserId]', CURRENT_TIMESTAMP, 1),
('T100', 'Trays In/Out', 'Trays In/Out', 'Set', 18, 'M1', 20, 10, '[UserId]', CURRENT_TIMESTAMP, 1);
INSERT INTO Inventory (ItemCode, Quantity)
VALUES
('C001', 0),
('C002', 0),
('C003', 0),
('C004', 0),
('C005', 0),
('C006', 0),
('E001', 0),
('E002', 0),
('E003', 0),
('E004', 0),
('E005', 0),
('E006', 0),
('E007', 0),
('E008', 0),
('E020', 0),
('E021', 0),
('E030', 0),
('E031', 0),
('E032', 0),
('E033', 0),
('E034', 0),
('E035', 0),
('E036', 0),
('F020', 0),
('F021', 0),
('F022', 0),
('F023', 0),
('F024', 0),
('F031', 0),
('F032', 0),
('F033', 0),
('F034', 0),
('F035', 0),
('H011', 0),
('H012', 0),
('H013', 0),
('H014', 0),
('H031', 0),
('H032', 0),
('H033', 0),
('P010', 0),
('P011', 0),
('P012', 0),
('P013', 0),
('P014', 0),
('P015', 0),
('P016', 0),
('P020', 0),
('P021', 0),
('P030', 0),
('P031', 0),
('P032', 0),
('P033', 0),
('P034', 0),
('P035', 0),
('P036', 0),
('P037', 0),
('P038', 0),
('P039', 0),
('P040', 0),
('P041', 0),
('P042', 0),
('P043', 0),
('P044', 0),
('P045', 0),
('P046', 0),
('R002', 0),
('R001', 0),
('S100', 0),
('S040', 0),
('S041', 0),
('S101', 0),
('S010', 0),
('S011', 0),
('S012', 0),
('S020', 0),
('S021', 0),
('S022', 0),
('S023', 0),
('T001', 0),
('T002', 0),
('T003', 0),
('T020', 0),
('T021', 0),
('T022', 0),
('T023', 0),
('T024', 0),
('T025', 0),
('T100', 0);
INSERT INTO Suppliers (SupplierCode, Name, Address, ContactName, PhoneNumber, FaxNumber, GstRegistrationNo, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
('ALPA', 'ALPHA Office Supplies', 'Blk 1128, Ang Mo Kio Industrial Park #02-1108 Ang Mo Kio Street 62 Singapore 622262', 'Ms Irene Tan', '461 9928', '461 2238', 'MR-8500440-2', 1, '[UserId]', CURRENT_TIMESTAMP),
('CHEP', 'Cheap Stationer', 'Blk 34, Clementi Road #07-02 Ban Ban Soh Building Singapore 110525', 'Mr Soh Kway Koh', '354 3234', '474 2434', 'Nil', 1, '[UserId]', CURRENT_TIMESTAMP),
('BANE', 'BANES Shop', 'Blk 124, Alexandra Road #03-04 Banes Building Singapore 550315', 'Mr Loh Ah Pek', '478 1234', '479 2434', 'MR-8200420-2', 1, '[UserId]', CURRENT_TIMESTAMP),
('OMEG', 'OMEGA Stationery Supplier', 'Blk 11, Hillview Avenue #03-04, Singapore 679036', 'Mr Ronnie Ho', '767 1233', '767 1234', 'MR-8555330-1', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO ItemPrices (ItemCode, SupplierCode, PrioritySequence, Price, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
('C001', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C001', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C001', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C002', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C002', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C002', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C003', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C003', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C003', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C004', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C004', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C004', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C005', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C005', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C005', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C006', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C006', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('C006', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E001', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E001', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E001', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E002', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E002', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E002', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E003', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E003', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E003', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E004', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E004', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E004', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E005', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E005', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E005', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E006', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E006', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E006', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E007', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E007', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E007', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E008', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E008', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E008', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E020', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E020', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E020', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E021', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E021', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E021', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E030', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E030', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E030', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E031', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E031', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E031', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E032', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E032', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E032', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E033', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E033', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E033', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E034', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E034', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E034', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E035', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E035', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E035', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E036', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E036', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('E036', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F020', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F020', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F020', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F021', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F021', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F021', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F022', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F022', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F022', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F023', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F023', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F023', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F024', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F024', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F024', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F031', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F031', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F031', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F032', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F032', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F032', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F033', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F033', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F033', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F034', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F034', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F034', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F035', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F035', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('F035', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H011', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H011', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H011', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H012', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H012', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H012', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H013', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H013', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H013', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H014', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H014', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H014', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H031', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H031', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H031', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H032', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H032', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H032', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H033', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H033', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('H033', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P010', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P010', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P010', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P011', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P011', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P011', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P012', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P012', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P012', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P013', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P013', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P013', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P014', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P014', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P014', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P015', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P015', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P015', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P016', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P016', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P016', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P020', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P020', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P020', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P021', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P021', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P021', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P030', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P030', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P030', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P031', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P031', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P031', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P032', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P032', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P032', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P033', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P033', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P033', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P034', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P034', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P034', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P035', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P035', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P035', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P036', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P036', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P036', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P037', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P037', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P037', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P038', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P038', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P038', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P039', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P039', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P039', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P040', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P040', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P040', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P041', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P041', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P041', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P042', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P042', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P042', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P043', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P043', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P043', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P044', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P044', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P044', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P045', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P045', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P045', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P046', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P046', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('P046', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R001', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R001', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R001', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R002', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R002', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('R002', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S010', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S010', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S010', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S011', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S011', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S011', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S012', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S012', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S012', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S020', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S020', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S020', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S021', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S021', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S021', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S022', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S022', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S022', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S023', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S023', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S023', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S040', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S040', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S040', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S041', 'ALPA', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S041', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S041', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S100', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S100', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S100', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S101', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S101', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('S101', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T001', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T001', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T001', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T002', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T002', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T002', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T003', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T003', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T003', 'OMEG', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T020', 'BANE', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T020', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T020', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T021', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T021', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T021', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T022', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T022', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T022', 'CHEP', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T023', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T023', 'ALPA', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T023', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T024', 'CHEP', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T024', 'OMEG', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T024', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T025', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T025', 'CHEP', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T025', 'BANE', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T100', 'OMEG', '1', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T100', 'BANE', '2', 1, 1, '[UserId]', CURRENT_TIMESTAMP),
('T100', 'ALPA', '3', 1, 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Delegations (DelegationId, Receipient_Id, StartDate, EndDate, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES
(1, '[UserId]', '2018-07-13 00:00:00.000', '2018-07-14 00:00:00.000', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Notifications (NotificationId, NotificationType_NotificationTypeId, Contents, Status_StatusId, CreatedFor_Id, CreatedDateTime)
VALUES
(1, 1, 'TEST', 14, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Requisitions (RequisitionId, Department_DepartmentCode, CollectionPoint_CollectionPointId, EmployeeRemarks, HeadRemarks, Status_StatusId, CreatedBy_Id, ApprovedBy_Id, CreatedDateTime, ApprovedDateTime)
VALUES ('TEST', 'ENGL', 1, 'TEST', 'TEST', 6, '[UserId]', '[UserId]', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
INSERT INTO RequisitionDetails (RequisitionId, ItemCode, Quantity, Status_StatusId)
VALUES ('TEST', 'E032', 1, 1);
INSERT INTO Retrievals (RetrievalId, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES ('TEST', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO Disbursements (DisbursementId, Department_DepartmentCode, Remarks, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES ('TEST', 'ENGL', 'TEST', 1, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO DisbursementDetails (DisbursementId, ItemCode, Bin, PlanQuantity, ActualQuantity, Status_StatusId, UpdatedBy_Id, UpdatedDateTime)
VALUES ('TEST', 'E030', 'J19', 1, 1, 18, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO PurchaseOrders (PurchaseOrderNo, SupplierCode, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES ('TEST', 'CHEP', 11, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO PurchaseOrderDetails (PurchaseOrderNo, ItemCode, Quantity, Status_StatusId)
VALUES ('TEST', 'E030', 1, 1);
INSERT INTO DeliveryOrders (DeliveryOrderNo, PurchaseOrder_PurchaseOrderNo, Supplier_SupplierCode, DeliveryOrderFileName, InvoiceFileName, Status_StatusId, CreatedBy_Id, CreatedDateTime)
VALUES ('TEST', 'TEST', 'CHEP', 'TEST.pdf', 'TEST.pdf', 11, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO DeliveryOrderDetails (DeliveryOrderNo, ItemCode, PlanQuantity, ActualQuantity, Remarks, Status_StatusId, UpdatedBy_Id, UpdatedDateTime)
VALUES ('TEST', 'E030', 1, 1, 'TEST', 11, '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO StockAdjustments (StockAdjustmentId, Remarks, Status_StatusId, CreatedBy_Id, UpdatedBy_Id, ApprovedBySupervisor_Id, ApprovedByManager_Id, CreatedDateTime, UpdatedDateTime, ApprovedSupervisorDateTime, ApprovedManagerDateTime)
VALUES ('TEST', 'TEST', 6, '[UserId]', '[UserId]', '[UserId]', '[UserId]', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
INSERT INTO StockAdjustmentDetails (StockAdjustmentId, ItemCode, OriginalQuantity, AfterQuantity, Reason, UpdatedBy_Id, UpdatedDateTime)
VALUES ('TEST', 'E030', 1, 2, 'TEST', '[UserId]', CURRENT_TIMESTAMP);
INSERT INTO StockMovements (StockMovementId, Item_ItemCode, StockAdjustmentId, StockAdjustmentDetailItemCode, OriginalQuantity, AfterQuantity, CreatedDateTime)
VALUES (1, 'E030', 'TEST', 'E030', 1, 1, CURRENT_TIMESTAMP);