forked from cedrickjames/helpdesk-production
-
Notifications
You must be signed in to change notification settings - Fork 1
/
request (2).sql
1025 lines (1012 loc) · 666 KB
/
request (2).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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.4.15.10
-- https://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 03, 2024 at 12:01 AM
-- Server version: 10.10.2-MariaDB
-- PHP Version: 7.4.33
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `helpdesk`
--
-- --------------------------------------------------------
--
-- Table structure for table `request`
--
CREATE TABLE IF NOT EXISTS `request` (
`id` int(10) NOT NULL,
`date_filled` varchar(20) DEFAULT NULL,
`status2` varchar(50) DEFAULT NULL,
`late` tinyint(1) NOT NULL DEFAULT 0,
`requestorUsername` varchar(20) DEFAULT NULL,
`requestor` varchar(50) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`department` varchar(50) DEFAULT NULL,
`request_type` varchar(50) DEFAULT NULL,
`request_to` varchar(3) DEFAULT NULL COMMENT 'request to fem or mis',
`request_category` varchar(100) DEFAULT NULL,
`request_details` varchar(1000) DEFAULT NULL,
`computerName` varchar(100) DEFAULT NULL,
`reqstart_date` varchar(20) DEFAULT NULL,
`reqfinish_date` varchar(20) DEFAULT NULL,
`telephone` varchar(10) DEFAULT NULL,
`approving_head` varchar(50) DEFAULT NULL,
`head_approval_date` varchar(20) DEFAULT NULL,
`head_remarks` varchar(200) DEFAULT NULL,
`approving_admin` varchar(50) DEFAULT NULL,
`admin_remarks` varchar(200) DEFAULT NULL,
`admin_approved_date` varchar(20) DEFAULT NULL,
`expectedFinishDate` varchar(100) DEFAULT NULL,
`assignedPersonnel` varchar(50) DEFAULT NULL,
`assignedPersonnelName` varchar(50) DEFAULT NULL,
`approved_finish_date` varchar(20) DEFAULT NULL,
`actual_finish_date` varchar(20) DEFAULT NULL,
`action1` varchar(1000) DEFAULT NULL,
`action2` varchar(1000) DEFAULT NULL,
`action3` varchar(1000) DEFAULT NULL,
`action1Date` varchar(20) DEFAULT NULL,
`action2Date` varchar(20) DEFAULT NULL,
`action3Date` varchar(20) DEFAULT NULL,
`action` varchar(1000) DEFAULT NULL,
`recommendation` varchar(1000) DEFAULT NULL,
`approved_reco` tinyint(1) NOT NULL DEFAULT 0,
`icthead_reco_remarks` varchar(500) DEFAULT NULL,
`confirm_finish_date` varchar(20) DEFAULT NULL,
`rating_delivery` varchar(1) DEFAULT NULL,
`rating_quality` varchar(1) DEFAULT NULL,
`rating_final` float(10,2) DEFAULT NULL,
`rateDate` varchar(20) DEFAULT NULL,
`ratedBy` varchar(30) DEFAULT NULL,
`perform_by` varchar(50) DEFAULT NULL,
`technical_remarks` varchar(200) DEFAULT NULL,
`requestor_remarks` varchar(200) DEFAULT NULL,
`month` varchar(20) DEFAULT NULL,
`year` varchar(4) DEFAULT NULL,
`attachment` varchar(100) DEFAULT NULL,
`reasonOfCancellation` varchar(200) DEFAULT NULL,
`dateOfCancellation` varchar(30) DEFAULT NULL,
`cancelledBy` varchar(50) DEFAULT NULL,
`accept_termsandconddition` varchar(100) DEFAULT NULL,
`onthespot_ticket` tinyint(1) NOT NULL DEFAULT 0,
`ticket_category` varchar(100) DEFAULT NULL,
`category_level` varchar(50) DEFAULT NULL,
`ticket_filer` varchar(50) DEFAULT NULL,
`ict_approval_date` datetime DEFAULT NULL,
`first_responded_date` datetime DEFAULT NULL,
`completed_date` datetime DEFAULT NULL,
`requestor_approval_date` datetime DEFAULT NULL,
`ticket_close_date` datetime DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=1131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `request`
--
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(159, '2023-05-02', 'rated', 0, 'GP-18-616', 'MENDOZA, CHARISSE', '[email protected]', 'Administration', NULL, 'mis', 'Non-Technical', 'Re-printing of company ID of promoted employees. ', '', '2023-05-03', '2023-05-04', '110', 'MONZON, RIO', '2023-05-02', '', NULL, '', '2023-05-02', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Update position, reprint and register to all DTR.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-04', 'MENDOZA, CHARISSE', NULL, NULL, 'Able to accomplish JO request on time. ', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(160, '2023-05-02', 'cancelled', 0, 'GP-18-611', 'Francisco, Lozano', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Non-Technical', 'For Test request only', '', '2023-05-03', '2023-05-04', '211', 'BAUTISTA, ELMER', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'TEST ONLY', '', 'BAUTISTA, ELMER', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(161, '2023-05-02', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of defective tank lever at GPI-7 male CR', '', '2023-05-03', '2023-05-04', '105', 'MONZON, RIO', '2023-05-02', '', NULL, '', '2023-05-02', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced tank lever at GPI7 Male CR', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(162, '2023-05-02', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of defective tank lever at cubicle #1 & 2 at GPI-1 old female CR', '', '2023-05-03', '2023-05-04', '105', 'MONZON, RIO', '2023-05-02', '', NULL, '', '2023-05-02', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced tank lever at cubicle 1 and 2 in Female CR', 'Need to replaced durable tank lever or to replaced push button tank lever', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(163, '2023-05-02', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check lavatory #3 with leakage at GPI-1 new female CR', '', '2023-05-03', '2023-05-04', '105', 'MONZON, RIO', '2023-05-02', '', NULL, '', '2023-05-02', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, '1.Put epoxy on the bottom of lavatory.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(164, '2023-05-02', 'rated', 0, 'GP-10-248', 'CASTULI, SHEILA', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Upon opening of excel file is not responding, it takes a minute before opening.', 'C2106-065', '2023-05-03', '2023-05-04', '155', 'SEMILLANO, LYZIEL', '2023-05-02', 'OK.', NULL, '', '2023-05-02', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-03', '1. Check the problem of the computer.', NULL, NULL, 'May 03, 2023', NULL, NULL, '1. Check the problem encounter during opening excel files in the computer. 2 .MIS performed troubleshooting for the computer, check the processor, storage and OS.\nfound out that the processor is "INTEL PENTIUM-G3260" and the OS is WINDOWS 7. 3. Recommend to replaced and upgrade processor and SSD.', '1. Recommend to replaced and upgrade processor and SSD. ', 0, NULL, NULL, '4', '4', 4.00, '2023-05-03', 'CASTULI, SHEILA', NULL, NULL, 'Good service quick response. Thank you.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(165, '2023-05-02', 'rated', 0, 'GP-10-250', 'BALDESIMO, DESERIE', '[email protected]', 'Production 1', NULL, 'mis', 'Computer', 'Checking or repair of laptop', 'Production Test PC', '2023-05-03', '2023-05-05', '517', 'Lemuel Semillano', '2023-05-04', '', NULL, '', '2023-05-05', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-05', 'Perform initial checking of the unit.', 'Checked the condition of the laptop charger', NULL, 'May 05, 2023', 'May 05, 2023', NULL, 'The laptop is old model and already slow before the problem. The laptop is not turning-on but the charger is still in good condition, possible board problem or power supply. The user needs new and high specs computer to perform daily workload and manage new systems deployed in production.', 'MIS recommends to purchase new unit to accomodate the users need in her daily activity. To give quotation to the user.', 0, NULL, NULL, '4', '4', 4.00, '2023-07-13', 'Baldesimo, Deserie', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(166, '2023-05-02', 'cancelled', 0, 'GP-10-250', 'BALDESIMO, DESERIE', '[email protected]', 'Production 1', NULL, 'mis', 'Computer', 'Checking or repair of laptop', 'Production Test PC', '2023-05-03', '2023-05-05', '517', 'Lemuel Semillano', '2023-05-04', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Duplicated request', '', 'NEMEDEZ, NATHAN', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(167, '2023-05-02', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Request to open 5 drums located at GPI 1 hazardous waste and after completion please transfer the 1 drum in GPI 5(Requested by Ms. Micah)', '', '2023-05-03', '2023-05-05', '120', 'REYES, RAYMOND', '2023-05-03', '', NULL, '', '2023-05-03', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Open 5 drums using grinder,and the 1 drum already transfer to hazardous waste at gpi 5 building.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'Jayson Torres', NULL, NULL, 'Very Satisfied', 'May', '2023', '../upload_files/2305-0215-3545.IMG_0990.JPG.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(168, '2023-05-03', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check cubicle #1 with leakage at GPI-1 old female CR', '', '2023-05-04', '2023-05-06', '105', 'MONZON, RIO', '2023-05-03', '', NULL, 'Ok', '2023-05-03', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced 1 pc of gate valve', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(169, '2023-05-03', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check clogged lavatory at GPI-1 old female CR', '', '2023-05-04', '2023-05-06', '105', 'MONZON, RIO', '2023-05-03', '', NULL, 'ok', '2023-05-03', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed P-TRAP and found lip stick that caused clogged of lavatory', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(170, '2023-05-03', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of urinal flush at GPI-5 old male CR', '', '2023-05-04', '2023-05-06', '105', 'MONZON, RIO', '2023-05-03', '', NULL, '', '2023-05-03', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-12', 'For request of materials (urinal flush) subject for replacement.', NULL, NULL, 'May 05, 2023', NULL, NULL, 'Turn OFF the water supply in old male C.R and replaced the damage urinal flush by new urinal flush. Then turn ON again the water supply.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(171, '2023-05-03', 'rated', 0, 'GP-18-608', 'ALMENDRAS, VILMA', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Request a separate switch for light in the crating and packaging area in GPI 1.', '', '2023-05-08', '2023-05-19', '215', 'Sheryll Ramirez', '2023-05-11', '', NULL, 'OK', '2023-05-11', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Install piping and utility box for the re-wiring/separation of control switch of electrical lighting's in crating area to packaging area at GPI-1. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-22', 'ALMENDRAS, VILMA', NULL, NULL, 'Excellent job.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(172, '2023-05-03', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Please check computer of Ms. Jonna Maigue (Automatic shut-up)\r\n', 'C2106-081', '2023-05-04', '2023-05-06', '266', 'Sheryll Ramirez', '2023-05-11', '', NULL, '', '2023-05-11', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-19', '1. Check the problem of the computer. 2. The computer is under observation.', 'Ongoing reformat computer.', NULL, 'May 11, 2023', 'May 17, 2023', NULL, '1. Back up all data, installed the needed application and set up the needed account.\r\n2. Upon checking the computer, MIS found out that the processor is outdated (PENTIUM 3250) for the modern version of the processor (CORE i5).', 'Recommend purchasing a new System unit.', 0, NULL, NULL, '5', '4', 4.50, '2023-06-01', 'Calderon, Naomi', NULL, NULL, 'Request for scanner connection to PM copier. Setting of printer. Thank you', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(173, '2023-05-03', 'cancelled', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Quotation', 'Request quotation of personal computer(complete set).Replacement for damage computer of Ms. Noime Roxas.', '', '2023-05-04', '2023-05-06', '822', 'PINPIN, CHERRY', '2023-05-03', '', NULL, 'Does this have a jo request? If yes we can use it ', '2023-05-04', NULL, 'CG-1374', 'Aileen D. Domo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Use the existing Job Order from the previous request.\r\n', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(174, '2023-05-03', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'Kindly check the computer mouse of Mr. Trajico, he reported thru call that his mouse is malfunctioning this afternoon.', 'Christopher Trajico', '2023-05-04', '2023-05-09', '119', 'SAPALASAN, ELOISA', '2023-05-03', '', NULL, '', '2023-05-04', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-17', 'Schedule Suntrust visit', NULL, NULL, 'May 17, 2023', NULL, NULL, 'Upon investigation, the mouse suddenly loose connection to the computer and the user need to plug-out & plug-in to reconnect the mouse again. Need to replace with new computer mouse.', 'Replacement of new mouse.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'ROLLE, RYAN', NULL, NULL, 'Thank you Sir Felmhar. I already make a PRS for the broken mouse.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(175, '2023-05-04', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of urinal flush at GPI-5 new male CR', '', '2023-05-04', '2023-05-06', '105', 'MONZON, RIO', '2023-05-04', '', NULL, 'OK', '2023-05-04', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-12', 'For request of materials (urinal flush) subject for replacement.', NULL, NULL, 'May 05, 2023', NULL, NULL, 'Turn OFF the water supply in new male C.R then replaced the damage urinal flush by new urinal flush at new male C.R and turn ON again the water supply.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(176, '2023-05-04', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Non-Technical', 'Request to download this video link : https://www.youtube.com/watch?v=3PPTDqyu_oU&t=237s . will be use in Environmental Canteen Video Viewing. Thank you. ', '', '2023-05-05', '2023-05-08', '120', 'REYES, RAYMOND', '2023-05-04', '', NULL, '', '2023-05-04', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-05', 'Review the video requested and search for a safe downloader site', NULL, NULL, 'May 05, 2023', NULL, NULL, 'Download the requested video and locate it in GPI Shared QA Video folder. See attached link below\n\\192.168.5.253GPI_Shared DELETED EVERY WEEKENDQA Video', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-05', 'Jayson Torres', NULL, NULL, 'Very satisfied ', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(177, '2023-05-04', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'KINDLY CHECK THE FEM MIS HELPDESK ACCOUNT OF MS. MA. JESUSA GARCIA, SHE CANNOT ACCESS AFTER LOGGING IN, IT SAYS WRONG CREDENTIALS.', 'FFFE-0252', '2023-05-08', '2023-05-10', '110', 'SAPALASAN, ELOISA', '2023-05-04', '', NULL, 'please check this link http://192.168.5.106/helpde', '2023-05-04', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Register Ms. Garcia in the Helpdesk System with the username and password of GP-16-467. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-04', 'ROLLE, RYAN', NULL, NULL, 'Thank you for your very fast action.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(178, '2023-05-04', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'fem', 'Facilities', 'Kindly check and repair the broken hand dryer at girls cr here at suntrust bldg near the conference room / office.', '', '2023-05-08', '2023-05-10', '105', 'SAPALASAN, ELOISA', '2023-05-04', '', NULL, '', '2023-05-04', NULL, 'GP-11-301', 'MAGAT, ROEL', NULL, '2023-05-08', NULL, NULL, NULL, NULL, NULL, NULL, 'checking done found malfunction on sensor, pull out unit for further checking , removed cover check unit sensor ( malfunction ) check fan motor ok, check unit heater found damage , cause of sensor malfunction coming from damage heater, raplaced heater from spare install all pull out parts testing do', 'for monitoring of unit', 0, NULL, NULL, '5', '5', 5.00, '2023-05-09', 'ROLLE, RYAN', NULL, NULL, 'Thank you Sir Roel!!!', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(179, '2023-05-04', 'cancelled', 0, 'produser', 'Cedrick James Orozo', '[email protected]', 'Production', NULL, 'mis', 'Computer', 'this is a sample only', 'C2110-203', '2023-05-05', '2023-05-07', '123', 'Production Head', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'this is a sample only', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(180, '2023-05-04', 'rated', 0, 'GP-11-283', 'CINCO, MERRY BETH', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Request to change location of outlet (3pcs) and ANDON Board 1pc in SDRB line (1pc of outlet and andon board for electrical adj, 2pcs of outlet for shipment prep', '', '2023-05-05', '2023-05-07', '311', 'LISBOA, DINA', '2023-05-04', '', NULL, 'ok', '2023-05-04', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-05', '1.Disconnect the existing connection of 4 pcs outlet and 1 pc of andon board,then endorsed to prod.support for the relocation', NULL, NULL, 'May 04, 2023', NULL, NULL, 'Connect to the power supply of 4 pcs outlet and 1 pc andon board.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-05', 'CINCO, MERRY BETH', NULL, NULL, 'VERY GOOD ', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(182, '2023-05-04', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Electrical', 'Installation of electrical outlet at gpi 7 lobby for coffee vendo machine', '', '2023-05-05', '2023-05-08', '102', 'MONZON, RIO', '2023-05-04', '', NULL, 'OK', '2023-05-05', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed electrical outlet for coffee vendo machine at gpi 7 building. ', 'already connected to the power supply.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(183, '2023-05-04', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Requesting to kindly check the 2 units of rice cooker at GPI 1 canteen.', '', '2023-05-05', '2023-05-08', '102', 'MONZON, RIO', '2023-05-04', '', NULL, 'OK', '2023-05-05', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-08', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking conducted by FEM the 2 pcs of Rice cooker are totally damaged.It cant be repairable due to the materials is made of alloy,so that it cant be welded.', 'Subject for replacement of Rice cooker .\r\nas per record it was purchased last Feb 2011 during the bldg expansion.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-08', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(184, '2023-05-05', 'cancelled', 0, 'GP-15-442', 'ALVAREZ, KRIZEL MICAH ANNE', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'to open gallon', '', '2023-05-06', '2023-05-08', '120', 'REYES, RAYMOND', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Test JO', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(185, '2023-05-05', 'rated', 0, 'GP-06-190', 'ALCANTARA, FILIPINA', '[email protected]', 'Quality Control', NULL, 'fem', 'Electrical', 'Installation of electrical supply on QC Incoming inspection (GPI-1 besides the hallway)', '', '2023-05-08', '2023-05-10', '264', 'Wilma, Logrono', '2023-05-05', '', NULL, 'OK', '2023-05-05', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed and wiring of the light and connect to the power supply.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-10', 'ALCANTARA, FILIPINA', NULL, NULL, 'done within target time', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(186, '2023-05-05', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Non-Technical', 'Additional, Request quotation for Webcam and Speaker with build-in Microphone, use for reporting of TV Conference for the result of improvement to Glory Japan', '', '2023-05-08', '2023-05-10', '211', 'BAUTISTA, ELMER', '2023-05-05', '', NULL, 'Aileen please quote jabra speaker and webcam', '2023-05-05', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-05-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Provide Quotation from Sert Technology Inc. \r\nThe quotation is already forwarded to Requestor.\r\nDone.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-05-08', 'Manny Herrera', NULL, NULL, 'Good Responsive and Good Cooperation', 'May', '2023', '../upload_files/2305-0509-1224.Webcam and Speaker.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(187, '2023-05-05', 'rated', 0, 'GP-23-760', 'JOYA, RENAN', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Improvement or repair of GPI 1 canteen grease trap cover to prevent possible incident/accident in the future', '', '2023-05-08', '2023-05-12', '120', 'REYES, RAYMOND', '2023-05-05', '', NULL, '', '2023-05-05', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-06-02', 'check the grease trap and measure the cover for request of materials.', '1. For request of materials (angle bar)', NULL, 'May 08, 2023', 'May 10, 2023', NULL, 'Welded the angle bar \r\nRequest excess metal plate to PPD the welded it to the frame.\r\nPaint it with color yellow and black.\r\nInstalled it to the grease trap area', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-02', 'Joya, Renan', NULL, NULL, '', 'May', '2023', '../upload_files/2305-0510-5018.GPI 1 Canteen Grease Trap.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(188, '2023-05-05', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnection of electrical connection at GPI-7 RBW-150 line (Rework area).', '', '2023-05-06', '2023-05-08', '822', 'PINPIN, CHERRY', '2023-05-05', '', NULL, 'ok', '2023-05-05', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect to the power supply of table for transfer to gpi 5 rbw 200.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-05-10', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(189, '2023-05-05', 'rated', 0, 'GP-20-702', 'JORDAN, CARMELA', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Non-Technical', 'To check problem with the microphone of my laptop. No sound during MS Team Video Chatting', '', '2023-05-08', '2023-05-10', '981-212', 'REYES, RAYMOND', '2023-05-05', '', NULL, '', '2023-05-05', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-17', 'Download and update driver for laptop microphone.', NULL, NULL, 'May 12, 2023', NULL, NULL, '1. Install Windows update and turn on the microphone settings. 2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'JORDAN, CARMELA', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(190, '2023-05-05', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'mis', 'Non-Technical', 'Kindly align the time of exercise here at Gpi-8 with the time of exercise there at Gpi-1.', '', '2023-05-10', '2023-05-12', '119', 'SAPALASAN, ELOISA', '2023-05-05', '', NULL, '', '2023-05-05', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-17', 'For schedule the setup. To study the current system.', 'Study the current TOA system and download the needed application for configuration', 'Schedule GPI Suntrust visit', 'May 11, 2023', 'May 17, 2023', 'May 17, 2023', 'Applied changes base on the requested time of exericise in the current TOA system in GPI-Suntrust (GPI-8)', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'ROLLE, RYAN', NULL, NULL, 'Thank you so much Sir Felmhar!!! I will observed the time of exercise if it will took effect this afternoon and tomorrow morning exercise...', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(191, '2023-05-05', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Non-Technical', 'Request for Safety and Environmental Video Viewing in GPI 1 Canteen From May 15-May 19,2023. Thank you.', '', '2023-05-15', '2023-05-19', '120', 'REYES, RAYMOND', '2023-05-05', '', NULL, '', '2023-05-08', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-20', 'Played the video last May 15, 2023 at canteen.', 'Apologies, but we were unable to play the video at the canteen on May 16 and 17 due to the unavailability of the MIS laptop. However, we will make sure to resume playing the video today (May 18, 2023)', NULL, 'May 18, 2023', 'May 18, 2023', NULL, 'Played the Matanglawin video for Safety and Environment last May 18 and 19 2023. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-22', 'Jayson Torres', NULL, NULL, 'Very Satisfied', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(192, '2023-05-08', 'cancelled', 0, 'GP-11-283', 'CINCO, MERRY BETH', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Access on Google Translate', 'GPI325', '2023-05-09', '2023-05-11', '311', 'LISBOA, DINA', '2023-05-09', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Purpose and transaction not define.', '', 'NEMEDEZ, NATHAN', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(193, '2023-05-08', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Retrieve delete excel files.(Tools Monitoring 2023-2024).', 'GPI207', '2023-05-09', '2023-05-11', '822', 'PINPIN, CHERRY', '2023-05-09', '', NULL, 'Warning this is not the first time . Next time req', '2023-05-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Located the file directory for the file to be restored, restored the file on the given directory. Done', 'Provide the file directory on the request for easier transactions. thank you', 0, NULL, NULL, '4', '4', 4.00, '2023-05-10', 'ASUELO, OSCAR JR.', NULL, NULL, 'ok', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(194, '2023-05-09', 'rated', 0, 'GP-16-466', 'DELA TORRE, HAZEL ANN', '[email protected]', 'Production 2', NULL, 'mis', 'Email', '1. Change email address [email protected] to [email protected] in C2106-133 \r\n2. Remove current email in C2106-090 and\r\ntransfer [email protected] email\r\n3. Remove current email in C2106-135\r\nand assign [email protected]', '', '2023-05-10', '2023-05-12', '833', 'LISBOA, DINA', '2023-05-09', '', NULL, '', '2023-05-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-10', NULL, NULL, NULL, NULL, NULL, NULL, '1. Changed e-mail address from p2technician to n.lipata and created a mail forwarding from p2technician to n.lipata\r\n2. removed the e-mail accounts logged on C2106-090 and logged in e.tolentino\r\n3. Created k.novero, removed the e.tolentino from C2106-135 and logged in k.novero.', 'None. Thank you', 0, NULL, NULL, '5', '5', 5.00, '2023-05-11', 'DELA TORRE, HAZEL ANN', NULL, NULL, '', 'May', '2023', '../upload_files/2305-0909-4435.LETTER EMAIL.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(195, '2023-05-09', 'rated', 0, 'GP-23-760', 'JOYA, RENAN', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Repainting of rusty platform and installation of additional mid rail at GPI fire exit stair for safety purposes', '', '2023-05-11', '2023-05-18', '120', 'REYES, RAYMOND', '2023-05-09', '', NULL, 'ok', '2023-05-10', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-06-02', 'For request of materials (paint and stainles tubular)', 'Painted the rusty platform.', NULL, 'May 10, 2023', 'May 31, 2023', NULL, 'For additional mid rail need to re schedule due to we need to request the stainless tubular', 'Kindly re-apply the JO for installation of additional mid rail', 0, NULL, NULL, '5', '5', 5.00, '2023-06-02', 'Joya, Renan', NULL, NULL, 'Noted thank you', 'May', '2023', '../upload_files/2305-0910-0409.GPI 1 Fire exit stair.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(196, '2023-05-09', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'UPS not working after power cut.', '', '2023-05-10', '2023-05-12', '822', 'PINPIN, CHERRY', '2023-05-09', '', NULL, '', '2023-05-10', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-10', '1. Check the UPS', NULL, NULL, 'May 10, 2023', NULL, NULL, '1. Upon checking of UPS, MIS found out that the UPS is having a overload plugged in that cause of continues beeping after fluctuation. Also found out that the UPS is distributing to 2 computer that caused of faster draining of the battery.', 'Recommend to purchase additional UPS.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-10', 'ASUELO, OSCAR JR.', NULL, NULL, 'Very Good', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(197, '2023-05-09', 'rated', 0, 'GP-19-683', 'MARCILLA, LENLYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Check and repair Aircon @ GPI 7 Clinic', '', '2023-05-11', '2023-05-13', '191', 'MONZON, RIO', '2023-05-09', '', NULL, 'ok', '2023-05-10', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Check the aircon of Clinic at GPI 7,(found ok)\r\nFixed the louver of aircon (ok)', '', 0, NULL, NULL, '3', '3', 3.00, '2023-05-11', 'MARCILLA, LENLYN', NULL, NULL, 'We asked to the utility to open the aircon early at 6am to cool down the room. Thank you', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(198, '2023-05-09', 'rated', 0, 'GP-19-683', 'MARCILLA, LENLYN', '[email protected]', 'Administration', NULL, 'mis', 'Telephone', 'Installation of Telephone @ GPI 7 clinic', '', '2023-05-11', '2023-05-13', '191', 'MONZON, RIO', '2023-05-09', '', NULL, 'Short lead time for the request schedule May 11 at least 15 to 20 days', '2023-05-09', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-06-07', 'Performed feasibility assessment on the area requested', 'Check and evaluate the materials needed and conduct planning', 'Schedule the telephone line tracing and cable installation', 'May 26, 2023', 'June 07, 2023', 'June 07, 2023', 'Performed line tracing in GPI-7 & 3 to assign local number. Performed drilling of hole in the location going outside of the building and cable installation going into GPI-7 Clinic. Local number assigned is 429.', 'Local number assigned is 429.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Marcilla, Lenlyn', NULL, NULL, 'Satisfied', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(199, '2023-05-09', 'cancelled', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Others', 'Request of assistant for the downloading and updating of Firmware of 3D printer', '', '2023-05-10', '2023-05-12', '211', 'BAUTISTA, ELMER', '2023-05-09', '', NULL, '', '2023-05-10', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'already updated', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(200, '2023-05-09', 'cancelled', 0, 'GP-18-604', 'TONGA, CAMILLE', '[email protected]', 'Purchasing', NULL, 'mis', 'Telephone', ' M2301-024 - Re-occurrence of Problem before.', '', '2023-05-10', '2023-05-12', '156', 'SEMILLANO, LYZIEL', '2023-05-09', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Kindly include what is the problem or exact request.', '', 'NEMEDEZ, NATHAN', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(201, '2023-05-10', 'rated', 0, 'GP-08-214', 'ARMILLO, REY', '[email protected]', 'Production 2', NULL, 'fem', 'Facilities', 'Cover glass window in GPI 7.', '', '2023-05-10', '2023-05-12', '820', 'LISBOA, DINA', '2023-05-11', '', NULL, 'OK', '2023-05-12', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-31', NULL, NULL, NULL, NULL, NULL, NULL, 'The requested Job Order cant be perform due to we are not allowed by our SO to performed the task.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-04', 'Armillo, Rey', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(202, '2023-05-10', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To repair chain of tank lever at cubicle #3 at GPI-1 new male CR', '', '2023-05-11', '2023-05-13', '105', 'MONZON, RIO', '2023-05-10', '', NULL, 'ok', '2023-05-10', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-11', NULL, NULL, NULL, NULL, NULL, NULL, 'fix the \r\nchain of tank lever at cubicle #3 at GPI-1 new male CR', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(203, '2023-05-10', 'rated', 0, 'GP-18-616', 'MENDOZA, CHARISSE', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Enhance the appearance of our birthday bento props. ', '', '2023-05-11', '2023-05-16', '110', 'MONZON, RIO', '2023-05-10', '', NULL, 'ok', '2023-05-10', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Painting of plywood box and painting of round plastic props.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-16', 'MENDOZA, CHARISSE', NULL, NULL, 'Well done. ', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(204, '2023-05-10', 'rated', 0, 'GP-08-224', 'Quilantang, Joy', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Connection of 1 Aging tank in RBW-150 and transfer the electrical connection of 1 table in final inspection.', '', '2023-05-11', '2023-05-13', '538', 'Lemuel Semillano', '2023-05-10', '', NULL, 'ok', '2023-05-10', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Connect the Aging Tank.\r\nDisconnect the electrical connection of final inspection.\r\nTransfer the table\r\nConnect the electrical connection and air hose based on the given attachment.', 'None', 0, NULL, NULL, '4', '4', 4.00, '2023-05-11', 'Quilantang, Joy', NULL, NULL, '', 'May', '2023', '../upload_files/2305-1009-0129.RBW-150 LAY-OUT....xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(205, '2023-05-10', 'rated', 0, 'GP-08-216', 'NAUNGAYAN, WENNIE', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'As per assessment by MIS unit is malfunction, need to change SSD for computer GPI-170 (for thinkpad)', 'GPI-170', '2023-05-11', '2023-05-13', '820', 'LISBOA, DINA', '2023-05-11', '', NULL, 'Please next time indicate the problem encountered', '2023-05-12', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-12', 'Existing desktop workstation is already reformat and changed power supply', 'Upon checking, the existing desktop computer is very slow due to low specs. (Intel Pentium G3240)', 'Upon checking, the existing desktop computer is very slow due to low specs. (Intel Pentium G3240)', 'May 12, 2023', 'May 12, 2023', 'May 12, 2023', 'The computer is too slow to accommodate the user's daily task and installed applications. MIS recommend the user to use the assigned Prod2 laptop (Lenovo Thinkpad) but need to purchase 1TB SSD to be able to transfer the existing files from the old computer to the laptop. ', 'To purchase 1TB SSD for the storage of the laptop', 0, NULL, NULL, '4', '4', 4.00, '2023-05-24', 'NAUNGAYAN, WENNIE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(206, '2023-05-10', 'cancelled', 0, 'GP-18-616', 'MENDOZA, CHARISSE', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Adjustment of glass in the virdi machine of GPI 7. ', '', '2023-05-11', '2023-05-15', '110', 'MONZON, RIO', '2023-05-10', '', NULL, '', '2023-05-10', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Please apply JO to FEM :)', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(207, '2023-05-10', 'rated', 0, 'GP-18-616', 'MENDOZA, CHARISSE', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Putting of light in the guard house area near the virdi machine. ', '', '2023-05-11', '2023-05-13', '110', 'MONZON, RIO', '2023-05-10', '', NULL, 'ok', '2023-05-10', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Get the fixtures in GPI3 Storage.\r\nAssembled it in FEM area then installed in the Guard House in GPI 7 near virdi machine', 'None', 0, NULL, NULL, '5', '5', 5.00, '2023-05-11', 'MENDOZA, CHARISSE', NULL, NULL, 'Able to accomplish JO ahead of time. ', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(208, '2023-05-10', 'rated', 0, 'GP-94-005', 'REYES, RAYMOND', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Telephone', 'for checking because experiencing cutting of telephone line', '', '2023-05-11', '2023-05-13', '267', 'LONTOC, ARLENE', '2023-05-10', NULL, NULL, '', '2023-05-10', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-26', 'Performed actual checking of the telephone unit. ', 'Upon checking and call simulation, no interruption occured during the call. MIS provided a new telephone test unit for the user to observe the problem to determine if the existing old unit is malfunct', NULL, 'May 26, 2023', 'May 26, 2023', NULL, 'Done, for observation within 1 week. If problem is resolved, the user need to replace his old telephone unit. If problem came back, we advised to submit a request again. Thank you.', 'Need to replace the unit if the problem is resolved under the monitoring period.', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Reyes, Raymond', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(209, '2023-05-10', 'cancelled', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Quotation', 'Request quotation of personal computer to Production Support(Validation Process)transfer process from FEM.', '', '2023-05-11', '2023-05-13', '822', 'PINPIN, CHERRY', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'not include in budget', '', 'PINPIN, CHERRY', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(210, '2023-05-10', 'rated', 0, 'GP-12-346', 'DESEO, CHERRYLYN', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Additional light in loading area', '', '2023-05-11', '2023-05-13', '419', 'LISBOA, DINA', '2023-05-11', '', NULL, '', '2023-05-12', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-31', NULL, NULL, NULL, NULL, NULL, NULL, 'The requested Job Order cant be perform due to we are not allowed by our SO to performed the task.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Deseo, Cherrylyn', NULL, NULL, '', 'May', '2023', '../upload_files/2305-1010-3912.IMG_20230509_191630.jpg.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(211, '2023-05-10', 'rated', 0, 'GP-10-248', 'CASTULI, SHEILA', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'GSTAR G219 Function thru data output in Email Outlook it takes less than 1 minute before, but recently it takes more than 18 minutes that causes downtime to my process for ECN/non ECN revision sheet. I encountered problem more than a month', 'C2106-065', '2023-05-11', '2023-05-13', '155', 'SEMILLANO, LYZIEL', '2023-05-10', '', NULL, 'For checking not only on GPI side', '2023-05-10', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-11', NULL, NULL, NULL, NULL, NULL, NULL, '1. Checked the configuration of mail server. 2. Removed the DMARC, and DKIM inspection from mail server. 3. Tested the status of the system from the end-user. 4. The system generated e-mail was received immediately.', 'None. Thank you for your kind cooperation.', 0, NULL, NULL, '4', '4', 4.00, '2023-05-11', 'CASTULI, SHEILA', NULL, NULL, 'Good. Already received the data output on-time, hopefully that this will be consistent.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(212, '2023-05-10', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Facilities', 'steel role up need to repair ( cant automatic stop when open it up, until reach the maximum high not stop).', '', '2023-05-11', '2023-05-16', '211', 'BAUTISTA, ELMER', '2023-05-10', '', NULL, 'OK', '2023-05-11', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Adjust the limit switch of roll up door until reach the maximum high.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-11', 'Manny Herrera', NULL, NULL, 'Good for immediate response.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(213, '2023-05-10', 'Done', 0, 'GP-18-596', 'MUGAS, JOHN ERIC', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'For Checking , some app or link not supported ', 'GPI51', '2023-05-11', '2023-05-12', '381', 'Sheryll Ramirez', '2023-05-11', '', NULL, '', '2023-05-11', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-26', 'Performed checking to the computer to verify the problem', 'After checking on the computer, we found out that the computer was purchased on December 2009, more than 1 decade old and currently running Windows 7 32bit Operating System. New version of google chro', 'New version of google chrome cannot be installed to the computer due to outdated OS. The reason why the user cannot run new GPI sites on the browser. We suggest to upgrade to computer to be able to ac', 'May 26, 2023', 'May 26, 2023', 'May 26, 2023', 'MIS recommends to upgrade the computer to access the requested websites', 'MIS recommends to upgrade the computer to access the requested websites', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(214, '2023-05-11', 'rated', 0, 'GP-18-596', 'MUGAS, JOHN ERIC', '[email protected]', 'PPIC', NULL, 'fem', 'Mechanical', 'Aircon unit at gpi2 Office for repair', '', '2023-05-12', '2023-05-13', '381', 'Sheryll Ramirez', '2023-05-11', '', NULL, 'OK', '2023-05-11', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-12', 'Waiting of material.', NULL, NULL, 'May 12, 2023', NULL, NULL, 'Replaced new contactor of outdoor unit.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'MUGAS, JOHN ERIC', NULL, NULL, 'Good job', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(215, '2023-05-11', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Exporting data in GstarM G176 takes awhile previously we can received data thru email real-time but now it changed from 15 minutes up to 2 days. It causes difficulty in preparing product quotation request.', '', '2023-05-12', '2023-05-14', '266', 'Sheryll Ramirez', '2023-05-11', 'This is URGENT , please give time to check this problem.', NULL, '', '2023-05-11', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-16', NULL, NULL, NULL, NULL, NULL, NULL, '1. Checked the configuration of mail server. 2. Removed the DMARC, and DKIM inspection from mail server. 3. Tested the status of the system from the end-user. 4. The system generated e-mail was received immediately. 5. This was fixed after the config for Ms. Shiela's JO.', 'None, Thank you', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'CALDERON, NAOMI', NULL, NULL, 'DONE. THANK YOU', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(216, '2023-05-11', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional 5pcs outlet(4pcs 110V hanging outlet 1pc 220V working table outlet)and 1pc hanging outlet transfer location(RBW-150 line)', '', '2023-05-12', '2023-05-14', '822', 'PINPIN, CHERRY', '2023-05-11', '', NULL, 'ok', '2023-05-11', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed Additional 5pcs outlet(4pcs 110V hanging outlet 1pc 220V working table outlet)and 1pc hanging outlet transfer location(RBW-150 line).', '', 0, NULL, NULL, '4', '5', 4.50, '2023-05-12', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(217, '2023-05-11', 'Done', 0, 'GP-08-220', 'NARANJO, JOEL', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'REQUEST VPN ACCOUNT USE FOR SUPPLIER MEETING', 'C2106-072', '2023-05-12', '2023-05-14', '128', 'SEMILLANO, LYZIEL', '2023-05-11', '', NULL, '', '2023-05-12', NULL, 'GP-11-306', 'NEMEDEZ, NATHAN', NULL, '2023-05-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Give access on forticlient for vpn access. Assist on how to use vpn and vnc to remote pc outside company network. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(218, '2023-05-11', 'rated', 0, 'GP-23-760', 'JOYA, RENAN', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'To replace the LED UFO Emergency lights ceiling mounted on 3 units of wall mounted emergency light at GPI 1 canteen area.', '', '2023-05-12', '2023-05-19', '120', 'REYES, RAYMOND', '2023-05-17', '', NULL, '', '2023-05-18', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-26', 'For request of materials (Plastic molding,wires and convenience outlet)', NULL, NULL, 'May 22, 2023', NULL, NULL, 'Installed 3 additional wall mounted emergency lights at GPI-1 canteen area.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'JOYA, RENAN', NULL, NULL, '', 'May', '2023', '../upload_files/2305-1110-5416.Emergecny light at GPI 1 canteen area.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(219, '2023-05-11', 'cancelled', 0, 'GP-18-614', 'ESCAMILLAS, TRICY ANN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Test', '', '2023-05-12', '2023-05-14', '212', 'CALALO, GEMMA', '2023-05-11', NULL, NULL, '', '2023-05-11', NULL, 'GP-12-356', 'RAMIREZ, FRANCISCO', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Thank you', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(220, '2023-05-11', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Computer', 'Request new connection to new printing machine on audit and training area ', 'all computer on DOK ', '2023-05-12', '2023-05-16', '211', 'BAUTISTA, ELMER', '2023-05-11', '', NULL, '', '2023-05-11', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-12', '1. Waiting for DOK and Prod-support agreement for printer access to Audit and training.', NULL, NULL, 'May 12, 2023', NULL, NULL, '2. Install driver Apeos port 5570 of the Audit and Training printer to all DOK computers. 3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'Manny Herrera', NULL, NULL, 'Good Response.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(221, '2023-05-11', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional outlet 220V for RBW-150 QC Line.', '', '2023-05-12', '2023-05-14', '822', 'PINPIN, CHERRY', '2023-05-12', '', NULL, 'Ok', '2023-05-12', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed new outlet 220V for RBW-150 QC Line. ', '', 0, NULL, NULL, '4', '5', 4.50, '2023-05-12', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(222, '2023-05-12', 'cancelled', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To check function of two mouse.', '', '2023-05-15', '2023-05-17', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Change date', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(223, '2023-05-12', 'rated', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Three telephone line connection in gpi-10(1 unit 2nd floor and two unit ground floor', '', '2023-05-17', '2023-05-30', '381', 'Sheryll Ramirez', '2023-05-12', '', NULL, '', '2023-05-12', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-31', 'Check the destination and verify the source of connection for the cabling', NULL, NULL, 'May 31, 2023', NULL, NULL, 'Performed installation of telephone and network cables for the connection source. Waiting for the needed devices to be delivered. (Purchasing of the devices to be installed in GPI-10 is already process)', 'Due to uncontrolled situation (delivery lead time of the needed devices) Requestor may submit another request when the needed devices have arrived.', 0, NULL, NULL, '3', '3', 3.00, '2023-06-15', 'Florindo, Eric', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(224, '2023-05-12', 'rated', 0, 'GP-21-707', 'BAUTISTA, JASON', '[email protected]', 'Purchasing ', NULL, 'mis', 'Computer', 'Check why my email to supplier always appear on their spam messages.', 'C2303-004', '2023-05-13', '2023-05-15', '139', 'SEMILLANO, LYZIEL', '2023-05-12', '', NULL, '', '2023-05-12', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Only one email was delivered to spam. No action taken.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-05-31', 'BAUTISTA, JASON', NULL, NULL, 'Email was fix on supplier server.', 'May', '2023', '../upload_files/2305-1208-2352.SCREENSHOT.png.png', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(225, '2023-05-12', 'rated', 0, 'GP-11-278', 'PACUAN, MARY JANE', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Computer hangs-up during the excel operation', 'GPI318', '2023-05-15', '2023-05-19', '263', 'Sheryll Ramirez', '2023-05-12', '', NULL, '', '2023-05-12', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS discovered the unit needed more RAM than usual after inspecting it. While the unit is still being watched, we clean the temporary files to restore normality.', 'MIS recommends purchasing an additional DDR4 4GB RAM module to enhance the computer's speed.', 0, NULL, NULL, '4', '3', 3.50, '2023-05-18', 'PACUAN, MARY JANE', NULL, NULL, 'still for monitoring if hanging will still happen again', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(226, '2023-05-12', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair / replacement of tank lever at cubicle #1 at gpi-1 new female cr', '', '2023-05-13', '2023-05-15', '105', 'MONZON, RIO', '2023-05-12', '', NULL, 'ok', '2023-05-12', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken tank lever at new female c.r. cubicle no. 1 at gpi-1. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-12', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(227, '2023-05-12', 'rated', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Lan connection for 3 computers at second floor gpi-10, one computers at ground floor.', 'GPI-323,GPI-41,GPI-6', '2023-05-17', '2023-05-30', '381', 'Sheryll Ramirez', '2023-05-12', '', NULL, '', '2023-05-12', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-06-02', '1. Check the location as of request.\r\n2. Estimate the possible way for the LAN cable to go to the requested locations.\r\n3. Partial estimation for schedule, this coming Saturday (May 27, 2023)', '1. Check the location as of request.\r\n2. Estimate the possible way for the LAN cable to go to the requested locations.\r\n3. Partial estimation for schedule, this coming Saturday (May 27, 2023)', '1. Done for wiring the LAN cable connection, waiting for the needed materials.', 'May 24, 2023', 'May 24, 2023', 'June 01, 2023', 'Performed installation of telephone and network cables for the connection source. Waiting for the needed devices to be delivered. (Purchasing of the devices to be installed in GPI-10 is already process)', '', 0, NULL, NULL, '4', '4', 4.00, '2023-06-15', 'Florindo, Eric', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(228, '2023-05-12', 'cancelled', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Three set outlet for computers at gpi-10 second floor,one set outlet for computers ground floor', '', '2023-05-17', '2023-05-30', '381', 'Sheryll Ramirez', '2023-05-12', '', NULL, 'ok', '2023-05-15', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, NULL, 'Waiting for the tables to be fix/arranged at gpi-`10.', NULL, NULL, 'May 22, 2023', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'No submitted lay-out plan', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(229, '2023-05-12', 'rated', 0, 'GP-07-204', 'SARTE, EMYRIA', '[email protected]', 'Production 2', NULL, 'fem', 'Mechanical', 'Repair hexagonal bit for impact driver 2.8n.m.due to already broken.', '', '2023-05-15', '2023-05-17', '316', 'LISBOA, DINA', '2023-05-22', '', NULL, 'OK', '2023-05-22', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Welded the broken hexagonal bit of impact driver', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SARTE, EMYRIA', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(230, '2023-05-12', 'rated', 0, 'GP-07-204', 'SARTE, EMYRIA', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Request for attachment of ground wire on 19pcs.table of glr-100l', '', '2023-05-15', '2023-05-17', '316', 'LISBOA, DINA', '2023-05-15', '', NULL, 'ok', '2023-05-15', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-25', 'Waiting of alligator clamp from GLR 100 ', NULL, NULL, 'May 22, 2023', NULL, NULL, 'Already intalled 19 pcs ground wire to the working table and big table.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SARTE, EMYRIA', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(231, '2023-05-12', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect electrical connection of pipe cutting machine at production support improvement area.', '', '2023-05-15', '2023-05-17', '822', 'PINPIN, CHERRY', '2023-05-12', '', NULL, 'OK', '2023-05-12', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect electrical connection of pipe cutting machine at production support improvement area.', '', 0, NULL, NULL, '4', '5', 4.50, '2023-05-15', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(232, '2023-05-12', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check lavatory with leakage at gpi-2 female cr', '', '2023-05-13', '2023-05-15', '105', 'MONZON, RIO', '2023-05-12', '', NULL, 'ok', '2023-05-15', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Apply epoxy on P-trap of lavatory due to leakage at gpi-2 female cr.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-15', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(233, '2023-05-12', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To install urinal at urinal #3 at gpi-5 male cr', '', '2023-05-13', '2023-05-15', '105', 'MONZON, RIO', '2023-05-12', '', NULL, 'ok', '2023-05-15', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-27', 'For request of materials needed. (bolts and nut screw)', NULL, NULL, 'May 15, 2023', NULL, NULL, 'Install the urinal bowl in the urinal bowl #03 at new male C.R and put sealant into the gap of wall and urinal bowl.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(234, '2023-05-12', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To provide separate switch for housekeeping storage room', '', '2023-05-13', '2023-05-15', '105', 'MONZON, RIO', '2023-05-12', '', NULL, 'ok', '2023-05-15', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-27', 'For request of materials needed (Plastic molding).', NULL, NULL, 'May 22, 2023', NULL, NULL, 'Re-wiring the electrical lighting's supply of housekeeping storage and separate the electrical supply in production area.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(235, '2023-05-12', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To repair push cart at gpi-1', '', '2023-05-13', '2023-05-15', '105', 'MONZON, RIO', '2023-05-12', '', NULL, 'ok', '2023-05-15', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace new pushcart because the other push is cannot be repaired.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-18', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(236, '2023-05-15', 'Done', 0, 'GP-08-225', 'RIVAMONTE, JONALYN', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Cannot open (on and off cpu)', 'C2106-068', '2023-05-16', '2023-05-18', '423', 'LISBOA, DINA', '2023-05-15', '', NULL, '', '2023-05-15', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-23', 'Ongoing checking of computer.', NULL, NULL, 'May 17, 2023', NULL, NULL, 'Upon troubleshooting the computer, MIS performed checked the possible causes of turning on and off the computer, Perform checking the power supply, ram, and hard disk, MIS found out that the main problem is the Motherboard no response upon turning on the computer.', 'Purchase a new package of motherboard, ram, and processor.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(237, '2023-05-15', 'Done', 0, 'GP-19-683', 'MARCILLA, LENLYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Check and repair aircon at gpi 1 clinic dental area due to automatically off.', '', '2023-05-16', '2023-05-18', '191', 'MONZON, RIO', '2023-05-15', '', NULL, 'ok', '2023-05-15', NULL, 'GP-12-356', 'RAMIREZ, FRANCISCO', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking conducted by FEM,the wires that connected to the capacitor is already worn out/detached that is the reason why the air con is automatically shutdown.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(238, '2023-05-15', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever in new female cr cubicle #9 at gpi 1', '', '2023-05-16', '2023-05-18', '102', 'MONZON, RIO', '2023-05-15', '', NULL, 'ok', '2023-05-15', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken tank lever and damage fill valve at new female c.r. cubicle no. 9. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(239, '2023-05-15', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of doorknob in male cr at gpi 7', '', '2023-05-16', '2023-05-18', '102', 'MONZON, RIO', '2023-05-15', '', NULL, 'ok', '2023-05-15', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of damage doorknob on male c.r. at gpi-7.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(240, '2023-05-15', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Request for additional extension cord for computer beside ms. Jonna', '', '2023-05-16', '2023-05-18', '266', 'Sheryll Ramirez', '2023-05-16', '', NULL, 'ok', '2023-05-17', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Install 2 Gang outlet for computer besides ms. jonna.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'CALDERON, NAOMI', NULL, NULL, 'DONE. THANK YOU. GOOD JOB', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(241, '2023-05-15', 'rated', 0, 'GP-06-190', 'ALCANTARA, FILIPINA', '[email protected]', 'Quality Control', NULL, 'mis', 'Non-Technical', 'Setting up projector and laptop for kaizen presentation (may 19, 2023 at conference room 5 (vip room)', '', '2023-05-17', '2023-05-19', '264', 'Wilma, Logrono', '2023-05-15', '', NULL, '', '2023-05-16', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Set-up done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-20', 'ALCANTARA, FILIPINA', NULL, NULL, 'Good job..', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(242, '2023-05-16', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Electrical', 'Unplug electrical connection to main source. To glr-200 rsm unit.', '', '2023-05-17', '2023-05-19', '211', 'BAUTISTA, ELMER', '2023-05-16', '', NULL, 'ok', '2023-05-16', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-16', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect/Unplug electrical connection to main source. To glr-200 rsm unit.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'Manny Herrera', NULL, NULL, 'Good Cooperation.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(243, '2023-05-16', 'rated', 0, 'GP-19-678', 'BORNASAL, RUSITHA AUDREY', '[email protected]', 'Administration', NULL, 'mis', 'Non-Technical', 'Set up of speaker, microphone, LAN and opening prayer for the training ( May 18-19, 2023).', '', '2023-05-17', '2023-05-19', '110', 'MONZON, RIO', '2023-05-16', '', NULL, '', '2023-05-16', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-23', 'Set up a speaker, microphone, and projector in conference 4 for the auditor training on this day, May 18, 2023.', NULL, NULL, 'May 18, 2023', NULL, NULL, 'Done for the schedule of May 18-19, 2023.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-23', 'BORNASAL, RUSITHA AUDREY', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(244, '2023-05-16', 'rated', 0, 'GP-19-678', 'BORNASAL, RUSITHA AUDREY', '[email protected]', 'Administration', NULL, 'mis', 'Non-Technical', 'Set up of speaker, microphone, lan and opening prayer for the training ( may 29-30, 2023)', '', '2023-05-29', '2023-05-31', '110', 'MONZON, RIO', '2023-05-16', '', NULL, '', '2023-05-16', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-31', 'Set up of speaker, microphone, LAN, and opening prayer for the training ( May 29-30, 2023).', 'Set up of speaker, microphone, LAN, and opening prayer for the training ( May 29-30, 2023).', NULL, 'May 30, 2023', 'May 30, 2023', NULL, 'Done for the schedule of May 29-30, 2023.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(245, '2023-05-16', 'cancelled', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Non-Technical', 'To check function of two mouse due to not working properly', '', '2023-05-17', '2023-05-19', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'For test only', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(246, '2023-05-16', 'rated', 0, 'GP-16-473', 'NACOR JR., LORIE', '[email protected]', 'PPIC', NULL, 'fem', 'Mechanical', 'Cooling unit (iwata) for repair', '', '2023-05-17', '2023-05-19', '392', 'Sheryll Ramirez', '2023-05-17', '', NULL, 'ok', '2023-05-22', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'As per assessment/checking conducted by FEM we found out that the fan blade was already damaged/worn out.', 'For replacement of Fan blade or electric fan', 0, NULL, NULL, '5', '5', 5.00, '2023-05-23', 'NACOR JR., LORIE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(247, '2023-05-17', 'rated', 0, 'GP-16-473', 'NACOR JR., LORIE', '[email protected]', 'PPIC', NULL, 'fem', 'Mechanical', '2 units of exhaust fan at gpi2 for checking & repair due to malfunction', '', '2023-05-18', '2023-05-19', '381', 'Sheryll Ramirez', '2023-05-18', '', NULL, 'ok', '2023-05-22', NULL, 'GP-12-356', 'RAMIREZ, FRANCISCO', NULL, '2023-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking of Exhaust Fan,It is beyond the capability of FEM due to the location of the unit is too high.', 'For check/repair by outside service provider.', 0, NULL, NULL, '5', '4', 4.50, '2023-05-23', 'NACOR JR., LORIE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(248, '2023-05-17', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair / replacement of tank lever at cubicle #9 at gpi-1 new female cr', '', '2023-05-18', '2023-05-20', '105', 'MONZON, RIO', '2023-05-17', '', NULL, 'ok', '2023-05-17', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair / replacement of tank lever and fill valve at cubicle #9 at gpi-1 new female cr.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-17', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(249, '2023-05-17', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'fem', 'Electrical', 'Kindly install an additional lighting to height gauge/granite table in qc/fab area.', '', '2023-05-18', '2023-05-20', '105', 'SAPALASAN, ELOISA', '2023-05-17', '', NULL, 'OK', '2023-05-17', NULL, 'GP-11-301', 'MAGAT, ROEL', NULL, '2023-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Assemble lighting stand using spare ivory pipe and led light 1 set with holder and pendant switch , After assemble install led light to the stand . testing ok turn over to end user.', 'n/a', 0, NULL, NULL, '5', '5', 5.00, '2023-05-23', 'ROLLE, RYAN', NULL, NULL, 'I am very much delighted to their work, and very thankful also that they instantly do it and immediately.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(250, '2023-05-17', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Non-Technical', 'Production-1 scanner cannot use dur to malfunction(error code f4:c2).', '', '2023-05-18', '2023-05-20', '822', 'PINPIN, CHERRY', '2023-05-17', '', NULL, '', '2023-05-17', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'The device was check previously and the task you requested falls outside the range of the technical support that I can provide.', 'For Replacement.', 0, NULL, NULL, '4', '4', 4.00, '2023-05-23', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(251, '2023-05-17', 'cancelled', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnection and connection of electrical supply due to re-arrange table set-up(production support supplies gpi-7).', '', '2023-05-18', '2023-05-20', '822', 'PINPIN, CHERRY', '2023-05-17', '', NULL, 'OK', '2023-05-17', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'FEM check the actual lay-out ,however it will effect to the lay-out of RBW 150 and as per advise by requestor', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(252, '2023-05-17', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Connect electrical supply 110v and 220v to production support improvement area.', '', '2023-05-18', '2023-05-20', '822', 'PINPIN, CHERRY', '2023-05-17', '', NULL, 'OK', '2023-05-17', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Install/Connect electrical supply 110v and 220v to production support improvement area.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-05-22', 'ASUELO, OSCAR JR.', NULL, NULL, 'Good', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(253, '2023-05-17', 'rated', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Provide metal ramp near guard house for gpi-10 to easily access our equipment .', '', '2023-05-22', '2023-06-09', '381', 'Sheryll Ramirez', '2023-05-18', '', NULL, 'ok', '2023-05-22', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-05-31', 'For request materials needed (Metal plate)', NULL, NULL, 'May 25, 2023', NULL, NULL, 'FEM personnel check the job order request and base on the assessment the project is difficult and didn't finish base of the target date schedule. Then the job order request are subject to perform by outside service provider.', '', 0, NULL, NULL, '3', '3', 3.00, '2023-06-15', 'Florindo, Eric', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(254, '2023-05-17', 'rated', 0, 'GP-23-760', 'JOYA, RENAN', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Putting covers on other acu air vents that are not needed in the vmi area to reduce the temperature because this area is used as storage and nothing stays there. Please see attached file for more details', '', '2023-05-18', '2023-05-24', '120', 'REYES, RAYMOND', '2023-05-17', '', NULL, 'OK', '2023-05-18', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Putting covers on other acu air vents that are not needed in the vmi area to reduce the temperature because this area is used as storage and nothing stays there. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'JOYA, RENAN', NULL, NULL, '', 'May', '2023', '../upload_files/2305-1715-1207.VMI area ACU air vent.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(255, '2023-05-17', 'cancelled', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'mis', 'Non-Technical', 'Kindly update the name of these members :manalo, ginalyn villarojo with id no. Gp-18-592, and cabuco, phillip with id no. Gp-15-446 to the helpdesk', '', '2023-05-18', '2023-05-20', '105', 'SAPALASAN, ELOISA', '2023-05-17', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'What kind of update please make it details.\r\nex. from and to', '', 'NEMEDEZ, NATHAN', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(256, '2023-05-18', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Request to check ups( ms. Abigail torres), not working when there power interruption', 'C2106-077', '2023-05-19', '2023-05-21', '266', 'Sheryll Ramirez', '2023-05-18', '', NULL, '', '2023-05-18', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Already replaced the battery multiple times. 2. Checked the UPS 3. For replacement. 4. Provided a quotation', 'UPS for replacement', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Calderon, Naomi', NULL, NULL, 'Waiting for UPS replacement. Thanks.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(257, '2023-05-18', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Please check ups (ms. Jonna maigue), due to battery problem.', 'C2106-081', '2023-05-19', '2023-05-21', '266', 'Sheryll Ramirez', '2023-05-18', '', NULL, '', '2023-05-18', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-18', 'MIS checks the UPS ', NULL, NULL, 'May 18, 2023', NULL, NULL, 'Upon checking with UPS, MIS found out that the UPS battery was damaged or drained, causing it to beep continuously. \r\nUpon changing the UPS battery, MIS personnel noticed that the UPS had a leak and covered the terminals with lead acid \r\ncorrosion.', 'Purchased new UPS.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Calderon, Naomi', NULL, NULL, 'Waiting for UPS replacement. Thanks', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(258, '2023-05-18', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of three (3) door knobs at gpi-10 cr', '', '2023-05-18', '2023-05-20', '105', 'MONZON, RIO', '2023-05-18', '', NULL, '', '2023-05-18', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-25', 'install one doorknob in gpi-10 cr and the other two waiting for materials.', NULL, NULL, 'May 19, 2023', NULL, NULL, 'replacement (2) doorknob at gpi -10 CR', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(259, '2023-05-18', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check continuous running water of urinal bowl at gpi-10 male cr upstair', '', '2023-05-19', '2023-05-21', '105', 'MONZON, RIO', '2023-05-18', '', NULL, 'OK', '2023-05-18', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Adjust/Tighten the flush lever of urinal bowl at GPI-10.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-19', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(260, '2023-05-18', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To install drainage cover at gpi-9 male cr', '', '2023-05-19', '2023-05-21', '105', 'MONZON, RIO', '2023-05-18', '', NULL, 'OK', '2023-05-19', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-19', NULL, NULL, NULL, NULL, NULL, NULL, 'install new drainage cover at gpi-9 male cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-19', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(261, '2023-05-18', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Electrical', 'Request assistant for assemble of led light (9pcs) for the preparation of upcoming lay-out of sdrb line.', '', '2023-05-19', '2023-05-21', '211', 'BAUTISTA, ELMER', '2023-05-18', '', NULL, 'OK', '2023-05-18', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Already assemble the (9pcs) led light fixture and endorse to sir jp.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-22', 'Manny Herrera', NULL, NULL, 'Good Work.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(262, '2023-05-19', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request assistance to open the gpi 2 sampling point on may 23-26 every 10 am, to monitor and verify the flow out of domestic waste water in gpi 2', '', '2023-05-23', '2023-05-26', '120', 'REYES, RAYMOND', '2023-05-19', '', NULL, 'ok', '2023-05-22', NULL, 'GP-12-356', 'RAMIREZ, FRANCISCO', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Assist SO to open the cover of sampling point in GPI2', 'To contact the bldg.owner for the possible repair', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'Jayson Torres', NULL, NULL, 'Very Satisfied', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(263, '2023-05-19', 'rated', 0, 'GP-16-473', 'NACOR JR., LORIE', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Chair with protuding object (nail) at gpi2 smoking area for repair/for replacement\r\n(as corrective action from daina)', '', '2023-05-20', '2023-05-22', '392', 'Sheryll Ramirez', '2023-05-19', '', NULL, 'ok', '2023-05-22', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the chair at smoking area at GPI-2.', '', 0, NULL, NULL, '5', '4', 4.50, '2023-05-23', 'NACOR JR., LORIE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(264, '2023-05-19', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to install suggestion box in gpi 9. Please see attached file for your reference. Thank you.', '', '2023-05-22', '2023-05-24', '120', 'REYES, RAYMOND', '2023-05-22', '', NULL, 'ok', '2023-05-22', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed suggestion box at GPI-9 Warehouse Area.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-25', 'Jayson Torres', NULL, NULL, 'Very Satisfied', 'May', '2023', '../upload_files/2305-1912-3505.Suggestion box in GPI 9.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(265, '2023-05-19', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To repair urinal leak at gpi-9 male cr', '', '2023-05-20', '2023-05-22', '105', 'MONZON, RIO', '2023-05-22', '', NULL, 'ok', '2023-05-22', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking we found out that the urinal has no problem/leak.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-23', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(266, '2023-05-22', 'rated', 0, 'GP-10-262', 'ROJAS, NOEMI', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to check the computer due to not open', 'GPI27', '2023-05-23', '2023-05-25', '505', 'LISBOA, DINA', '2023-05-22', '', NULL, '', '2023-05-22', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-26', 'Performed initial checking, advised to apply a job order request', 'Schedule to get the system unit within May 23-24 in GPI-5 Packaging', NULL, 'May 22, 2023', 'May 22, 2023', NULL, 'Performed troubleshooting to the system unit to determine the main cause of the problem. After verification and testing of each computer parts, the main problem found is the Power Supply due to bloated capacitor in the circuit board.', 'Need to replace by new power supply. To provide quotation to the requestor', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'ROJAS, NOEMI', NULL, NULL, 'Job well done, continue immediate action', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(267, '2023-05-22', 'rated', 0, 'GP-16-480', 'CASTRO, RANELYN', '[email protected]', 'Production Technology', NULL, 'mis', 'Email', 'Reactivate e-mail: [email protected] & [email protected]\r\ndeletion of e-mail: [email protected]', '', '2023-05-23', '2023-05-25', '157', 'CATIGAN, NOLIESON', '2023-05-22', '', NULL, '', '2023-05-22', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Deleted [email protected], and created prodtechstaff1 and prodtechstaff2 emails. Already logged on to prod. tech computers', 'None', 0, NULL, NULL, '5', '5', 5.00, '2024-03-20', 'Castro, Ranelyn', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(268, '2023-05-22', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Please check the stove in gpi-1 canteen', '', '2023-05-23', '2023-05-25', '102', 'CALALO, GEMMA', '2023-05-23', '', NULL, 'OK', '2023-05-23', NULL, 'GP-12-356', 'RAMIREZ, FRANCISCO', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking conducted by FEM,There is a leak in valve of stove .', 'For replacement of valve and stove.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-31', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(269, '2023-05-22', 'cancelled', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Non-Technical', 'Update gpss for maintenance.', '', '2023-05-23', '2023-05-25', '822', 'PINPIN, CHERRY', '2023-05-23', '', NULL, '', '2023-05-23', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'Realign the type/category of request.', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(270, '2023-05-22', 'rated', 0, 'GP-94-005', 'REYES, RAYMOND', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Requesting to check/repair exit signage at 2nd floor gpi 10. Please see attached file for your reference. Thank you.', '', '2023-05-23', '2023-05-25', '267', 'LONTOC, ARLENE', '2023-05-22', NULL, NULL, 'Ok', '2023-05-23', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking the signage is already busted/damage so we decided to replace it with the exit signage at GPI-10 second floor area.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'REYES, RAYMOND', NULL, NULL, '', 'May', '2023', '../upload_files/2305-2215-5352.Exit Signage for JO GPI 10.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(271, '2023-05-23', 'rated', 0, 'GP-16-461', 'ALONZO, JOHN LORD', '[email protected]', 'Administration', NULL, 'mis', 'Email', 'Installation of email address for powerlane.', '', '2023-05-24', '2023-05-26', '818', 'CALALO, GEMMA', '2023-05-23', 're-installation', NULL, '', '2023-05-23', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-05-31', 'Schedule to installation', NULL, NULL, 'May 31, 2023', NULL, NULL, 'Already installed email account to the requested computer', '', 0, NULL, NULL, '4', '5', 4.50, '2023-06-02', 'Alonzo, John Lord', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(272, '2023-05-23', 'rated', 0, 'GP-18-606', 'VILLANROQUE, NEMFA', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', '1. Request support for language compatibility using japan euc system. 2. Request for google translate in using japan system.', 'C2106-073', '2023-05-24', '2023-05-26', '158', 'SEMILLANO, LYZIEL', '2023-05-23', '', NULL, '', '2023-05-23', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-31', 'To check and analyze the problem encountered of the user', 'Performed reconfiguration on region settings in control panel. Problem still exist. Schedule to check again and perform research to solve the problem.', 'Tried to recsetup Microsoft language support to other test computer and allow the user to perform trial. Problem is solved thru setting up Japanese Language as a default in Microsoft Office Authoring ', 'May 31, 2023', 'May 31, 2023', 'May 31, 2023', 'Relay Google Translate access to Mr. Kevin. Request granted', 'No pending request remaining on the said computer.', 0, NULL, NULL, '5', '5', 5.00, '2023-05-31', 'VILLANROQUE, NEMFA', NULL, NULL, ' Good Job! Thank you for your support.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(273, '2023-05-23', 'cancelled', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Non-Technical', 'Check the two mouse', '', '2023-05-24', '2023-05-26', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', 'FOR TEST ONLY', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(274, '2023-05-23', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Update gpss for maintenance to RBW-100,RBG,RBW-10/50,SDRB-100,RBW-200.', 'GPI-280', '2023-05-24', '2023-05-26', '822', 'PINPIN, CHERRY', '2023-05-23', '', NULL, '', '2023-05-24', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Updated every computers on the list except for:\r\nDanny Ocsin - Motherboard for replacement\r\nDeserie Baldesimo - Laptop for replacement\r\nMarissa Canto - Cannot update .Net Framework to 4.6 or higher', 'Provide the computer name not the users.', 0, NULL, NULL, '4', '4', 4.00, '2023-05-24', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(275, '2023-05-23', 'rated', 0, 'GP-12-344', 'RAMOS, CHAREYNA', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Disconnection of 2 outlet used by japanese and chinese located in sdrb line', '', '2023-05-24', '2023-05-26', '311/314', 'LISBOA, DINA', '2023-05-23', '', NULL, 'ok', '2023-05-23', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnection of 2 outlet used by japanese and chinese located in sdrb line', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-24', 'RAMOS, CHAREYNA', NULL, NULL, 'VERY GOOD', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(276, '2023-05-23', 'rated', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Additional light in small rack gpi-10 and power outlet (small rack ,big rack)', '', '2023-05-29', '2023-06-12', '381', 'Sheryll Ramirez', '2023-05-23', '', NULL, 'ok', '2023-05-23', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-03', 'For request of materials needed.', NULL, NULL, 'May 24, 2023', NULL, NULL, 'Fabricate Lighting support.\r\nWiring Installation of Secondary Light.\r\nWiring Installation of outlet. \r\nPainting red oxide of bracket.\r\n\r\nPerformed By All FEM personnel', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-03', 'Florindo, Eric', NULL, NULL, '', 'May', '2023', '../upload_files/2305-2312-2848.GPI-10 LAYOUT FINAL.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(277, '2023-05-23', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check lavatory elbow with leakage at guest cr upstair at gpi-1', '', '2023-05-24', '2023-05-26', '105', 'CALALO, GEMMA', '2023-05-23', '', NULL, 'ok', '2023-05-23', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Apply epoxy at elbow with leakage at guest cr uptairs at gpi-1.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(278, '2023-05-23', 'rated', 0, 'GP-12-347', 'FLORINDO, ERIC', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Request bollard in gpi-10 big rack', '', '2023-05-29', '2023-06-15', '381', 'Sheryll Ramirez', '2023-05-23', '', NULL, 'ok', '2023-05-23', NULL, 'GP-17-516', 'NATUEL, JONATHAN JR.', NULL, '2023-08-01', 'For request of materials needed (welding activity).', NULL, NULL, 'May 24, 2023', NULL, NULL, 'Fabricate the bollard and welding and install ot the assigned big rack.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-04', 'Florindo, Eric', NULL, NULL, '', 'May', '2023', '../upload_files/2305-2312-3531.GPI-10 LAYOUT FINAL.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(279, '2023-05-23', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #6 at gpi-1 old female cr', '', '2023-05-24', '2023-05-26', '105', 'CALALO, GEMMA', '2023-05-23', '', NULL, 'ok', '2023-05-23', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken/damage tank lever at cubicle #6 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(280, '2023-05-23', 'rated', 0, 'GP-06-181', 'ROLLE, RYAN', '[email protected]', 'Parts Production', NULL, 'mis', 'Non-Technical', 'Ms. Manalo, ginalyn villarojo with id no. Gp-18-592, and mr. Cabuco, phillip with id no. Gp-15-446 cannot access their helpdesk with their id no. Please help them with their problem to access.', '', '2023-05-24', '2023-05-26', '105', 'SAPALASAN, ELOISA', '2023-05-23', '', NULL, '', '2023-05-23', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Registered Ms. Manalo and Mr. Cabuco in our heldesk system. Just enter the given ID as their username and password. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-24', 'ROLLE, RYAN', NULL, NULL, 'Thank you so much Sir Cedrick.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(281, '2023-05-23', 'rated', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Non-Technical', 'To check function of two mouse use in drss line.', '', '2023-05-24', '2023-05-26', '508', 'Benjie Paras', '2023-05-24', '', NULL, '', '2023-05-24', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, 'The said mouse are already broken. Give a quotation.', 'We at MIS recommends to purchase a new one since the said mouse are broken. ', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'ODVIAR, MELODY', NULL, NULL, 'Ok and thank you for good service', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(282, '2023-05-23', 'rated', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Telephone', 'To check function of telephone loc. No 543 due to no dial tone.', '', '2023-05-24', '2023-05-26', '508', 'Benjie Paras', '2023-05-24', '', NULL, '', '2023-05-24', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-06-07', 'Schedule checking of the problem', 'After testing the telephone unit, we determined that the problem is the existing line. Set schedule on line tracing', NULL, 'June 07, 2023', 'June 07, 2023', NULL, 'Performed line tracing of the main telephone line and found out that the line has cut. We re-connect the line and test the telephone, dial tone is back to normal.', 'Done', 0, NULL, NULL, '4', '5', 4.50, '2023-06-07', 'Odviar, Melody', NULL, NULL, 'Thank you for good service', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(283, '2023-05-24', 'rated', 0, 'GP-08-216', 'NAUNGAYAN, WENNIE', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Request to conduct re-layout for the increase production schedule of sdrb-260.240.250 at gpi-1.', '', '2023-05-29', '2023-06-09', '821', 'LISBOA, DINA', '2023-05-24', '', NULL, 'OK', '2023-05-25', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-06-13', 'Waiting of materials and waiting of advise of DOK.', NULL, NULL, 'May 29, 2023', NULL, NULL, 'Conduct re layout based on the proposed lay out submitted', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-14', 'Naungayan, Wennie', NULL, NULL, 'Very satisfied and on-time service.', 'May', '2023', '../upload_files/2305-2407-2411.SDRB-260.240.250 lay-out from DOK 5.22.2023.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(284, '2023-05-24', 'cancelled', 0, 'GP-94-005', 'REYES, RAYMOND', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Requesting to install (6pcs.) exit signage for gpi 10. Please see attached file for your reference.', '', '2023-05-25', '2023-05-27', '267', 'LONTOC, ARLENE', '2023-05-24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '../upload_files/2305-2408-2646.FOR JO GPI 10.xlsx.xlsx', 'Upon checking or evaluating conducted by FEM, the request is cant be done on the target date of finish due to we need to request materials needed.\r\nYou need to set the target date of finish until 2nd ', '', 'RAMIREZ, FRANCISCO', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(285, '2023-05-24', 'rated', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To install, barcode installation to 3 computer to be use in downloading and uploading documents (trial inspection report) to attach in approval sample items.', 'C2106-026,C2110-223,', '2023-05-25', '2023-05-27', '508', 'Benjie Paras', '2023-05-24', '', NULL, '', '2023-05-24', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-31', NULL, NULL, NULL, NULL, NULL, NULL, '1. installed barcode39 font on the three computers. 2. Done', 'None, thank you! :)', 0, NULL, NULL, '4', '5', 4.50, '2023-06-02', 'Odviar, Melody', NULL, NULL, 'thank you for the installation', 'May', '2023', '../upload_files/2305-2408-5435.BARCODE INSTALLATION.jpg.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(286, '2023-05-24', 'rated', 0, 'GP-94-005', 'REYES, RAYMOND', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Requesting to install (6pcs.) led exit signage at gpi 10. Please see attached file for your reference. Thank you.', '', '2023-05-25', '2023-06-16', '267', 'LONTOC, ARLENE', '2023-05-24', NULL, NULL, 'OK', '2023-05-25', NULL, 'CG-2387', 'Alcala, Jansel', NULL, '2023-07-25', 'For request of electrical materials to perform this request', NULL, NULL, 'June 05, 2023', NULL, NULL, 'Installed (6pcs.) led exit signage at gpi 10. ', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Reyes, Raymond', NULL, NULL, 'OK and very good', 'May', '2023', '../upload_files/2305-2409-1606.FOR JO GPI 10.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(287, '2023-05-24', 'rated', 0, 'GP-08-215', 'ASUELO, OSCAR JR.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional flourescent fixtures (1pc) for glr hvd assy.', '', '2023-05-25', '2023-05-27', '822', 'PINPIN, CHERRY', '2023-05-26', '', NULL, 'OK', '2023-05-26', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Connect Additional flourescent fixtures (1pc) for glr hvd assy.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-05-29', 'ASUELO, OSCAR JR.', NULL, NULL, 'OK', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(288, '2023-05-24', 'rated', 0, 'GP-11-283', 'CINCO, MERRY BETH', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Wiring for new aging tank in sdrb 200 series', '', '2023-05-25', '2023-05-27', '311', 'LISBOA, DINA', '2023-05-25', '', NULL, 'OK', '2023-05-25', NULL, 'GP-22-730', 'PARMA, RALPH GABRIEL', NULL, '2023-05-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Provide extension and connect to the power supply of aging tank.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'CINCO, MERRY BETH', NULL, NULL, 'GOOD (Fast response and Action)', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(289, '2023-05-24', 'rated', 0, 'GP-11-283', 'CINCO, MERRY BETH', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Install google translate for japan instruction (direct information from head office), work instruction, engineering change notice and iis that has japanese character.', 'GPI325', '2023-05-25', '2023-05-27', '311', 'LISBOA, DINA', '2023-05-25', '', NULL, 'Make sure fully aware on the use of internet regarding security matter and privacy', '2023-05-26', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-31', NULL, NULL, NULL, NULL, NULL, NULL, '1. Provided access to translate.google.com 2. Done', 'none. :)', 0, NULL, NULL, '5', '5', 5.00, '2023-06-13', '', NULL, NULL, 'Good', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(290, '2023-05-24', 'rated', 0, 'GP-15-426', 'CALDERON, NAOMI', '[email protected]', 'PPIC', NULL, 'mis', 'Non-Technical', 'Request to please check ups. Not working when there's power interruption (ms. Luisa palomeras)', 'C2302-001', '2023-05-25', '2023-05-27', '266', 'Sheryll Ramirez', '2023-05-26', '', NULL, '', '2023-05-26', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-30', 'Check the UPS problem.', 'Check the UPS problem.', NULL, 'May 26, 2023', 'May 27, 2023', NULL, '1. Upon checking UPS, MIS found out that the UPS battery is damaged.\r\n2. MIS changes the new UPS battery.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Calderon, Naomi', NULL, NULL, 'Already replaced battery by MIS. Still for observation. thanks.', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(291, '2023-05-25', 'Done', 0, 'GP-07-196', 'MONTANO, MARICEL', '[email protected]', 'Accounting', NULL, 'mis', 'Email', 'Replacement of email from ms. Nicole cabildo ([email protected]) to ms. Caela ericka manansala ([email protected])', '', '2023-05-27', '2023-05-29', '115', 'BERI, GERINA', '2023-05-29', 'Proceed', NULL, '', '2023-05-29', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-05-29', NULL, NULL, NULL, NULL, NULL, NULL, '1. Changed the e-mail adress from n.cabildo to c.manansala 2. Logged on to the user's PC. 3. Done', 'None :)', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(292, '2023-05-25', 'rated', 0, 'GP-15-449', 'ODVIAR, MELODY', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To fixed broken rj45 to mr. Benjie paras table.', 'WS', '2023-05-26', '2023-05-28', '508', 'Benjie Paras', '2023-05-26', '', NULL, '', '2023-05-26', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-26', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the LAN cable. \r\n2. Re-crimp the RJ45 for Mr. Benjie's laptop.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-26', 'ODVIAR, MELODY', NULL, NULL, 'Ok and thank you for good service', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(293, '2023-05-25', 'Done', 0, 'GP-08-225', 'RIVAMONTE, JONALYN', '[email protected]', 'Production 2', NULL, 'mis', 'Email', 'request new email rbg-production 2 (1) rbg-production 2 (2) used for received of important email and use for lacking parts monitoring.', '', '2023-05-26', '2023-05-28', '423', 'LISBOA, DINA', '2023-05-31', '', NULL, '', '2023-06-07', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-22', 'The computers where the email accounts would be logged in should be provided.', NULL, NULL, 'June 13, 2023', NULL, NULL, '1. Created E-mail address [email protected] and [email protected] 2. Done', '1. PROVIDE A SHORTER AND CLEARER E-MAIL ADDRESS UPON REQUEST.\r\n2. PROVIDE THE LIST WHERE THE EMAIL ADDRESSES SHOULD BE LOGGED IN.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(294, '2023-05-26', 'rated', 0, 'GP-16-473', 'NACOR JR., LORIE', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Pushcart use for endorsement of parts subject for repair (spotweld)', '', '2023-05-27', '2023-05-28', '392', 'Sheryll Ramirez', '2023-05-26', '', NULL, 'OK', '2023-05-27', NULL, 'CG-0676', 'EDVIR LUMAGUI', NULL, '2023-05-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair/weld the Pushcart use for endorsement of parts.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Nacor Jr., Lorie', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(295, '2023-05-26', 'Done', 0, 'GP-18-596', 'MUGAS, JOHN ERIC', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Connection lost', '', '2023-05-27', '2023-05-28', '381', 'Sheryll Ramirez', '2023-05-26', '', NULL, '', '2023-05-26', NULL, 'GP-17-571', 'VIVO, FELMHAR', NULL, '2023-05-31', 'Temporarily change the existing telephone unit to test if the problem will exist on another working telephone unit.', 'After implementing the first action, the problem still occured. To trace and check the telephone line. For schedule.', NULL, 'May 26, 2023', 'May 31, 2023', NULL, 'MIS performed line tracing to verify the main source of telephone line in the area. MIS tap the telephone line to the existing source inside a telephone port in the area. We verified the problem by testing 15 phone calls. No interruption happened.', 'Upon testing 15 phone calls, no interruption occured. If problem happen in the future, submit a checking request again.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(296, '2023-05-27', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #1 at gpi-1 old female cr', '', '2023-05-27', '2023-05-29', '105', 'MONZON, RIO', '2023-05-27', '', NULL, '', '2023-05-27', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken/damage tank lever at cubicle #1 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(297, '2023-05-27', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at gpi-7 male cr', '', '2023-05-27', '2023-05-29', '105', 'MONZON, RIO', '2023-05-27', '', NULL, '', '2023-05-27', NULL, 'CG-2387', 'Jansel Alcala', NULL, '2023-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'done replacement of tank lever at gpi-7 male cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-27', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(298, '2023-05-27', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of flush button at cubicle #1 at gpi-1 old male cr', '', '2023-05-28', '2023-05-30', '105', 'CALALO, GEMMA', '2023-05-27', '', NULL, '', '2023-05-27', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of flush button at cubicle #1 at gpi-1 old male cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(299, '2023-05-27', 'rated', 0, 'GP-22-736', 'SANGALANG, ELAINE', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #2 at gpi-1 old female cr', '', '2023-05-28', '2023-05-30', '105', 'CALALO, GEMMA', '2023-05-27', '', NULL, '', '2023-05-27', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of tank lever at cubicle #2 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-29', 'SANGALANG, ELAINE', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(300, '2023-05-27', 'rated', 0, 'GP-17-523', 'DULCE, RINALYN', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever in old female cr cubicle# 3 at gpi-1', '', '2023-05-28', '2023-05-30', '102', 'CALALO, GEMMA', '2023-05-27', '', NULL, '', '2023-05-27', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-05-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of tank lever in old female cr cubicle# 3 at gpi-1', '', 0, NULL, NULL, '5', '5', 5.00, '2023-05-31', 'DULCE, RINALYN', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(301, '2023-05-27', 'rated', 0, 'GP-07-204', 'SARTE, EMYRIA', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'For checking of LAN CABLE use in Function process from Electrical Adjustment to Final Check (9pcs.)', '', '2023-05-29', '2023-05-31', '314', 'LISBOA, DINA', '2023-05-27', '', NULL, 'please bring this to MIS area', '2023-05-29', NULL, 'CG-1732', 'SANDIGAN, JOHN SPENCER', NULL, '2023-05-29', 'Ongoing crimping all LAN cable', NULL, NULL, 'May 29, 2023', NULL, NULL, '1. Re-crimp 9 LAN cable request.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-01', 'Sarte, Emyria', NULL, NULL, '', 'May', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(302, '2023-06-01', 'rated', 0, 'GP-94-005', 'Reyes, Raymond', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Requesting to install (9pcs.) emergency light at gpi 10. Please see attached file for your reference. Thank you.', '', '2023-06-02', '2023-06-04', '267', 'Lontoc, Arlene', '2023-06-01', NULL, NULL, 'For estimation of electrical materials ', '2023-06-01', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-13', 'For estimate materials to perform this request', NULL, NULL, 'June 05, 2023', NULL, NULL, 'Installation of (9 pcs.) electrical wiring's and emergency light base on the layout plan at GPI-10 building.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Reyes, Raymond', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-0107-2129.FOR JO Emergency Light at GPI 10.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(303, '2023-06-01', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Broken phone (for replacement) local # 266', '', '2023-06-02', '2023-06-04', '266', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-06-08', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS personnel checked the telephone and found out that the handphone is already broken and not working. MIS recommends that the telephone replacement. Provide quotation.', 'Replacement for new Telephone.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-08', 'Calderon, Naomi', NULL, NULL, 'Done. Thank you', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(304, '2023-06-01', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Request for outside access for local number 262 due to transaction. (example: coordinate concern to suntrust)', '', '2023-06-02', '2023-06-04', '262', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-11-306', 'Nemedez, Nathan', NULL, '2023-06-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Change group allow 262 to call outside going to GPI-8', 'Actual test from user successful', 0, NULL, NULL, '5', '5', 5.00, '2023-06-08', 'Calderon, Naomi', NULL, NULL, 'Done request. Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(305, '2023-06-01', 'rated', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', NULL, 'fem', 'Electrical', 'Installation of electrical outlet (220v) for rbg-incoming area near hallway at gpi-1 for 2 tables.', '', '2023-06-02', '2023-06-04', '264', 'Wilma, Logrono', '2023-06-01', '', NULL, 'ok', '2023-06-01', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed 2 outlet (220v) for rbg-incoming area near hallway at gpi-1 for 2 tables.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-05', 'Alcantara, Filipina', NULL, NULL, 'GOOD JOB!', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(306, '2023-06-01', 'rated', 0, 'GP-08-214', 'Armillo, Rey', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Transfer of leaders table from gpi-7 to gpi-1.', '', '2023-06-02', '2023-06-05', '314', 'Lisboa, Dina', '2023-06-01', '', NULL, '', '2023-06-01', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-03', NULL, NULL, NULL, NULL, NULL, NULL, 'allready Transfer of leaders table from gpi-7 to gpi-1.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-07', 'Armillo, Rey', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(307, '2023-06-01', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'For reformat as per advise by sir felmar vivo', 'GPI168', '2023-06-05', '2023-06-07', '524', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-21', 'Backup files of the requested computer', NULL, NULL, 'June 21, 2023', NULL, NULL, 'Performed reformat of harddisk and installation of operating system and applications needed by the user.', 'Deployed the computer in Warehouse GPI-6', 0, NULL, NULL, '1', '3', 2.00, '2023-06-21', 'Nazareno, Bernadette', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(308, '2023-06-01', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Keyboard not functioning', 'GPI43', '2023-06-06', '2023-06-08', '524', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-06', NULL, NULL, NULL, NULL, NULL, NULL, '1. Provided replacement keyboard 2. Provide quotation by Aileen', 'None', 0, NULL, NULL, '5', '5', 5.00, '2023-06-06', 'Nazareno, Bernadette', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(309, '2023-06-01', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Office chair for repair', '', '2023-06-05', '2023-06-07', '524', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'CG-2387', 'Jansel Alcala', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'already repair office chair ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-05', 'Nazareno, Bernadette', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(310, '2023-06-01', 'rated', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Electrical wiring in gpi-10 office', '', '2023-06-03', '2023-06-05', '503', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Installation of wiring for computer power supply.already 5 pcs 2 gang outlet installed.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-07', 'Yacon, Deserie', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-0109-5606.gpi-10 lay out plan.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(311, '2023-06-01', 'cancelled', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Lan connection in gpi-10 office', '', '2023-06-03', '2023-06-05', '503', 'Sheryll Ramirez', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'NO LAY OUT PLAN', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(312, '2023-06-01', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Please we are requesting to cut the metal sheet and fabricate gpi-7 solid waste bin in gpi 8(please see attached plan for your reference). For waste metal sheet this is already coordinated to ms. Eloi and sir. Richard. This is a partial j.o', '', '2023-06-02', '2023-06-23', '120', 'Reyes, Raymond', '2023-06-02', '', NULL, '', '2023-06-08', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'please request J.O. to fabrication for the Activity of cutting process and bending for your improvement in gpi7 solid waste bin. t.y.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-14', '', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-0110-0842.Solid waste Plan in GPI 7 As of May 31,2023.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(313, '2023-06-01', 'rated', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Lan connection in gpi-10 building', '', '2023-06-03', '2023-06-05', '503', 'Sheryll Ramirez', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-08', 'Estimate the materials needed in the activity', NULL, NULL, 'June 08, 2023', NULL, NULL, 'Network backbone as source of connection from GPI-7 was done in the month of May. Performed network cable going to the 3 computers in the office done by MIS member.', 'Done', 0, NULL, NULL, '5', '5', 5.00, '2023-06-08', 'Yacon, Deserie', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-0110-3028.gpi-10 lay out plan.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(314, '2023-06-01', 'rated', 0, 'GP-12-346', 'Deseo, Cherrylyn', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to access productivity folder inside production folder in file server 5.250 (gp-64)', 'GP-64', '2023-06-02', '2023-06-04', '419', 'Lisboa, Dina', '2023-06-01', '', NULL, '', '2023-06-02', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided access on //192.168.5.250/Production/Productivity directory for the user GPI64', 'Provide the directory the user needs to access on the request next time, for easier and faster transaction.', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Deseo, Cherrylyn', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(315, '2023-06-02', 'Done', 0, 'GP-15-422', 'Ardiente, Michael', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Very slow compuer always loading. Supplier email received late (2hrs)\r\ngstar very slow\r\nopening of files always hang', 'C2106-069', '2023-06-03', '2023-06-05', '185', 'Semillano, Lyziel', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-04', 'Transfer to Felmhar - Already discussed', 'Coordinate with the requestor the schedule available for the computer', 'Computer is slow due to old hard-disk, replaced with SSD formerly purchased by Purchasing Dept. Performed backup and install Windows OS. Installed needed applications and copy the backup files.', 'June 19, 2023', 'July 04, 2023', 'July 04, 2023', 'Properly endorsed to the requestor. If problem occurs again, need to replace the computer with high specs to fit the speed requirements of the computer process of the requestor', 'Changed the HDD with SSD (From old Jayson PC) If problem exist in the following months, need to replace other parts or replace the whole unit.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(316, '2023-06-02', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Transfer computer set of ms. Elma culla to glr production area.', 'gpi238', '2023-06-05', '2023-06-07', '314', 'Lisboa, Dina', '2023-06-06', '', NULL, 'Requested schedule is to short please inform target date finish is until June 10, 2023', '2023-06-06', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-13', 'Coordinate with Ms. Leivic Luig for location. To finalize final table location in Production area', 'Performed network cable installation and advice the requestor to coordinate with FEM for electrical supply to be used by the computer.', NULL, 'June 08, 2023', 'June 13, 2023', NULL, 'Transferred the requested computer set from production office to the requested area in SDRB-200 line in GPI-1.', 'Recommend to format the computer for proper assessment.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-20', 'Sarte, Emyria', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(317, '2023-06-02', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Transfer leaders table(ms.jona r.(gpi-7) and (ms.emy s. Gpi-1)', '', '2023-06-05', '2023-06-07', '822', 'Pinpin, Cherry', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Transferred leaders table(ms.jona r.(gpi-7) and (ms.emy s. Gpi-1).', ' ', 0, NULL, NULL, '4', '4', 4.00, '2023-06-06', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(318, '2023-06-02', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Attached ground wire to audit and training.', '', '2023-06-05', '2023-06-07', '822', 'Pinpin, Cherry', '2023-06-05', '', NULL, '', '2023-06-06', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-13', 'Waiting of wire.', NULL, NULL, 'June 07, 2023', NULL, NULL, 'Installed ground wire to audit and training.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-06-14', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(319, '2023-06-02', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Computer encountered hang during preparation of process.', 'GPI-280,GPI-281', '2023-06-05', '2023-06-07', '822', 'Pinpin, Cherry', '2023-06-05', '', NULL, '', '2023-06-06', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-21', '1. Check the problem with the computer.\r\n2. Found out that the computer processor is updated.\r\n3. Recommend reformatting the 2 units of computers.\r\n4. Schedule for reformat on Tuesday and Wednesday.', NULL, NULL, 'June 13, 2023', NULL, NULL, '1. Format GPI-280 and back up files to 253 servers.\r\n2. Transfer files to the GPI-280 computer and install all applications needed and required.\r\n3. Deployed the computer to the user (GPI-280)\r\n4. Done.', 'Recommend purchasing a new SSD for the computer - C2106-146 and C2106-150.', 0, NULL, NULL, '4', '4', 4.00, '2023-06-30', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(320, '2023-06-02', 'rated', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Adjustment of glass in the virdi machine at gpi 7 near the guard house area.', '', '2023-06-05', '2023-06-08', '110', 'Monzon, Rio', '2023-06-02', '', NULL, '', '2023-06-03', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Cut the width of cover into the same size of virdi machine and re assemble and re installed the cover. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-10', 'Mendoza, Charisse', NULL, NULL, 'Able to finish the JO ahead of time :) ', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(321, '2023-06-02', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #2 at gpi-1 old male cr', '', '2023-06-03', '2023-06-05', '105', 'Monzon, Rio', '2023-06-02', '', NULL, '', '2023-06-03', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken tank lever at cubicle #2 at gpi-1 old male cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(322, '2023-06-02', 'rated', 0, 'GP-02-146', 'Servida, Jacqueline', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Always hang my computer 2 to 3 times re-start \r\ndelay received email\r\nslow printing process from email files', 'gpi116', '2023-06-05', '2023-06-07', 'Loc. 185 /', 'Semillano, Lyziel', '2023-06-02', '', NULL, '', '2023-06-02', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem with the computer.\r\n2. MIS found out that the processor is out of date or low processor (Inter Pentium G3260) with 4GB ram that caused hanging and slow process for the printer.\r\n\r\n', 'Recommend purchasing a new system unit with the package of Intel i3 and 8GB ram.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-15', '', NULL, NULL, 'I satisfied the recommendation of MIS to replace my computer to lessen hang & slow process of printing.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(323, '2023-06-02', 'cancelled', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Installation of additional primary and secondary light for production support training area due to existing lighting is inadequate. Please see attached files for more details thank you', '', '2023-06-03', '2023-06-07', '120', 'Reyes, Raymond', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '../upload_files/2306-0212-0705.Production Support additional light installation.pdf', 'Please include illumination level on area.', '', 'Reyes, Raymond', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(324, '2023-06-02', 'cancelled', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'fem', 'Others', 'Kindly replace the computer of ms. Katarina with the old computer of mr. Ryan rolle.', '', '2023-06-05', '2023-06-07', '105', 'Sapalasan, Eloisa', '2023-06-02', 'OK.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Wrong input of receiver, it should be in MIS Section', '', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(325, '2023-06-02', 'cancelled', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'fem', 'Others', 'Kindly replace the computer of ms. Kristel (in front of ms. Analyn cadocoy's pc) with the old computer of ms. Michelle malubay.', '', '2023-06-05', '2023-06-07', '105', 'Sapalasan, Eloisa', '2023-06-02', 'OK.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Wrong input of receiver, it should be in MIS Section', '', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(326, '2023-06-02', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly replace the computer of ms. Katarina with the old computer of mr. Ryan rolle.', '', '2023-06-05', '2023-06-07', '105', 'Sapalasan, Eloisa', '2023-06-02', 'Ok.', NULL, '', '2023-06-06', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-16', 'To schedule Suntrust visit', 'performed backup of the 2 computers', NULL, 'June 08, 2023', 'June 16, 2023', NULL, 'Reformat the requested computer and transfer the backup files. Install the needed applications and endorsed to the user', 'Endorse to the user', 0, NULL, NULL, '5', '5', 5.00, '2023-07-04', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(327, '2023-06-02', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly replace the computer of ms. Kristel (in front of ms. Analyn cadocoy desk) with the old computer of ms. Michelle malubay.', '', '2023-06-05', '2023-06-07', '105', 'Sapalasan, Eloisa', '2023-06-02', 'Ok.', NULL, '', '2023-06-06', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-16', 'To schedule Suntrust visit and coordinate to requestor for activity details', 'performed backup of the 2 computers', NULL, 'June 08, 2023', 'June 16, 2023', NULL, 'Reformat the requested computer and transfer the files needed and install the applications needed by the user. ', 'Endorsed to the new user of the computer', 0, NULL, NULL, '5', '5', 5.00, '2023-06-23', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(328, '2023-06-05', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #5 at gpi-1 old female cr', '', '2023-06-05', '2023-06-07', '105', 'Monzon, Rio', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of broken tank lever at cubicle #5 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(329, '2023-06-05', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #5 at gpi-1 new female cr', '', '2023-06-05', '2023-06-07', '105', 'Monzon, Rio', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Install new tank lever at cubicle #5 at gpi-1 new female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(330, '2023-06-05', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Electrical', 'Request to assistant to assemble of electrical wiring for led light. (11 long & 9 short light) for the preparation of SDRB-260 lay-Out', '', '2023-06-05', '2023-06-07', '211', 'Bautista, Elmer', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Assembled and wiring of 20 Pieces of LED fixtures for thr preparation of SDRB-260 lay out.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-06', 'Manny Herrera', NULL, NULL, 'Good Cooperation and fast respond.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(331, '2023-06-05', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #3 at gpi-1 old female cr', '', '2023-06-06', '2023-06-08', '105', 'Monzon, Rio', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Install new tank lever at cubicle #3 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(332, '2023-06-05', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Installation of additional primary and secondary light in production support training area, upon checking of lux the existing lighting is insufficient. Please see attached files for more details \r\nthank you', '', '2023-06-06', '2023-06-08', '120', 'Reyes, Raymond', '2023-06-05', '', NULL, '', '2023-06-05', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-15', 'Endorse to Production support for the materials needed in this request', 'Waiting of materials from production support.', NULL, 'June 06, 2023', 'June 07, 2023', NULL, 'Installed the primary light and secondary light at audit and training line.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-06-20', 'Joya, Renan', NULL, NULL, 'Thank you', 'Jun', '2023', '../upload_files/2306-0508-2908.Production Support additional light installation request.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(333, '2023-06-05', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Transfer of tv monitor(output monitoring) from rbw-10 to yrcw-53 line.', '', '2023-06-06', '2023-06-08', '822', 'Pinpin, Cherry', '2023-06-05', '', NULL, '', '2023-06-06', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the power supply of T.V monitor from RBW-10 and re-connect the power supply of T.V monitor to YRCW-53 line. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-08', 'Asuelo, Oscar Jr.', NULL, NULL, 'Thank you', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(334, '2023-06-05', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Attach ground wire use for audit and training line.', '', '2023-06-06', '2023-06-08', '822', 'Pinpin, Cherry', '2023-06-05', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Multiple entry', '', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(335, '2023-06-05', 'rated', 0, 'GP-12-335', 'Alisangco, Ronel', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'To check and update the system of iboard on brm-10 line (existing system doesn’t run and don’t have an extra view option)', '', '2023-06-06', '2023-06-08', '515', 'Lemuel Semillano', '2023-06-05', '', NULL, '', '2023-06-06', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-21', 'Already been performed by Felmhar and Spencer - For transfer', 'Already been performed by Felmhar and Spencer - For transfer', NULL, 'June 19, 2023', 'June 19, 2023', NULL, 'Checked the laptop and install the updated iBoard application for Production lines. Properly endorsed to the requestor', 'Properly endorsed to the requestor', 0, NULL, NULL, '5', '5', 5.00, '2023-08-07', 'Alisangco, Ronel', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(336, '2023-06-06', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Transfer files of my computer c2110-188 to new computer set to be deployed in packaging at gpi 1', 'GPI276', '2023-06-08', '2023-06-10', '825', 'Lisboa, Dina', '2023-06-06', '', NULL, '', '2023-06-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-13', 'Ongoing Format of new computer and ongoing backup of existing computer', 'Ongoing Format of new computer and ongoing backup of existing computer', NULL, 'June 09, 2023', 'June 09, 2023', NULL, 'Ecountered problem on the first setup Performed reformat to the new PC. Transferred files from old and performed backup. Deployed new computer set with UPS in GPI-1 Packaging area.', 'Properly Endorse the new PC to the user', 0, NULL, NULL, '4', '4', 4.00, '2023-06-13', 'Rojas, Noemi', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(337, '2023-06-06', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Transfer files of c2110-215 to c2110-188 to be deployed in packaging at gpi5.', 'GPI27', '2023-06-09', '2023-06-11', '505', 'Lisboa, Dina', '2023-06-06', '', NULL, '', '2023-06-07', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-14', '1. Ongoing back up the files of computer.', NULL, NULL, 'June 13, 2023', NULL, NULL, '1. Transfer all files of C2110-215 to the designated computer C2110-188.\r\n2. Deploy the computer to the GPI-5 packaging.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-04', 'Rojas, Noemi', NULL, NULL, 'Good job', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(338, '2023-06-06', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Installation of additional primary and secondary light in audit and training area upon checking of lux the existing lighting is insufficient.', '', '2023-06-07', '2023-06-09', '822', 'Pinpin, Cherry', '2023-06-09', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Multiple entry( Already filed by Sir Renan)', '', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(339, '2023-06-06', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Telephone', 'To check two telephone at pof (loc. 512) area due to no dial tone. And loc. 523 due to encounter noise.', '', '2023-06-07', '2023-06-09', '508', 'Benjie Paras', '2023-06-07', '', NULL, '', '2023-06-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon performing actual checking, the two telephone unit is already malfunctioning due to hardware failure. Need to change the two units for better performance and remove the problem encountered.', 'Replacement of 2 units', 0, NULL, NULL, '5', '5', 5.00, '2023-06-07', 'Odviar, Melody', NULL, NULL, 'ok and thank you for your good service', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(340, '2023-06-06', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Update content creater for gpss(all concern)', '', '2023-06-07', '2023-06-09', '822', 'Pinpin, Cherry', '2023-06-09', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Please include the details of concern employee/line', '', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(341, '2023-06-07', 'head', 0, 'GP-22-716', 'Ace Loyola', '[email protected]', ' PPIC', NULL, 'mis', 'Telephone', 'Telephone replacement', '', '2023-06-07', '2023-06-09', '184', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(342, '2023-06-08', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Transfer email account e.sarte to c2106-128 then glr100 to c2210-045', 'C2106-128, C2210-045', '2023-06-09', '2023-06-15', '314', 'Lisboa, Dina', '2023-06-09', '', NULL, '', '2023-06-13', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Logged in the [email protected] to the PC C2210-045 (Kevin), Transferred the [email protected] to C2106-128 (Felmhar)', 'None, Please give MIS members enough time to access the computer remotely.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-13', 'Sarte, Emyria', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(343, '2023-06-08', 'cancelled', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Computer', 'This is a test jo', 'C2110-211', '2023-06-09', '2023-06-11', '256', 'Calalo, Gemma', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'test', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(344, '2023-06-08', 'cancelled', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check pc of ms. Lea besas due to always encounter loading and long time response.', 'C2106-140', '2023-06-10', '2023-06-12', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'change date', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(345, '2023-06-08', 'cancelled', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Network', 'This is a sample jo. Please ignore.', '', '2023-06-09', '2023-06-11', '256', 'Calalo, Gemma', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Test', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(346, '2023-06-08', 'rated', 0, 'GP-12-352', 'Manalo, Orlando', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Electrical wiring in gpi-10 vmi area', '', '2023-06-09', '2023-06-15', '524', 'Sheryll Ramirez', '2023-06-09', '', NULL, '', '2023-06-10', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring installation of 220volts convenience outlet for the power supply of computer in VMI area at GPI-10.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-14', 'Manalo, Orlando', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(347, '2023-06-08', 'rated', 0, 'GP-12-352', 'Manalo, Orlando', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Lan connection and telephone connection near vmi area', '', '2023-06-09', '2023-06-19', '524', 'Sheryll Ramirez', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-19', 'Scheduled on Thursday (June 15, 2023)', 'Reschedule on Monday (June 19)', NULL, 'June 13, 2023', 'June 16, 2023', NULL, 'Estimate the materials needed. Performed wall drilling to make a hole and performed cable installation from GPI-10 VMI are going GPI-7 PABX. Computer is now connected in the network while telephone Local is now 418', 'Computer is now connected to the network. Local 418 is assigned in VMI telephone of GPI-10. Properly endorsed to the requestor', 0, NULL, NULL, '5', '5', 5.00, '2023-06-19', 'Manalo, Orlando', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(348, '2023-06-08', 'rated', 0, 'GP-12-352', 'Manalo, Orlando', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Check telephone in gpi-06 lost connection', '', '2023-06-09', '2023-06-15', '524', 'Sheryll Ramirez', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem with the telephone.\r\n2. Upon checking MIS found out that the RJ11 of the telephone is NG.\r\n3. Replace and Re-crimp RJ11 to the telephone.\r\n4. DONE.', '', 0, NULL, NULL, '3', '3', 3.00, '2023-06-14', 'Manalo, Orlando', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(349, '2023-06-08', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Installation of additional mid rail for safety purposes to prevent possible incident(fall)\r\nplease see attached file for more details\r\nthank you', '', '2023-06-09', '2023-06-14', '120', 'Reyes, Raymond', '2023-06-09', '', NULL, '', '2023-06-10', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'weld the stainless tube to the mid rail.', '', 0, NULL, NULL, '5', '4', 4.50, '2023-06-20', 'Joya, Renan', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-0811-5858.Fire Exit Stair.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(350, '2023-06-08', 'cancelled', 0, 'GP-07-196', 'Montano, Maricel', '[email protected]', 'Accounting', NULL, 'mis', 'Computer', 'Defective mouse', 'C2112-300', '2023-06-09', '2023-06-11', 'Local 115', 'Beri, Gerina', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Already have', '2024-04-03', 'Beri, Gerina', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(351, '2023-06-08', 'cancelled', 0, 'GP-07-196', 'Montano, Maricel', '[email protected]', 'Accounting', NULL, 'mis', 'Computer', 'Defective mouse', 'C2112-298', '2023-06-09', '2023-06-11', 'Local 115', 'Beri, Gerina', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Already have', '2024-04-03', 'Beri, Gerina', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(352, '2023-06-08', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'fem', 'Facilities', 'Kindly repair the hand dryer at the girl's cr in the office area. It suddenly turn on and off even no one is using it', '', '2023-06-09', '2023-06-11', '105', 'Sapalasan, Eloisa', '2023-06-08', '', NULL, '', '2023-06-09', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-06-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Pull out unit for checking found pcb board already damage ( disposable board ) ,, decided to pull out unit from male c,r at canteen area to replace the unit at the famale c.r. second floor. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-10', 'Rolle, Ryan', NULL, NULL, 'Excellent idea. Thank you!!!', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(353, '2023-06-08', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'We would like to request for the cleaning of both printer here at gpi-8, it has now many dust and fiber inside it resulting to frequent paper jam.', '', '2023-06-09', '2023-06-11', '105', 'Sapalasan, Eloisa', '2023-06-08', '', NULL, '', '2023-06-08', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-15', '1. Schedule for tomorrow.', NULL, NULL, 'June 13, 2023', NULL, NULL, '1. Performed cleaning of the printer in Suntrust, using the brush.\r\n2. Clean the printer roller and the detector to remove the dust.\r\n3. Done cleaning the printer of production and office in suntrust.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-26', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(354, '2023-06-08', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Relayout', 'Sdrb-240.250.260 line increase of production from 5 machines to 20 machines output per day.', '', '2023-06-09', '2023-06-16', '822', 'Pinpin, Cherry', '2023-06-09', '', NULL, '', '2023-06-13', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-13', 'Schedule relayout and lan cabling on Tuesday (June 13)', 'Performed estimation of materials and submit request to Prod Support', NULL, 'June 13, 2023', 'June 13, 2023', NULL, 'Performed network cabling for 2 computers and 1 telephone line (local: 313). Requested assistance from Prod Support personel for ivory pipe installations and table transfer.', 'Done ', 0, NULL, NULL, '4', '4', 4.00, '2023-06-14', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '../upload_files/2306-0815-0731.SDRB-240.250..pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(355, '2023-06-08', 'Done', 0, 'GP-18-596', 'Mugas, John Eric', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Still no connection ( local# 382 outside gpi2 office )', '', '2023-06-10', '2023-06-11', '381', 'Sheryll Ramirez', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-20', NULL, NULL, NULL, NULL, NULL, NULL, '1. MIS checks the telephone connection problem. Found out that the telephone wire is disconnected from the telephone tray or port.\r\n2. MIS personnel perform troubleshooting and test the telephone port, which is #382.\r\n3. Done fixing the problem of the telephone in GPI-2, helped by Sir. Felmhar.\r\n', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(356, '2023-06-09', 'rated', 0, 'GP-13-365', 'Cudiamat, Precious Mae', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Request wi-fi connection and printer connection for laptop c2106-168 at prod. Supplies gpi 7', 'C2106-168', '2023-06-10', '2023-06-13', '112', 'Pinpin, Cherry', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-05', 'Performed by FELHMAR - TRANSFER PLS.', NULL, NULL, 'June 29, 2023', NULL, NULL, 'Already connect the requested laptop to Printer and WiFi in GPI-7 building', 'Performed', 0, NULL, NULL, '5', '5', 5.00, '2023-07-05', 'Cudiamat, Precious Mae', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(357, '2023-06-09', 'rated', 0, 'GP-13-365', 'Cudiamat, Precious Mae', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Transfer data from old laptop to new computer in prod. Supplies area', 'C2106-168', '2023-06-10', '2023-06-15', '112', 'Pinpin, Cherry', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-14', 'Transfer to Spencer (Performed last Saturday, June 10, 2023)', NULL, NULL, 'June 13, 2023', NULL, NULL, '1. Back up all data from the old laptop and transfer it to the newly purchased computer.\r\n2. Install the needed application and request access to the following folder needed.\r\n3. Deploy the new computer to the designated location request.\r\n4. DONE.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-14', 'Cudiamat, Precious Mae', NULL, NULL, 'OK ', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(358, '2023-06-09', 'rated', 0, 'GP-13-365', 'Cudiamat, Precious Mae', '[email protected]', 'Production Support', NULL, 'mis', 'Network', 'Request computer c2305-012 access to network 192.168.5.250 prod. Support \r\nat prod. Supplies area gpi 1', '', '2023-06-13', '2023-06-15', '112', 'Pinpin, Cherry', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Added the domain user C2305-012 to the read-only on Production to have an access to the Prod support and supplies directory.', 'None. Thank you! :)', 0, NULL, NULL, '5', '5', 5.00, '2023-06-13', 'Cudiamat, Precious Mae', NULL, NULL, 'ok job well done', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(359, '2023-06-09', 'rated', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', NULL, 'mis', 'Others', 'Request new design/layout for business conference tarpuline', '', '2023-06-13', '2023-06-30', '152', 'Semillano, Lyziel', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-13', 'Create a new design for the said event. (For Approval of requestor)', NULL, NULL, 'June 13, 2023', NULL, NULL, 'modify the design', '', 0, NULL, NULL, '5', '4', 4.50, '2023-06-14', 'Desacula, Genny', NULL, NULL, 'The request done before the due date. Job well done.', 'Jun', '2023', '../upload_files/2306-0908-4231.IMG_8981.JPG.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(360, '2023-06-09', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Download asp.net core 6.0.3 japan request for uncypher tool\r\ngpi236 (mr. Felmhar)', '', '2023-06-10', '2023-06-15', '833', 'Lisboa, Dina', '2023-06-09', '', NULL, '', '2023-06-13', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-13', 'Request download link from the requestor', NULL, NULL, 'June 13, 2023', NULL, NULL, 'Follow Instructions base from email (from Japan). Download and install from the website link the needed application for the technician laptop', 'Downloaded and installed application to the laptop. ', 0, NULL, NULL, '5', '5', 5.00, '2023-06-13', 'Dela Torre, Hazel Ann', NULL, NULL, 'fast and approachable', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(361, '2023-06-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of door knob at gpi-7 male cr', '', '2023-06-10', '2023-06-12', '105', 'Monzon, Rio', '2023-06-10', '', NULL, '', '2023-06-10', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', 'Waiting for materials.', NULL, NULL, 'June 13, 2023', NULL, NULL, 'Repair and replaced new door knob and fix to the door.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(362, '2023-06-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at gpi-7 male cr', '', '2023-06-10', '2023-06-12', '105', 'Monzon, Rio', '2023-06-10', '', NULL, '', '2023-06-10', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', 'Waiting for materials.', NULL, NULL, 'June 13, 2023', NULL, NULL, 'Repair and replaced new tank lever and fix.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(363, '2023-06-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of stair 1 nosing at gpi-1', '', '2023-06-10', '2023-06-12', '105', 'Monzon, Rio', '2023-06-10', '', NULL, '', '2023-06-10', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-30', 'Waiting for materials.', NULL, NULL, 'June 13, 2023', NULL, NULL, 'Replacement of stair 1 nosing at gpi-1', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-03', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(364, '2023-06-09', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Pdf viewer update, winzip, winrar, SCAN/printer connection, japan simulator run application for pc c2106-090, c2106-133, c2106-135', '', '2023-06-10', '2023-06-13', '833', 'Lisboa, Dina', '2023-06-09', '', NULL, '', '2023-06-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-19', 'c2106-135 - Kelvin Novero\r\nAdobe Reader, Winzip, Winrar, Scan/Print - ok\r\nJapan Simulator - Installed Visual C++', 'c2106-133 - Nicky Lipata\r\nAdobe Reader, Winzip, Winrar, Scan/Print - ok\r\nJapan Simulator - Installed Visual C++\r\n', 'c2106-090 - Edwin Tolentino\r\nAdobe Reader, Winzip, Winrar, Scan/Print - ok\r\nJapan Simulator - Already Installed Visual C++\r\n', 'June 19, 2023', 'June 19, 2023', 'June 19, 2023', 'Replaced the user accounts on the printer with proper designation, and installed every required applications. Done', 'None. Thank you', 0, NULL, NULL, '5', '5', 5.00, '2023-06-24', 'Dela Torre, Hazel Ann', NULL, NULL, 'Thank you sir', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(365, '2023-06-09', 'rated', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'Input data of yrcw-52-ta in iboard of rbw-10 and install.', '', '2023-06-13', '2023-06-15', '517', 'Lemuel Semillano', '2023-06-09', '', NULL, '', '2023-06-13', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-21', 'Check the laptop and request HDMI cable', NULL, NULL, 'June 16, 2023', NULL, NULL, 'Add YRCW-52 line to the main iBoard server and setup the requested laptop to connect and input in YRCW-52 line.', 'Endorsed to the requestor', 0, NULL, NULL, '4', '4', 4.00, '2023-07-13', 'Baldesimo, Deserie', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(366, '2023-06-09', 'rated', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'mis', 'Email', 'Email address: [email protected] will be assigned to ms. Marah cabingan (new member)', '', '2023-06-10', '2023-06-14', '263', 'Sheryll Ramirez', '2023-06-10', '', NULL, '', '2023-06-13', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, '1. Changed the password of the account [email protected] 2. Logged in for the new member. 3. Done', 'None. Thank you', 0, NULL, NULL, '4', '4', 4.00, '2024-04-25', 'Pacuan, Mary Jane', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(367, '2023-06-10', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Mouse not function(c2106-172).', '', '2023-06-12', '2023-06-14', '822', 'Pinpin, Cherry', '2023-06-10', '', NULL, '', '2023-06-13', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem with the mouse.\r\n2. MIS troubleshooting and conducting tests on the mouse.\r\n3. Try to plug in and plug out the different USB ports.\r\n4. the mouse is not functioning properly while clicking the left and right buttons.', 'Recommend purchasing a new mouse.', 0, NULL, NULL, '4', '4', 4.00, '2023-06-14', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(368, '2023-06-10', 'cancelled', 0, 'GP-12-330', 'Delgado, Ruben Jr.', '[email protected]', 'Production 2', NULL, 'mis', 'Telephone', 'Parts preparation phone (316) give access to call in suntrust', '', '2023-06-13', '2023-06-15', '316', 'Lisboa, Dina', '2023-06-13', '', NULL, '', '2023-06-13', NULL, 'GP-11-306', 'Nemedez, Nathan', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Not possible due to it will be open also to access outside call.', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(369, '2023-06-13', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #3 & #5 at gpi-1 female cr', '', '2023-06-13', '2023-06-15', '105', 'Monzon, Rio', '2023-06-13', '', NULL, 'OK', '2023-06-13', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', 'Waiting for materials.', NULL, NULL, 'June 13, 2023', NULL, NULL, 'Repair and replaced new tank lever and fix.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(370, '2023-06-13', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Please check computer due to slow processing when using', 'C2210-045', '2023-06-14', '2023-06-16', '314', 'Lisboa, Dina', '2023-06-13', '', NULL, '', '2023-06-13', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-26', '1. Ongoing back up files to .253 server.', 'Ongoing installation of application, links and printer.', NULL, 'June 21, 2023', 'June 22, 2023', NULL, '1. Additionally, Install a CPU fan to avoid overheating of CP, which cause of lagging of the computer\r\n2. Already done formatting, backing up files, and transferring documents to the computer.\r\n3. Deployed the computer to the user.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-26', 'Sarte, Emyria', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(371, '2023-06-13', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Provide outlet for computer in sdrb line', '', '2023-06-14', '2023-06-16', '311', 'Lisboa, Dina', '2023-06-13', '', NULL, '', '2023-06-13', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed 220V outlet for computer in sdrb line.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-13', 'Cinco, Merry Beth', NULL, NULL, 'Fast response on my request Good job', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(372, '2023-06-13', 'Done', 0, 'GP-12-323', 'Moises, Joanna Marie', '[email protected]', 'Quality Control', NULL, 'mis', 'Others', 'To check monitor due to not turning on', '', '2023-06-16', '2023-07-07', '516', 'Wilma, Logrono', '2023-09-23', '', NULL, '', '2023-09-18', '2023-09-23', 'GP-22-722', 'Orozo, Cedrick James', NULL, '2023-09-23', 'Upon troubleshooting, the problem cause is a damaged power adaptor of the monitor. To request quotation from the supplier', NULL, NULL, 'August 03, 2023', NULL, NULL, 'Sample action', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '../upload_files/2305-0215-3545.IMG_0990.JPG.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(373, '2023-06-14', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional 220v outlet for leaders table(yrcw-52).', '', '2023-06-15', '2023-06-17', '822', 'Pinpin, Cherry', '2023-06-14', '', NULL, '', '2023-06-14', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Install additional 220volts convenience outlet for the computer of leaders table at YRCW-52.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-19', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(374, '2023-06-14', 'cancelled', 0, 'GP-16-467', 'Ma. Jesusa Garcia', '[email protected]', ' Parts Production', NULL, 'mis', 'Others', 'Cannot access on drss, \r\nplease fix my drss on my computer (cannot open)', '', '2023-06-15', '2023-06-17', '110', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'already done', '2023-07-04', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(375, '2023-06-15', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of exhaust fan at gpi-5 old male cr', '', '2023-06-16', '2023-06-18', '105', 'Monzon, Rio', '2023-06-15', '', NULL, '', '2023-06-19', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-20', NULL, NULL, NULL, NULL, NULL, NULL, 'The exhaust fan unit in old male C.R is not damage upon checking, we clean the unit and put lubricant oil in the motor of exhaust fan unit.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-20', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(376, '2023-06-15', 'rated', 0, 'GP-12-335', 'Alisangco, Ronel', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'Ups on pc number c2106-108 is not functioning (low batt)', '', '2023-06-16', '2023-06-18', '515', 'Lemuel Semillano', '2023-06-15', '', NULL, '', '2023-06-15', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Change battery in UPS', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-15', 'Alisangco, Ronel', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(377, '2023-06-15', 'cancelled', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', ' Administration', NULL, 'mis', 'Others', 'Date of viewing: june 19-21, 2023\r\nto download yt links:\r\nhttps://www.youtube.com/watch?v=sunmldeq4tk\r\nhttps://www.youtube.com/watch?v=jzcqtsdjryc', '', '2023-06-19', '2023-06-21', '191', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Due of this Health View was last June', '2023-08-07', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(378, '2023-06-15', 'cancelled', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', ' Administration', NULL, 'mis', 'Others', 'Date of viewing: june 19-21, 2023\r\nto download yt links:\r\nhttps://www.youtube.com/watch?v=sunmldeq4tk\r\nhttps://www.youtube.com/watch?v=jzcqtsdjryc', '', '2023-06-19', '2023-06-21', '191', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Due of this Health View was last June', '2023-08-07', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(379, '2023-06-15', 'cancelled', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', ' Administration', NULL, 'mis', 'Others', 'Date of viewing: june 19-21, 2023\r\nto download yt links:\r\nhttps://www.youtube.com/watch?v=sunmldeq4tk\r\nhttps://www.youtube.com/watch?v=jzcqtsdjryc', '', '2023-06-19', '2023-06-21', '191', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Due of this Health View was last June ', '2023-08-07', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(380, '2023-06-15', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Electrical', 'Unplug of main power sure and cut the electrical wiring, due to change position of all tables for the common line. And after moving we request the assist the arrangement of electrical wiring per line/table.', '', '2023-06-16', '2023-06-21', '211', 'Bautista, Elmer', '2023-06-15', '', NULL, 'OK', '2023-06-15', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Already unplug the main power supply and already arrange the table and electrical wiring per table.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-22', 'Manny Herrera', NULL, NULL, 'Thanks for the Good Cooperation and Support.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(381, '2023-06-15', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Computer', 'Automatic power off 3 time in 1 day.', 'N/A', '2023-06-16', '2023-06-20', '211', 'Bautista, Elmer', '2023-06-15', '', NULL, '', '2023-06-15', NULL, 'GP-11-306', 'Nemedez, Nathan', NULL, '2023-06-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Cleaning of processor and replace thermal paste.\r\nStill malfunctioning , test the power supply and identify problem is powersupply.\r\nTemporary replace powersupply from old parts and it works.\r\n', 'Please purchase porwersupply.', 0, NULL, NULL, '4', '4', 4.00, '2023-06-16', 'Manny Herrera', NULL, NULL, 'Work is good and satisfied for the immediate action.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(382, '2023-06-15', 'rated', 0, 'GP-13-365', 'Cudiamat, Precious Mae', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Request additional light at prod. Supplies gpi 1 area', '', '2023-06-16', '2023-06-18', '112', 'Pinpin, Cherry', '2023-06-16', '', NULL, 'need to purchase additional fixtures ', '2023-06-19', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-26', 'waiting of material from production support.', NULL, NULL, 'June 20, 2023', NULL, NULL, 'Installation of light fixture of additional and connect to the power supply.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-26', 'Cudiamat, Precious Mae', NULL, NULL, 'good job', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(383, '2023-06-15', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of door lock at cubicle #2 at gpi-5 old female cr', '', '2023-06-16', '2023-06-18', '105', 'Monzon, Rio', '2023-06-15', '', NULL, '', '2023-06-19', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced the damage cubicle door lock by new door lock at cubicle #02 in old female C.R at GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-19', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(384, '2023-06-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of concrete plant box at gpi-1', '', '2023-06-17', '2023-06-19', '105', 'Monzon, Rio', '2023-06-19', '', NULL, '', '2023-06-19', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Put the cement to the damage plant box and repair.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-03', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(385, '2023-06-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check water hose leak at cubicle #11 at gpi-5 old female cr', '', '2023-06-17', '2023-06-19', '105', 'Monzon, Rio', '2023-06-19', '', NULL, '', '2023-06-19', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Turn OFF the water gate valve of cubicle #11 and replaced the damage supply hose by new then turn ON the water gate valve.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-21', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(386, '2023-06-16', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Installation of pof system and gdms for john eric mugas assigned pc', '', '2023-06-17', '2023-06-19', '381', 'Sheryll Ramirez', '2023-06-16', '', NULL, '', '2023-06-19', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Add bookmarks for G-DMS and E-POF.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-29', 'Nacor Jr., Lorie', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(387, '2023-06-16', 'rated', 0, 'GP-08-224', 'Quilantang, Joy', '[email protected]', 'Production 1', NULL, 'mis', 'Network', 'I would like to request saitama leader desktop to access google translate due to many data or email from head office are japanese language.', '', '2023-06-19', '2023-06-21', '538', 'Lemuel Semillano', '2023-06-16', '', NULL, '', '2023-06-19', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Provided access for Rey Vidal - Saitama Leader on translate.google.com 2. Done', 'Next time kindly provide the computer name and/or the user for easier identification. Thank you', 0, NULL, NULL, '5', '5', 5.00, '2023-06-19', 'Quilantang, Joy', NULL, NULL, 'Thank you...', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(388, '2023-06-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #3 at gpi-1 old female cr', '', '2023-06-17', '2023-06-19', '105', 'Monzon, Rio', '2023-06-19', '', NULL, '', '2023-06-19', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair and replaced new tank lever and fix.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(389, '2023-06-16', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Network', 'Request to fixed rj45 in parts inspection training room, also to check the connection if stable due to have visitor on monday june 19, 2023', '', '2023-06-17', '2023-06-19', '508', 'Benjie Paras', '2023-06-16', '', NULL, '', '2023-06-19', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-20', NULL, NULL, NULL, NULL, NULL, NULL, '1. Re-crimp the Rj45 in GPI-5 training room.\r\n2. Done.', '', 0, NULL, NULL, '4', '5', 4.50, '2023-06-21', 'Odviar, Melody', NULL, NULL, 'ok and thank you for fast fixed of rj45.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(390, '2023-06-16', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Quotation', 'Request quotation for desktop computer set and ups back-up with 3 socket and 18.5 inch lcd monitor', '', '2023-06-17', '2023-06-19', '508', 'Benjie Paras', '2023-06-16', '', NULL, '', '2023-06-19', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Request quotation sent via email. Since the request is for price checking. ', 'For processing the quotation, MIS will provide the hard copy together with the signature of Sir Nathan for approval of the request. ', 0, NULL, NULL, '5', '5', 5.00, '2023-06-21', 'Odviar, Melody', NULL, NULL, 'thank you for providing quotation needed', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(391, '2023-06-16', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check, the computer of ms. Lea besas due to encounter slow response. Of computer', 'C2106-140', '2023-06-17', '2023-06-19', '508', 'Benjie Paras', '2023-06-16', '', NULL, '', '2023-06-19', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-26', 'Already checked the computer last month. Low specs is causing the computer to slow.', 'Base on the records, the Computer is already formatted in September 2022.', NULL, 'June 26, 2023', 'June 26, 2023', NULL, 'Recommend to change motherboard, processor (atleast core i3) and storage (SSD) to enhance the computer process speed for the user's convinience.', 'Request needed quotation from MIS. Need to change parts of computer to remove slow function problem', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Odviar, Melody', NULL, NULL, 'Ok and thank you for immediate response', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(392, '2023-06-16', 'cancelled', 0, 'GP-12-344', 'Ramos, Chareyna', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request for checking of computer (gpi284) due to loading', 'gpi284', '2023-06-22', '2023-06-23', '311', 'Lisboa, Dina', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'approver is on leave', '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(393, '2023-06-19', 'rated', 0, 'GP-20-688', 'Prudente, Alyssa Jenine', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Microphone for awareness on june 29, july 6,13, 27', '', '2023-06-29', '2023-07-27', '191', 'Monzon, Rio', '2023-06-19', '', NULL, '', '2023-06-19', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-27', 'Set up mic and projector in conference 4 (June 29, 2023)', 'set up mic projector last july 6 and july 13', NULL, 'June 29, 2023', 'July 13, 2023', NULL, 'Set up projector and microphone', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-25', 'Prudente, Alyssa Jenine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(394, '2023-06-19', 'rated', 0, 'GP-12-343', 'Cornejo, Wenna Rose', '[email protected]', 'Production 1', NULL, 'mis', 'Computer', 'Kindly check UPS due to not functioning.', 'C2106-045', '2023-06-20', '2023-06-24', '515', 'Lemuel Semillano', '2023-06-23', '', NULL, '', '2023-06-23', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-05', 'Requested battery - Ongoing', 'Transfer to Felmhar', 'Performed initial checking to the UPS backup', 'June 29, 2023', 'July 03, 2023', 'July 05, 2023', 'Changed existing battery with new 12v battery and endorsed to the requestor.', 'Changed UPS battery', 0, NULL, NULL, '4', '4', 4.00, '2023-07-05', '', NULL, NULL, 'Immediately checked after approved by dept. head. Delayed but uncontrollable due to purchasing of battery. ', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(395, '2023-06-19', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional flourescent fixtures at production supplies at gpi-1 area.', '', '2023-06-20', '2023-06-22', '822', 'Pinpin, Cherry', '2023-06-19', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Multiple entry( already filed by Ms.Precious)', '', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(396, '2023-06-19', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Installation of gpss application on tablet 1pc.', '', '2023-06-20', '2023-06-22', '822', 'Pinpin, Cherry', '2023-06-19', '', NULL, '', '2023-06-19', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Already connected the tablet to GPI-WLAN WiFi and bookmarked the GPSS for Workers. Dope', '', 0, NULL, NULL, '4', '4', 4.00, '2023-06-21', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(397, '2023-06-19', 'cancelled', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Quotation', 'Request quotation for usb extension 20cm long ( 5 port ) use for laptop for the reporting of tv conferences. and Mouse for computer.', '', '2023-06-20', '2023-06-22', '211', 'Bautista, Elmer', '2023-06-20', '', NULL, '', '2023-06-20', NULL, 'CG-1374', 'Aileen D. Domo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'The supplier cannot provide the quotation. ', '2023-07-04', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(398, '2023-06-19', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Electrical', 'Continuation of electrical wiring for sdrb-240/260 line', '', '2023-06-20', '2023-06-22', '211', 'Bautista, Elmer', '2023-06-20', '', NULL, '', '2023-06-20', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring the additional table and connect to the power supply.already done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-22', 'Manny Herrera', NULL, NULL, 'Good and early Finish.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(399, '2023-06-20', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Email', 'Request for re-activation of email for our new maxim member ([email protected]) and please change it to [email protected].', '', '2023-06-21', '2023-06-23', '266', 'Sheryll Ramirez', '2023-06-21', '', NULL, '', '2023-06-21', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-05', NULL, NULL, NULL, NULL, NULL, NULL, '1. Create an email of [email protected].\r\n2. Deploy email "[email protected]" to new maxim members of PM.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-05', 'Calderon, Naomi', NULL, NULL, 'Done. Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(400, '2023-06-20', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Please check office chair for our new maxim member due to cannot adjust.', '', '2023-06-21', '2023-06-23', '266', 'Sheryll Ramirez', '2023-06-21', '', NULL, '', '2023-06-22', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking the chair we found out that the chair is already damage.', 'For Replacement.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-03', 'Calderon, Naomi', NULL, NULL, 'noted. Thank you', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(401, '2023-06-20', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Relay out in gpi 5', '', '2023-06-21', '2023-06-23', '822', 'Pinpin, Cherry', '2023-06-20', '', NULL, '', '2023-06-20', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Re-layout the SDRB-100, YRCW-52&53 and RBW-200 line at GPI-5 building by FEM Team. ', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-06', 'Asuelo, Oscar Jr.', NULL, NULL, 'Good', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(402, '2023-06-20', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Relayout', 'Relay out in gpi 5', '', '2023-06-21', '2023-06-25', '822', 'Pinpin, Cherry', '2023-06-20', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', 'Please attached the relayout plan for details', '', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(403, '2023-06-20', 'rated', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Request to transfer white board to the other side of qa office', '', '2023-06-21', '2023-06-23', '120', 'Reyes, Raymond', '2023-06-20', '', NULL, 'ok', '2023-06-21', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Transfer the white board to the center of wall and fix again to the wall.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-23', 'Alvarez, Krizel Micah Anne', NULL, NULL, 'good', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(404, '2023-06-21', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check computer on drss line 4 pc no17, due to when trying to open, no response.', 'C2106-024', '2023-06-22', '2023-06-24', '508', 'Benjie Paras', '2023-06-21', '', NULL, '', '2023-06-21', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-22', NULL, NULL, NULL, NULL, NULL, NULL, '1. Upon checking of computer, found out that the power cord of the computer is loose. and as per the user, they tighten the power cord and suddenly the computer is turning on.\r\n2. The computer is functioning and working.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Odviar, Melody', NULL, NULL, 'ok and thank you', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(405, '2023-06-21', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'For reformat', 'C2110-205', '2023-06-22', '2023-06-27', '524', 'Sheryll Ramirez', '2023-06-22', '', NULL, '', '2023-06-23', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-30', '1. Ongoing back all files (C2110-205) to 253 folders.', '1. Ongoing back all files (C2110-205) to 253 folders.', '1. Ongoing back all files (C2110-205) to 253 folders.', 'June 26, 2023', 'June 26, 2023', 'June 26, 2023', '1. Upon checking the computer, MIS found out that the computer processor is outdated (Intel Pentium 3260 and purchased on Feb. 20, 2014), which caused hanging and lagging of the computer and open applications such as MS Excel, Outlook, and GstarM.\r\n2. Initial advice to reformat the computer. \r\n3. Back up all computer files to server 253, Format the computer and Install OS win10 and the needed applications.\r\n4. Deployed the computer to the requestor.', 'Recommend purchasing a new set up of computer with the processor of Intel i3 and 8GB ram.', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Nazareno, Bernadette', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(406, '2023-06-21', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #1 at gpi-1 new female cr', '', '2023-06-22', '2023-06-24', '105', 'Monzon, Rio', '2023-06-21', '', NULL, '', '2023-06-22', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair and replaced new tank lever and fix.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(407, '2023-06-21', 'rated', 0, 'GP-12-344', 'Ramos, Chareyna', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to check computer (gpi284) due to loading', 'gpi284', '2023-06-22', '2023-06-24', '311', 'Naungayan, Wennie', '2023-06-21', '', NULL, '', '2023-06-21', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-30', 'Check the status of the computer and schedule the computer assessment', 'Upon checking, the computer is very slow due to possible hard disk wear off. Performed backup of files and reformat of HDD and re-install Windows OS and needed applications.', NULL, 'June 30, 2023', 'June 30, 2023', NULL, 'The computer is now working properly but slowing during opening of files. Endorsed to the user and advice to monitor the computer speed. If same problem occured, we need to replace the HDD with SSD storage.', 'If the computer becomes more slower, recommend to replace some parts to enhanced computer speed', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Ramos, Chareyna', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(408, '2023-06-21', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of door hinge at cubicle #1 at gpi-7 female cr', '', '2023-06-22', '2023-06-24', '105', 'Monzon, Rio', '2023-06-22', '', NULL, '', '2023-06-22', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair of door hinge at cubicle #1 at gpi-7 female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(409, '2023-06-22', 'cancelled', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'In regards with jo no. 2306-312, i already coordinated to ppd to cut the metal sheet, due to lack of manpower they recommended to make jo in gpi 8- fem and they will authorized and teach the gpi 8 fem personnel to used the machine. Please s', '', '2023-06-23', '2023-07-07', '120', 'Reyes, Raymond', '2023-06-22', '', NULL, '', '2023-06-22', NULL, 'GP-11-301', 'Magat, Roel', NULL, NULL, 'started cutting of metal plate 6-28 @ 1600-1800H and assemble 1 unit for approval to end user 6-29 @ 0700- 0930H. ', NULL, NULL, 'June 30, 2023', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '../upload_files/2306-2207-4132.Job Order (Sir Jayson).pdf', 'requested material to be use not applicable to the project ', '2023-07-06', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(410, '2023-06-22', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of door hinge at cubicle #3 at gpi-7 female cr', '', '2023-06-23', '2023-06-25', '105', 'Monzon, Rio', '2023-06-22', '', NULL, '', '2023-06-22', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair of door hinge at cubicle #3 at gpi-7 female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(411, '2023-06-22', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #5 at gpi-1 old female cr', '', '2023-06-23', '2023-06-25', '105', 'Monzon, Rio', '2023-06-22', '', NULL, '', '2023-06-22', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair and replaced new tank lever and fix.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(412, '2023-06-23', 'Done', 0, 'GP-02-142', 'Pelina, Dana', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'To check the connection of the existing lan cable. (due to transfer of leader's table from brm-10 area to ud-700 area) temporary area.', '', '2023-06-24', '2023-06-26', '515', 'Lemuel Semillano', '2023-06-23', '', NULL, '', '2023-06-23', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-23', 'Check the status of the existing cable', NULL, NULL, 'June 23, 2023', NULL, NULL, 'Performed changing of RJ45 due to damaged appearance. The computer is now connected to the network. Endorsed to the requestor.', 'The computer is now connected to the network.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(413, '2023-06-23', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Telephone', 'Kindly check and replace if necessary the handset wiring of ms. Katarina's telephone because most of the time there is no dial tone.', '', '2023-06-24', '2023-06-26', '110', 'Sapalasan, Eloisa', '2023-06-23', 'Please assist... Thank you.', NULL, '', '2023-06-23', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-24', NULL, NULL, NULL, NULL, NULL, NULL, '1. Already check the problem with the telephone.\r\n2. Replace a new telephone wire.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-24', 'Rolle, Ryan', NULL, NULL, 'Thank you for immediate action.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(414, '2023-06-23', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'Kindly check and fic the "cannot run the macro" issue on my excel, because i cannot use the ECN Form with formula when I am making ecn.', 'C2305-013', '2023-06-24', '2023-06-26', '105', 'Sapalasan, Eloisa', '2023-06-24', '', NULL, 'Please careful to use the macro function.', '2023-06-29', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-05', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem of excel for the issue of macro while running ECN .\r\n2. Troubleshoot the problem of excel, check the setting of excel and allow using macro.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-06', 'Rolle, Ryan', NULL, NULL, 'Thank you Mr. Spencer.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(415, '2023-06-23', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Retrieval of excel document due to cannot open (corrupted).', '', '2023-06-24', '2023-06-27', '833', 'Naungayan, Wennie', '2023-06-23', '', NULL, '', '2023-06-24', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Restored on 192.168.5.243', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-13', 'Dela Torre, Hazel Ann', NULL, NULL, '', 'Jun', '2023', '../upload_files/2306-2317-4901.corrupted excel file.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(416, '2023-06-24', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Others', 'Request of scanning account to the printer of fuji xerox apeostport 5570 for the computer tag #c2106-144', '', '2023-06-26', '2023-06-29', '211', 'Bautista, Elmer', '2023-06-24', '', NULL, '', '2023-06-26', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 're-domain and add address book in the said printer', '', 0, NULL, NULL, '3', '3', 3.00, '2023-06-27', 'Manny Herrera', NULL, NULL, 'ok naman ang serbisyo ni person incharge, kaya lang may mali hindi nasunod ang request ko sa paglagay ng scan account and scan folder sa computer name GPI19 (C2110-217) napalagay na dapat ay sa comput', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(417, '2023-06-24', 'Done', 0, 'GP-16-472', 'Monterde, Susan', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Ups back up not function', '', '2023-06-26', '2023-06-29', '524', 'Sheryll Ramirez', '2023-06-27', '', NULL, '', '2023-06-27', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the UPS problem.\r\n2. MIS performed troubleshooting, Found out that the UPS battery is drained.\r\n3. MIS replaced the UPS battery.\r\n4. Done.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(418, '2023-06-24', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Install driver hp laserjet p1102 to c2110-204', '', '2023-06-26', '2023-06-30', '524', 'Sheryll Ramirez', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Already installed HP Printer to the requested computer', 'Computer can now print to the said printer', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Nazareno, Bernadette', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(419, '2023-06-26', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To check ups of ms. Ivy del mundo, due to encounter noise,', '', '2023-06-27', '2023-06-29', '508', 'Benjie Paras', '2023-06-26', '', NULL, '', '2023-06-29', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Change the battery', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Odviar, Melody', NULL, NULL, 'thank you for immediate response', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(420, '2023-06-26', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Network', 'I would like to request to check my internet connection specifically google translate because it suddenly not working. I need it when making japan ecn to translate some japanese character that i do not understand.', '', '2023-06-26', '2023-06-30', '105', 'Sapalasan, Eloisa', '2023-06-26', '', NULL, '', '2023-06-29', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided access to translate.google.com. Done', 'None', 0, NULL, NULL, '5', '5', 5.00, '2023-07-04', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(421, '2023-06-26', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Gp1-10 metal ramp', '', '2023-06-29', '2023-06-30', '413', 'Sheryll Ramirez', '2023-06-27', '', NULL, 'FOR CONTRACTORS ACTIVITY', '2023-06-29', NULL, 'GP-12-356', 'Ramirez, Francisco', NULL, '2023-07-22', 'Request quotation from 2 different contractors\r\nMake Price comparison\r\nProcess PRS and Purchase Order.', NULL, NULL, 'July 14, 2023', NULL, NULL, 'Delivered the metal ramp ( 7-11-2023)\r\nInstalled the metal ramp (7-12-2023)\r\nWelded and paint the metal ramp ( 7-20-2023)', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-04', 'Florindo, Eric', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(422, '2023-06-26', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'For repair office chair at gpi-10', '', '2023-06-29', '2023-06-30', '413', 'Sheryll Ramirez', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-29', NULL, NULL, NULL, NULL, NULL, NULL, 'for replacement of wheel of chair at gpi 10', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-03', 'Florindo, Eric', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(423, '2023-06-26', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check ups in drss line 5 pc no.21 due to encounter noise', 'C2106-047', '2023-06-27', '2023-06-29', '508', 'Benjie Paras', '2023-06-26', '', NULL, '', '2023-06-29', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Change the battery', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Odviar, Melody', NULL, NULL, 'thank you for immediate response.', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(424, '2023-06-26', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Printer', 'Request to check rivoria printer due to n.g printing', '', '2023-06-27', '2023-07-07', '822', 'Pinpin, Cherry', '2023-06-26', '', NULL, 'Only assist to contact supplier', '2023-06-30', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS Personnel reported to the technical service about the N.G printing \r\nAfter some troubleshooting, Fujifilm provides the onsite visit on June 30, 2023.\r\nThe technician checks and repair the software issue and found out that the driver of the printer needed to be re-install and download a new driver. MIS Personnel download and install new driver. Done. c/o Sir Felmhar Vivo', '', 0, NULL, NULL, '3', '3', 3.00, '2023-07-06', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(425, '2023-06-27', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Additional passage at gpi-8 back area (please coordinate w/ sir jc)', '', '2023-06-28', '2023-07-04', '102', 'Monzon, Rio', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-06-30', 'pull out middle portion of perimeter fence for the additional access to vacant lot, ( 6-29 @ 1400-1800h) ', NULL, NULL, 'June 30, 2023', NULL, NULL, 'repair metal post for the temporary access gate ', 'done ', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Dulce, Rinalyn', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(426, '2023-06-27', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of door knob at 2nd floor of gpi-10 male cr', '', '2023-06-28', '2023-06-30', '105', 'Monzon, Rio', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-06-29', NULL, NULL, NULL, NULL, NULL, NULL, 'replacement of door knob at 2nd floor of gpi-10 male cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-29', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(427, '2023-06-27', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of tank lever at cubicle #1 at gpi-1 old female cr', '', '2023-06-28', '2023-06-30', '105', 'Monzon, Rio', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of tank lever at cubicle #1 at gpi-1 old female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-03', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(428, '2023-06-27', 'rated', 0, 'GP-94-005', 'Reyes, Raymond', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Requesting to make 4pcs. Of fire extinguisher stand. Please see attached file. Thank you.', '', '2023-07-03', '2023-07-22', '267', 'Lontoc, Arlene', '2023-06-27', NULL, NULL, '', '2023-06-29', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-14', 'For request of materials needed for the assemble of fire extinguisher stand.', NULL, NULL, 'June 29, 2023', NULL, NULL, 'Fabricate fire extinguisher stand.\r\nApply red oxide\r\nPainted it of orange color', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Reyes, Raymond', NULL, NULL, 'Thank you for the quality work.', 'Jun', '2023', '../upload_files/2306-2712-4342.F.E Stand.xlsx.xlsx', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(429, '2023-06-27', 'Done', 0, 'GP-14-408', 'Jose, Aris', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'Request to upgrade the os of our laptop computer (simulator) from wndows7 to windows10', '', '2023-06-29', '2023-07-05', 'Loc. 519', 'Lemuel Semillano', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed Windows 10 OS to the requested laptop and update drivers.', 'Endorsed back to the requestor', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(430, '2023-06-27', 'rated', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', NULL, 'mis', 'CCTV', 'To checkif someone get the rubber mallet intended for fire hose cabinet in fabrication area near shutter', '', '2023-06-28', '2023-07-03', '981-212', 'Reyes, Raymond', '2023-06-27', '', NULL, '', '2023-06-29', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-06-30', NULL, NULL, NULL, NULL, NULL, NULL, '1. Assist the requestor in reviewing the CCTV camera located in the fabrication area in GPI-8 Suntrust.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-06-30', 'Jordan, Carmela', NULL, NULL, '', 'Jun', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(431, '2023-07-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of defective door knob at gpi-5 guard house area', '', '2023-07-03', '2023-07-05', '105', 'Monzon, Rio', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair of defective door knob at guard house GPI-5. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-08', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(432, '2023-07-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of defective lavatory faucet at gpi-5 canteen dishwashing area', '', '2023-07-03', '2023-07-05', '105', 'Monzon, Rio', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced the defective lavatory faucet at Canteen Diswashing Area GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-08', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(433, '2023-07-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of grass cutter at gpi-1', '', '2023-07-03', '2023-07-05', '105', 'Monzon, Rio', '2023-07-04', '', NULL, '', '2023-07-06', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Check and evaluate the grass cutter unit and found out worn out break-shoe and the engine are malfunctioning that cause of automatically stop. ', 'The grass cutter unit are subject for replacement of new.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-08', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(434, '2023-07-03', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Install forklift charger (48 v0lts) at gpi-10', '', '2023-07-04', '2023-07-05', '413', 'Sheryll Ramirez', '2023-07-05', '', NULL, '', '2023-07-05', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'install wiring for forklift charger.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-08', 'Florindo, Eric', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(435, '2023-07-03', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Perforated flooring for repair at gpi-10 between rack (0-gal-0gil)', '', '2023-07-05', '2023-07-06', '413', 'Sheryll Ramirez', '2023-07-05', '', NULL, '', '2023-07-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-10', 'FOR REQUEST OF MATERIALS ( CEMENT)', NULL, NULL, 'July 07, 2023', NULL, NULL, 'repair of flooring.already repair.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-19', 'Florindo, Eric', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(436, '2023-07-03', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'For repair wagon cart convert to pushcart to be use for endorsement.', '', '2023-07-06', '2023-07-07', '413', 'Sheryll Ramirez', '2023-07-05', '', NULL, '', '2023-07-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Convert wagon cart of GPI-10 into two push carts.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-08', 'Florindo, Eric', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(437, '2023-07-03', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'fem', 'Others', 'Request to assistant for Welding process, making sample of caster wheel for sdrb-machine', '', '2023-07-04', '2023-07-06', '211', 'Bautista, Elmer', '2023-07-03', '', NULL, '', '2023-07-03', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'welding the small metal to the part of caster wheel sample.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-04', 'Manny Herrera', NULL, NULL, 'ok good and clear.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(438, '2023-07-03', 'rated', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Repair damaged wall at gpi6 office.', '', '2023-07-05', '2023-07-07', '524', 'Sheryll Ramirez', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-14', 'For Request Material needed in this Job order.', NULL, NULL, 'July 08, 2023', NULL, NULL, 'Repaired damage wall at GPI-6 Office.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-18', 'Nazareno, Bernadette', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(439, '2023-07-03', 'Done', 0, 'lem', 'Lemuel Semillano', '[email protected]', 'Production 1', NULL, 'mis', 'Others', 'Request to change battery of ups of my computer.', '', '2023-07-04', '2023-07-06', '538', 'Lemuel Semillano', '2023-07-03', NULL, NULL, '', '2023-07-04', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-05', 'Performed initial checking to the UPS backup to verify if battery needs replacement', NULL, NULL, 'July 05, 2023', NULL, NULL, 'Changed battery of UPS and endorsed to the requestor', 'Changed of battery', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(440, '2023-07-03', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional outlet220v for audit and training.', '', '2023-07-04', '2023-07-06', '822', 'Pinpin, Cherry', '2023-07-03', '', NULL, '', '2023-07-04', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed Additional four outlet220v for audit and training.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-06', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(441, '2023-07-03', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Installation of flourescent fixtures(qc glr line).', '', '2023-07-04', '2023-07-06', '822', 'Pinpin, Cherry', '2023-07-03', '', NULL, '', '2023-07-04', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Installation of flourescent fixtures(qc glr line).', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-06', 'Asuelo, Oscar Jr.', NULL, NULL, 'Good', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(442, '2023-07-03', 'rated', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Computer', 'Slow g-dms', 'C2106-161', '2023-07-04', '2023-07-06', '118', 'Reyes, Raymond', '2023-07-03', '', NULL, '', '2023-07-04', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-08-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Will check with system kaizen with regards to the time taken loading the jspdf.js on G-DMS.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-06-03', 'Alvarez, Krizel Micah Anne', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(443, '2023-07-03', 'rated', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', NULL, 'fem', 'Others', 'Repair of flooring in gpi-5 production area(yrcw-52-ta).', '', '2023-07-04', '2023-07-06', '515', 'Lemuel Semillano', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the damage flooring in using epoxy A & B at YRCW-52 production area.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-13', 'Baldesimo, Deserie', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(444, '2023-07-04', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Reformat computer c2110-215 and deployed at gpi 7 packaging area.', 'C2110-215', '2023-07-05', '2023-07-08', '825', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-11', '1. Ongoing backup files to server 253.', NULL, NULL, 'July 05, 2023', NULL, NULL, '1. Done format the computer.\r\n2. Ready to deploy the computer to the designated location.\r\n3. Schedule Wednesday to deploy.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-14', 'Rojas, Noemi', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(445, '2023-07-04', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to install network connection in GPi 7 packaging area and e-mail GP7 [email protected]', 'C2110-215', '2023-07-05', '2023-07-07', '825', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the computer location requested in GPI-7.\r\n2. Install and wiring the LAN cable to the computer requested.\r\n3. Deploy the requested email to the computer - [email protected]\r\n4. Done.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-20', 'Rojas, Noemi', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(446, '2023-07-04', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'mis', 'Email', 'Requesting an email address for ms. Katharina blancaflor - japanese interpreter', '', '2023-07-05', '2023-07-07', '102', 'Monzon, Rio', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Reactivated the [email protected]. Done', 'None', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Dulce, Rinalyn', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(447, '2023-07-04', 'rated', 0, 'GP-08-216', 'Naungayan, Wennie', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to check the computer of ms. Dina due to turning on/off screen on monitor of gpi-170.', 'C2106-096', '2023-07-05', '2023-07-07', '820', 'Naungayan, Wennie', '2023-07-04', NULL, NULL, '', '2023-07-04', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-06', 'Performed basic troubleshooting to monitor to verify the problem', NULL, NULL, 'July 06, 2023', NULL, NULL, 'Upon checking, the monitor is automatically power off and not detecting the computer even if replaced by power cord. This determined that the monitor is malfunctioning and need to be replaced', 'For replacement of new monitor', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Naungayan, Wennie', NULL, NULL, 'Request Job Order is done in advance.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(448, '2023-07-04', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Install new fujitsu scanner at gpi7 (c2110-215) computer at packaging', 'C2110-215', '2023-07-06', '2023-07-08', '825', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-05', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Assist to assemble the Fujitsu scanner in the packaging area.\r\n2. Install the Fujitsu scanner application to access.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-20', 'Rojas, Noemi', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(449, '2023-07-04', 'rated', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', NULL, 'fem', 'Electrical', 'Installation of electrical supply on qc incoming inspection beside production hallway near "common line".', '', '2023-07-05', '2023-07-07', '819', 'Wilma, Logrono', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Installation of electrical supply on qc incoming inspection beside production hallway near 220v and 110v in GPI 1', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'Ciudad, Nolsan', NULL, NULL, 'VERY WELL DONE....THANKS A LOT :)', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(450, '2023-07-04', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Electrical', 'Requesting for new electric extension for japanese interpreter desktop computer.', '', '2023-07-05', '2023-07-07', '102', 'Monzon, Rio', '2023-07-04', '', NULL, '', '2023-07-04', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'replace the extension wire because the old extension wire is damage. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Dulce, Rinalyn', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(451, '2023-07-04', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Electrical wiring at gpi 7 packaging computer area.', '', '2023-07-05', '2023-07-07', '825', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-05', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed Electrical wiring at gpi 7 packaging computer area.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-07', 'Rojas, Noemi', NULL, NULL, 'good job ', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(452, '2023-07-04', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'mis', 'Relayout', 'Set up 3 system unit in sdrb area and provide network connection', '', '2023-07-05', '2023-07-10', '311', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-05', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-25', 'To schedule on 2nd week of July', 'Estimate materials needed and conducted area survey', 'Installed Network cable to 3 different tables in SDRB 200 area. Continuation on July 11', 'July 07, 2023', 'July 10, 2023', 'July 10, 2023', 'Coordinated with Prod Support for the jig of system unit. Setup the unit and endorsed to the requestor with 2 keyboard and 2 mouse.', 'Done', 0, NULL, NULL, '5', '5', 5.00, '2023-07-28', 'Cinco, Merry Beth', NULL, NULL, 'Good', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(453, '2023-07-04', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Install outlet for socket and system unit (3 units)', '', '2023-07-05', '2023-07-07', '311', 'Lisboa, Dina', '2023-07-04', '', NULL, '', '2023-07-05', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed three 220V outlet at 3 tables.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Cinco, Merry Beth', NULL, NULL, 'GOOD', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(454, '2023-07-04', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check pc no.14 on drss line 3, due to when trying to open no response.', 'C2106-025', '2023-07-05', '2023-07-08', '508', 'Benjie Paras', '2023-07-05', '', NULL, '', '2023-07-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-08-03', 'Performed troubleshooting to the requested computer', NULL, NULL, 'July 28, 2023', NULL, NULL, 'Upon troubleshooting, the problem found is a damaged power supply. Replaced the NG power supply with spare and request the department to purchase new power supply unit.', 'To purchase new power supply in exchange to the spare unit. Already endorsed the computer to DRSS line', 0, NULL, NULL, '5', '5', 5.00, '2024-03-13', 'Odviar, Melody', NULL, NULL, 'ok and thank you', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(455, '2023-07-04', 'Done', 0, 'GP-16-467', 'Ma. Jesusa Garcia', '[email protected]', 'Parts Production', NULL, 'mis', 'Email', 'Make email address under my name [email protected]\r\nand transfer my email ([email protected]) to our new member.', '', '2023-07-05', '2023-07-07', '110', 'Sapalasan, Eloisa', '2023-07-04', '', NULL, '', '2023-07-07', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Create the email requested - [email protected] and [email protected].\r\n2. Deploy the email - [email protected] to Ms. Suzie.\r\n3. Deploy the email - [email protected] to new members of PPD staff.\r\n4. Done.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(456, '2023-07-05', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Requesting for microphone, speaker, and projector for the smoking cessation awareness to be held tomorrow, july 6, 2023 at conference room 4', '', '2023-07-06', '2023-07-08', '191', 'Monzon, Rio', '2023-07-06', '', NULL, '', '2023-07-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Preapare and setup microphone, projector and sound system for the awareness of the concerned user, Endorsed to the requestor', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(457, '2023-07-05', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check pdf application and, access on printer.', 'C211-276', '2023-07-06', '2023-07-08', '508', 'Benjie Paras', '2023-07-05', '', NULL, '', '2023-07-07', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. already done the JO request.\r\n2. Update the PDF application.\r\n3. Install the printer request.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-14', 'Odviar, Melody', NULL, NULL, 'ok and thank you for the response.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(458, '2023-07-06', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'My computer suddenly cannot connect to gpi shared folder delete everyday and to the bcp folder that i need to submit monthly to mr. Raymond reyes. Please give me access again.', 'C2305-013', '2023-07-06', '2023-07-08', '105', 'Sapalasan, Eloisa', '2023-07-06', '', NULL, '', '2023-07-07', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided access to 192.168.5.254. Done', 'None', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(459, '2023-07-06', 'rated', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', NULL, 'fem', 'Others', 'Repair of malfunction electricfan.', '', '2023-07-07', '2023-07-09', '515', 'Lemuel Semillano', '2023-07-06', '', NULL, '', '2023-07-06', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Success repair of Electric Fan, cause of malfunction is No.3 switch is not connected, loose connection rather. I think because of the old FEM member is repair this Electric fan cause of loose connection in Electric fan motor.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-13', 'Baldesimo, Deserie', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(460, '2023-07-06', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Date of viewing: july 13-14, 2023\r\n\r\nto download youtube links and to be played on gpi 1 canteen area\r\n• https://www.youtube.com/watch?v=zb0obxtmoa0\r\n• https://www.youtube.com/watch?v=eh-7-efawbq \r\n• https://www.youtube.com/watch?v=-aixeasp', '', '2023-07-13', '2023-07-15', '191', 'Monzon, Rio', '2023-07-06', '', NULL, '', '2023-07-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-28', 'Provided link is not working (unavailable in Youtube) Ask requestor to provide another link', NULL, NULL, 'July 07, 2023', NULL, NULL, 'Downloaded the requested videos and perform video showing in Canteen area during lunch break', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-03', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(461, '2023-07-06', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'fem', 'Electrical', 'Kindly replace the light bulb on 22 areas here in PPD with a higher wattage that failed in luminance testing. (see attached details)', '', '2023-07-08', '2023-07-10', '105', 'Sapalasan, Eloisa', '2023-07-06', '', NULL, '', '2023-07-06', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-08-02', 'On going test for the light and fixture to be requested for the OSHA lighting standard compliance.', NULL, NULL, 'July 11, 2023', NULL, NULL, 'Installed 15pcs(2x18)w Led in ML 1-5,QC,and Fabrication area.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-02', 'Rolle, Ryan', NULL, NULL, 'AWESOME, THANK YOU!', 'Jul', '2023', '../upload_files/2307-0609-3129.06072023112402.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(462, '2023-07-06', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Install hanging ground terminal in final assembly and final inspection 14 pcs.', '', '2023-07-07', '2023-07-09', '311', 'Naungayan, Wennie', '2023-07-08', '', NULL, '', '2023-07-10', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'installation of ground terminal.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Cinco, Merry Beth', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(463, '2023-07-06', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'mis', 'Relayout', 'Set up 1 system unit in sdrb area and provide network connection', '', '2023-07-07', '2023-07-13', '311', 'Naungayan, Wennie', '2023-07-08', '', NULL, '', '2023-07-11', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-28', NULL, NULL, NULL, NULL, NULL, NULL, 'Already setup the system unit and performed network cable installation to the requested area', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-28', 'Cinco, Merry Beth', NULL, NULL, 'Good', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(464, '2023-07-06', 'rated', 0, 'GP-11-283', 'Cinco, Merry Beth', '[email protected]', 'Production 2', NULL, 'fem', 'Relayout', 'Install outlet for socket and system unit (1 unit)', '', '2023-07-07', '2023-07-11', '311', 'Naungayan, Wennie', '2023-07-08', '', NULL, '', '2023-07-10', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed three 2 gang outlet (11OV) to be used by japanese.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-11', 'Cinco, Merry Beth', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(465, '2023-07-06', 'rated', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Electrical wiring of truck', '', '2023-07-07', '2023-07-09', '524', 'Sheryll Ramirez', '2023-07-07', '', NULL, '', '2023-07-10', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Already check the electrical lighting's of truck and we found out for replacement of 1pc 12volts bulb then the electrical wiring's is subject for repair to the outside service provider. ', 'Need to re-check and repair the electrical wiring into the automotive technician. (Outside Service Provider)', 0, NULL, NULL, '5', '5', 5.00, '2023-07-24', 'Yacon, Deserie', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(466, '2023-07-06', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Electrical installation at sdrb-260 line.', '', '2023-07-07', '2023-07-09', '822', 'Pinpin, Cherry', '2023-07-08', '', NULL, '', '2023-07-11', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed 220v used for tv at sdrb-260 line.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-14', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(467, '2023-07-07', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Request for laptop and assistance for the webinar on july 25, 2023 at conference room 1. Time : 08:30pm - 04:00pm', '', '2023-07-25', '2023-07-27', '110', 'Monzon, Rio', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Setup teams for webinar', '', 0, NULL, NULL, '4', '3', 3.50, '2023-11-17', 'Bornasal, Rusitha Audrey', NULL, NULL, 'Good Job.', 'Jul', '2023', '../upload_files/2307-0707-2047.Webinar link.txt.txt', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(468, '2023-07-07', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'Kindly check this re occurring pop-out on my computer, if it is necessary to install or not, if necessary please install it in my computer.', 'C2305-013', '2023-07-07', '2023-07-09', '105', 'Sapalasan, Eloisa', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Install and update the .NET FRAMEWORK 35.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-18', 'Rolle, Ryan', NULL, NULL, 'Thank you.', 'Jul', '2023', '../upload_files/2307-0707-2911.PC Issues.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(469, '2023-07-07', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check sype application due to when need to video call no response.', 'c2110-218', '2023-07-07', '2023-07-11', '508', 'Benjie Paras', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Already checked and fixed. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'Odviar, Melody', NULL, NULL, 'ok and thank you for the response.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(470, '2023-07-07', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Electrical installation of outlet220v at packaging area.', '', '2023-07-08', '2023-07-10', '822', 'Pinpin, Cherry', '2023-07-08', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'Multiple entry (Already filed by Ms.Noemi Rojas)', '2023-07-10', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(471, '2023-07-07', 'rated', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', NULL, 'mis', 'Others', 'Lay-out program invitation for business conference. Please indicate vicinity (jardin dela vida) map and direction. Details are on the attached program sample.', '', '2023-07-08', '2023-07-12', '152', 'Semillano, Lyziel', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Designed the business conference 2023 progamme layout and add vicinity map with qr code in page 1', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-13', 'Desacula, Genny', NULL, NULL, 'thank you for the very good design', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(472, '2023-07-07', 'rated', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Email', 'Request for email address for new purchasing staff ms. Marlit halili that can be use in purchasing transaction', '', '2023-07-08', '2023-07-10', '155', 'Semillano, Lyziel', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Performed by John Spencer Sandigan, For transfer.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-13', 'Castuli, Sheila', NULL, NULL, 'Perform the job well. Thanks!', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(473, '2023-07-07', 'rated', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Request to check and clean the old computer of previous purchasing staff with pc tag number c2106-132 to be use by new purchasing staff ms. Marlit halili, since the computer is encountered slow performance while opening of files.', 'C2106-132', '2023-07-08', '2023-07-13', '155', 'Semillano, Lyziel', '2023-07-07', '', NULL, '', '2023-07-07', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-13', 'To schedule on July 11-13', 'Performed backup of files from the computer', 'Performed reformat and install Windows 10 OS. Upon checking, the computer has low specs, the possible reason of slow processing when opening of files simultaneously. ', 'July 08, 2023', 'July 13, 2023', 'July 13, 2023', 'Install needed applications and endorsed to the user. ', 'For observation, if the user noticed that the computer is still slow, we recommend to change the parts of the computer with high specs.', 0, NULL, NULL, '3', '3', 3.00, '2023-07-13', 'Castuli, Sheila', NULL, NULL, 'We will observe the computer performance. Thank you!', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(474, '2023-07-08', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair water tank lever at cubicle #6 & #12 at gpi-5 old female cr', '', '2023-07-08', '2023-07-10', '105', 'Monzon, Rio', '2023-07-08', '', NULL, '', '2023-07-10', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-19', 'For request materials.', NULL, NULL, 'July 10, 2023', NULL, NULL, 'Repaired water tank lever at Cubicle #6 and 12 at GPI5 Old Female CR.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-24', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(475, '2023-07-08', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check clogged lavatory at gpi-1 old male cr', '', '2023-07-08', '2023-07-10', '105', 'Monzon, Rio', '2023-07-08', '', NULL, '', '2023-07-10', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'already check the lavatory try to pump and suggest to gs assigned please put the deccluger chemical to the lavatory.', 'for now the lavatory is already ok.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-13', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(476, '2023-07-08', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'Kindly check this re occurring pop-out on my computer, if it is necessary to install or not, if necessary please install it in my computer. Pdf file related.', 'C2305-013', '2023-07-10', '2023-07-13', '105', 'Sapalasan, Eloisa', '2023-07-08', '', NULL, '', '2023-07-11', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-31', NULL, NULL, NULL, NULL, NULL, NULL, '1. Update the pdf application and install it.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-02', 'Rolle, Ryan', NULL, NULL, 'THANK YOU!', 'Jul', '2023', '../upload_files/2307-0808-0239.Adobe Add-on.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(477, '2023-07-08', 'cancelled', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Install pdf sam and pdf xchange viewer applications', 'C2106-092', '2023-07-10', '2023-07-12', '184', 'Sheryll Ramirez', '2023-07-10', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'required license due to detect of japan this application is too many spyware and malware', '2023-07-11', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(478, '2023-07-08', 'rated', 0, 'GP-16-461', 'Alonzo, John Lord', '[email protected]', 'Administration', NULL, 'mis', 'CCTV', 'Request of CCTV review of alleged powerlane employee (vandalism in male CR)', '', '2023-07-10', '2023-07-12', '818', 'Calalo, Gemma', '2023-07-08', '', NULL, '', '2023-07-11', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, '1. Already assist the requestor to review the CCTV recording in GPI-1 Male cr.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-26', 'Alonzo, John Lord', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(480, '2023-07-08', 'cancelled', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'fem', 'Electrical', 'Re-wiring at hr area.', '', '2023-07-15', '2023-07-17', '110', 'Monzon, Rio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'No attachment', '2023-07-08', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(481, '2023-07-08', 'rated', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Re-wiring of cables in hr area', '', '2023-07-15', '2023-07-17', '110', 'Monzon, Rio', '2023-07-10', '', NULL, '', '2023-07-11', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Arrange LAN cable and electrical cable.\r\n2. Provide a plate to cover the arranged wiring cables.\r\n3. DONE.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-14', 'Mendoza, Charisse', NULL, NULL, 'Able to finish JO ahead of time. The work is very neat and organize.', 'Jul', '2023', '../upload_files/2307-0815-4551.355984605_2564737093701756_1533006073333317295_n.jpg.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(482, '2023-07-08', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'fem', 'Electrical', 'Re-wiring at hr area.', '', '2023-07-15', '2023-07-17', '110', 'Monzon, Rio', '2023-07-10', '', NULL, '', '2023-07-13', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Arranged lan cable and electrical wiring.\r\nProvide metal plate to cover the wire.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-14', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'Jul', '2023', '../upload_files/2307-0815-5009.355134774_3527081334219152_6324044114556091604_n.jpg.jpg', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(483, '2023-07-08', 'rated', 0, 'GP-08-216', 'Naungayan, Wennie', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Kindly assist what kind or type of mobile charger and sd card to be for prod. 2 issued mobile phone.', '', '2023-07-10', '2023-07-12', '821', 'Naungayan, Wennie', '2023-07-08', NULL, NULL, 'since this is old phone please purchase new model phone instead replacing charger. error may be repeated ', '2023-07-11', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Existing cellphone is an old model and is hard to find a charger that fits with it due to phase-out model. We recommend to coordinate with GS to purchase new cellphone that can use on daily activity', 'Please coordinate with GS to get quotation to purchase new cellphone', 0, NULL, NULL, '4', '4', 4.00, NULL, 'Naungayan, Wennie', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(484, '2023-07-10', 'Done', 0, 'GP-10-260', 'Osoyos, Shielo Joy', '[email protected]', 'Parts Production', NULL, 'mis', 'Computer', 'Kindly install gstar to my pc', 'C2111-285', '2023-07-11', '2023-07-13', '112', 'Sapalasan, Eloisa', '2023-07-10', '', NULL, '', '2023-07-11', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed G-STAR M on Ms. Shielo's PC. Done', 'None', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(485, '2023-07-10', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect/connection of electrical connection on leaders table at rbw-100 and transfer to rbw-200 line.', '', '2023-07-11', '2023-07-13', '822', 'Pinpin, Cherry', '2023-07-10', '', NULL, '', '2023-07-11', NULL, 'GP-12-356', 'Ramirez, Francisco', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect the electrical wiring of leaders table,then after transfer of table to rbw 200 connect it to the outlet.Done ', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-12', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(486, '2023-07-10', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Transfer of personal computer(c2110-227) from rbw-100 to rbw-200 line.', 'C2110-227', '2023-07-11', '2023-07-13', '822', 'Pinpin, Cherry', '2023-07-10', '', NULL, '', '2023-07-11', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-22', 'Estimate the materials needed in the request', NULL, NULL, 'July 22, 2023', NULL, NULL, 'Provide network connection to the requested computer', 'Done', 0, NULL, NULL, '4', '4', 4.00, '2023-07-22', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(487, '2023-07-10', 'rated', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Please check emergency equipment (emergency light at gpi 5\r\n,6) functioning light\r\nkindly see attached file for the list of emergency light', '', '2023-07-11', '2023-07-13', '120', 'Reyes, Raymond', '2023-07-10', '', NULL, '', '2023-07-10', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'The EL-5-21 and EL-5-28 is working.\r\nThe battery of EL-6-001 is not working.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-06-03', 'Alvarez, Krizel Micah Anne', NULL, NULL, '', 'Jul', '2023', '../upload_files/2307-1010-4919.GPI 5&6 June 2023.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(488, '2023-07-10', 'rated', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'fem', 'Others', 'Transfer of fabrication qc table near p.i. Area include light', '', '2023-07-11', '2023-07-13', 'LOCAL 118', 'Sapalasan, Eloisa', '2023-07-10', '', NULL, '', '2023-07-10', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed electrical supply of P.I and Q.C. table, moved Q.C. table for the desired place. equipped with electtricity for the lighting and switches. also fix the electrical wiring of P.I. table', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Mojica, Richard', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(489, '2023-07-11', 'rated', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Capturing of service awardees for the company anniversary. (date started - july 3, 2023).', '', '2023-07-12', '2023-07-14', '110', 'Monzon, Rio', '2023-07-11', '', NULL, '', '2023-07-11', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-25', 'Take pictures of GPI 1 employees and designed a slides for upcoming Awarding', 'Take photo of all awardees', NULL, 'July 22, 2023', 'July 25, 2023', NULL, 'Edit all pictures and insert in our official template for awardees.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-02', 'Mendoza, Charisse', NULL, NULL, 'Very creative in designing the presentation for the awardees and give assistance to the awardees on how to post for a proper picture. ', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(490, '2023-07-11', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Network', 'Lan connection of ms.fernaliza bernal from rbw100 to rbw200', '', '2023-07-11', '2023-07-13', '822', 'Pinpin, Cherry', '2023-07-11', '', NULL, '', '2023-07-11', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-12', 'Conducted area survey and estimate the materials needed and resources', NULL, NULL, 'July 12, 2023', NULL, NULL, 'Performed Network cabling to the requested computer table. Endorsed to the computer user', 'Endorsed to the computer user', 0, NULL, NULL, '4', '4', 4.00, '2023-07-12', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(491, '2023-07-11', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Transfer of computer from gpi3 to gpi2', 'C2110-210', '2023-07-12', '2023-07-15', '392', 'Sheryll Ramirez', '2023-07-11', '', NULL, '', '2023-07-11', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Transfer the computer of Mr. Nacor to GPI-2 from GPi-3.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-14', 'Nacor Jr., Lorie', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(492, '2023-07-11', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Request to install new scanner at computer c2106-122( due to old scanner ng hardware problem)', '', '2023-07-12', '2023-07-14', '825', 'Lisboa, Dina', '2023-07-11', '', NULL, '', '2023-07-11', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-19', NULL, NULL, NULL, NULL, NULL, NULL, '1. Assemble the Fujitsu scanner and Install the application on the designated computer.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-20', 'Rojas, Noemi', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(493, '2023-07-11', 'rated', 0, 'GP-20-688', 'Prudente, Alyssa Jenine', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Ac at gpi 5 clinic is not cooling.', '', '2023-07-12', '2023-07-14', '520', 'Monzon, Rio', '2023-07-11', '', NULL, '', '2023-07-13', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, 'I set High Fan and 16 Degree in ACU at clinic Gpi5.', '', 0, NULL, NULL, '3', '4', 3.50, '2023-07-18', 'Prudente, Alyssa Jenine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(494, '2023-07-11', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Printer', 'To check old rivoria printer due to repeated jamming during printing', '', '2023-07-12', '2023-07-14', '822', 'Pinpin, Cherry', '2023-07-11', '', NULL, '', '2023-07-11', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-07-13', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS personnel check the status of the printer. Report to the technical service for assistance with the error and jamming of the printer. The technical service does some troubleshooting and resets the value of NVM Settings. Done.', 'Observe for further jamming to occur.', 0, NULL, NULL, '3', '3', 3.00, '2023-07-14', 'Asuelo, Oscar Jr.', NULL, NULL, 'Not OK, paper,jamming always encountered during printing of checksheet.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(495, '2023-07-11', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Telephone', 'Request to check telephone due to noisy sound', '', '2023-07-12', '2023-07-14', '314', 'Naungayan, Wennie', '2023-07-11', '', NULL, '', '2023-07-13', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Change the telephone wire. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-18', 'Sarte, Emyria', NULL, NULL, 'Still have noisy sound', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(496, '2023-07-11', 'cancelled', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to replace existing 2 units of office chair for 2 new incoming qa staff members due to ergonomics issues.', '', '2023-07-12', '2023-07-28', '120', 'Reyes, Raymond', '2023-07-22', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'Wrong input of request', '2023-07-22', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(497, '2023-07-12', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional ground wire on small table at rbw-200 line', '', '2023-07-13', '2023-07-15', '822', 'Pinpin, Cherry', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'installation of ground wire.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-20', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(498, '2023-07-13', 'rated', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Request to check and clean the old computer's of previous purchasing staff's with pc tag number c2106-129 & c2106-057 to be use by incoming purchasing members, since the computer is not in use for long time.', 'C2106-126', '2023-07-14', '2023-07-18', '155', 'Semillano, Lyziel', '2023-07-13', '', NULL, '', '2023-07-13', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-20', '1. Back up computer (C2106-057) data files to server 253.\r\n2. Format the computer and install all applications needed.\r\n3. Deploy the computer to the purchasing dept.\r\n4. Ongoing the format 2nd comput', NULL, NULL, 'July 19, 2023', NULL, NULL, '1. Computer# C2106-129 back up all files to 253 servers.\r\n2. Format the computer, domain, install all applications needed and copy all files from 253 servers.\r\n3. Deploy the computer to purchasing dept.', '', 0, NULL, NULL, '3', '3', 3.00, '2023-07-20', 'Castuli, Sheila', NULL, NULL, ' We will observe the computer performance. Thank you for immediate action.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(500, '2023-07-13', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of door knob at gpi-2 female cr', '', '2023-07-14', '2023-07-16', '105', 'Monzon, Rio', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-24', 'Waiting for door knob.', NULL, NULL, 'July 17, 2023', NULL, NULL, 'Replaced new door knob', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(501, '2023-07-13', 'rated', 0, 'GP-08-216', 'Naungayan, Wennie', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to temporary transfer computer c2106-096 from ms. Dina table to previous table of ms. Elma.', 'C2106-096', '2023-07-14', '2023-07-17', '820', 'Naungayan, Wennie', '2023-07-13', NULL, NULL, '', '2023-07-13', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, '1. Transfer computer C2106-096 and monitor to the requested location.\r\n2. Done.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Naungayan, Wennie', NULL, NULL, 'Requested Job Order is done immediately.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(502, '2023-07-14', 'rated', 0, 'GP-13-366', 'Roque, Karen', '[email protected]', 'Production 2', NULL, 'fem', 'Others', 'Repair broken office chair 2 pcs', '', '2023-07-17', '2023-07-19', '269', 'Naungayan, Wennie', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Tighten the loosen volt of the office chair and cleaned the stuck up wheels of two office chairs.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'Roque, Karen', NULL, NULL, 'REQUESTED J.O IS DONE IMMEDIATELY THANKYOU! ', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(503, '2023-07-14', 'rated', 0, 'GP-22-740', 'Bobby John Solomon', '[email protected]', 'System Kaizen', NULL, 'mis', 'Email', 'Request for installation of e-mail to:\r\nOlive D. Bugarin\r\[email protected]\r\n\r\nPurpose:\r\nReceiving information such as safety, health and environment info from QA and Clinic. Receiving information from head such as admin concerns, etc.', '', '2023-07-15', '2023-07-17', '184', 'Shermayne, Cosa', '2023-07-14', 'Ok.', NULL, '', '2023-07-14', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, '1. Deploy the requested email for the requestor.\r\n2. log in to the email request for the new member of the system kaizen.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-17', 'Bobby John Solomon', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(504, '2023-07-14', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Energize power connection to 2pcs working of rbw-200line.', '', '2023-07-15', '2023-07-17', '822', 'Pinpin, Cherry', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Energized power connection 2table at RBW-200 Line.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-20', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(505, '2023-07-14', 'rated', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Computer', 'Checking/request of new keyboard for daily use (space bar not properly working).', 'WS-GPI273', '2023-07-17', '2023-07-19', '110', 'Monzon, Rio', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided a quotation for a new keyboard.', 'We recommend to purchase the A4Tech KRS83 Keyboard.', 0, NULL, NULL, '5', '5', 5.00, '2023-08-02', 'Mendoza, Charisse', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(506, '2023-07-14', 'rated', 0, 'GP-12-352', 'Manalo, Orlando', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Repair damage floor in gpi-6', '', '2023-07-17', '2023-07-20', '524', 'Sheryll Ramirez', '2023-07-14', '', NULL, '', '2023-07-14', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Repaired damage floor at GPI 6 building.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Manalo, Orlando', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(507, '2023-07-14', 'rated', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'fem', 'Electrical', 'Replacement of lighting switch # 1 at gpi-8 secondary insertion', '', '2023-07-15', '2023-07-17', 'LOCAL 118', 'Sapalasan, Eloisa', '2023-07-14', '', NULL, '', '2023-07-17', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'replacement done 7/17/23 @ 0700h for monitoring.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Mojica, Richard', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(508, '2023-07-17', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check malfunctioning washing machine at gpi-5', '', '2023-07-18', '2023-07-20', '105', 'Calalo, Gemma', '2023-07-17', '', NULL, '', '2023-07-17', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Check the washing machine unit and we found out that the V-belt in the motor is already worn out or loose. We need to replace the damage V-belt by new to use again the washing machine unit. ', 'Subject for replacement of V-Belt of washing machine.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-24', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(509, '2023-07-17', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Printer', 'Automatic deleted of printing.(new revoria)', '', '2023-07-18', '2023-07-20', '822', 'Pinpin, Cherry', '2023-07-17', '', NULL, 'Already coordinated to Fujifilm support desk.', '2023-07-17', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'The printer was reported in May and June, the technical support provide the onsite visit. Check the printer and software, the technician advised to re-install the drive of the printer. The issue still occurs and was reported again this July, the technical support advised changing the location of the LAN port, and MIS personnel found out that the Lan port connected to the printer is not working. After changing the location of the LAN port, the printer is now stable..', 'Still, the MIS Personnel took some updates if the printer is properly working.', 0, NULL, NULL, '3', '3', 3.00, '2023-07-20', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(510, '2023-07-17', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Founds many lines on camera picture(scratches)sony cybershot dsc-w830.(audit&training).', '', '2023-07-18', '2023-07-20', '822', 'Pinpin, Cherry', '2023-07-17', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'We cannot repair camera . Please proceed to outside technician like photoline.', '2023-07-17', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(511, '2023-07-17', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Jvc digicam not working(audit and training)', '', '2023-07-18', '2023-07-20', '822', 'Pinpin, Cherry', '2023-07-17', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'We are not capable to repair a camera please proceed to outside repair like photoline.', '2023-07-17', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(512, '2023-07-17', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'To download the following links below for health viewing at gpi 1 canteen area. Date of viewing: july 20-21, 2023\r\n\r\nhttps://www.youtube.com/watch?v=bzmqw4fm2si (title: seasonal allergies: fact or fiction with dr. Jeff millstein)\r\nhttps', '', '2023-07-20', '2023-07-22', '191', 'Monzon, Rio', '2023-07-17', '', NULL, '', '2023-07-18', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-22', 'Download the video and store in \\192.168.5.253GPI_Shared DELETED EVERY WEEKENDCanteen Viewing', NULL, NULL, 'July 19, 2023', NULL, NULL, 'According to Ms. Francisco, these videos will be played by August.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-13', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(513, '2023-07-17', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'fem', 'Facilities', 'Request to fixed broken door at rtv area near in receiving', '', '2023-07-21', '2023-07-24', '508', 'Benjie Paras', '2023-07-21', '', NULL, '', '2023-07-21', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-08-02', 'For request material.', NULL, NULL, 'July 21, 2023', NULL, NULL, 'Install additional support door hinge to the door damage.', '', 0, NULL, NULL, '4', '5', 4.50, '2023-08-02', 'Odviar, Melody', NULL, NULL, 'thank you for fixing the damage door', 'Jul', '2023', '../upload_files/2307-1718-0414.broken door.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(514, '2023-07-17', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check Computer PC no.7 at DRSS line 2, due to when trying to open no response.', 'C2106-102', '2023-07-21', '2023-07-24', '508', 'Benjie Paras', '2023-07-21', '', NULL, '', '2023-07-21', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-21', 'Ongoing troubleshooting.', NULL, NULL, 'July 21, 2023', NULL, NULL, '1. Upon troubleshooting, MIS found out that the power supply is having a bloated capacitor, The capacitor is the main storage of power.\r\n2. Done ', 'Purchase a new power supply for the system unit.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-22', 'Odviar, Melody', NULL, NULL, 'thank you for immediate response.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(515, '2023-07-18', 'Done', 0, 'GP-00-098', 'Mendoza, Elarde', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Check telephone (kagalkal)', '', '2023-07-19', '2023-07-21', '315', 'Sheryll Ramirez', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2023-08-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Already replaced the telephone cord.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(516, '2023-07-18', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check grass cutter of gpi-8 currently use in gpi-1', '', '2023-07-19', '2023-07-21', '105', 'Monzon, Rio', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-24', NULL, NULL, NULL, NULL, NULL, NULL, 'FEM personnel and housekeeping personnel check and cleaned the grass cutter unit and after that we try to start up the engine but did not work. Possible due to over heat after using the engine have a malfunction and the break-shoe of the grass cutter are already worn out. ', 'Subject for checking the engine of the grass cutter and break-shoe to the outside service provider. ', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(517, '2023-07-18', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Damaged trash bin at gpi-8 guard house area', '', '2023-07-19', '2023-07-21', '105', 'Monzon, Rio', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'GP-11-301', 'Magat, Roel', NULL, '2023-07-21', 'Waste bin already damage and cannot be fixed request for end user to dispose the bin and we will just give them our spare waste bin ', NULL, NULL, 'July 21, 2023', NULL, NULL, 'Done 7/21/23 ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-24', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(519, '2023-07-19', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly check the devices i encoded here at helpdesk/devices/flash drive, when i edited and save every flash drive i encoded all flash drive record became double entry even though it was just edited to update record.', '', '2023-07-20', '2023-07-22', '105', 'Sapalasan, Eloisa', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Thank you for this report. I noticed that there is a bug or logical error with the flashdrive page from the helpdesk system. I already fixed the issue. \r\n\r\nRemember: Users cannot edit what they submmited. ', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', '', NULL, NULL, 'Thank you and your advice is also noted.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(520, '2023-07-19', 'rated', 0, 'GP-22-740', 'Bobby John Solomon', '[email protected]', 'System Kaizen', NULL, 'mis', 'Others', 'Request to check ups of b. Solomon and a. Loyola. Unexpected shutdown of system units due to ups power shortage.', '', '2023-07-20', '2023-07-22', '184', 'Shermayne, Cosa', '2023-07-20', '', NULL, '', '2023-07-20', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-20', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the request UPS, and found out that the UPS unit has a two-computer plugin. That caused the draining of the battery and auto turning off of the UPS unit.\r\n2. Perform changing of the UPS battery.\r\n3. Under observation of the UPS unit.\r\n4. Done.', 'Additional UPS unit.', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Bobby John Solomon', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(521, '2023-07-19', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'For repair pushcart at gpi 10', '', '2023-07-20', '2023-07-21', '413', 'Sheryll Ramirez', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the damaged handle of push cart at GPI-10.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-04', 'Florindo, Eric', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(522, '2023-07-20', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Transfer of ionizer and additional outlet110v at rbw-200 line.', '', '2023-07-21', '2023-07-23', '822', 'Pinpin, Cherry', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'CG-2298', 'Mark Jhace Buenavides', NULL, '2023-07-24', 'For request materials.', NULL, NULL, 'July 21, 2023', NULL, NULL, 'Transfer ionizer and additional out 110V in front line table at RBW-200 line.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-25', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(523, '2023-07-20', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Assistance for the setting-up at conference room 4 for typhoon seminar 1pm-2pm.', '', '2023-07-21', '2023-07-23', '110', 'Monzon, Rio', '2023-07-20', '', NULL, '', '2023-07-21', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Setup internet connection, teams and projector', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-22', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(524, '2023-07-20', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To check hdmi cable due to not working properly', '', '2023-07-22', '2023-07-24', '508', 'Benjie Paras', '2023-07-21', '', NULL, '', '2023-07-21', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the HDMI cable problem.\r\n2. Found out that the HDMI cables are damaged and old, malfunctioning while using the HDMI.\r\n3. Done.', 'Purchase a new HDMI cable for the parts inspection.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Odviar, Melody', NULL, NULL, 'Thank you for immediate response', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(525, '2023-07-20', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check key board and mouse use, due to not working properly', 'C2106-035', '2023-07-21', '2023-07-23', '508', 'Benjie Paras', '2023-07-21', '', NULL, '', '2023-07-21', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem with the keyboard and mouse.\r\n2. The keyboard and mouse are damaged and cannot detect to the computer.\r\n3. Done and recommended.\r\n', 'Purchase a new keyboard and mouse.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Odviar, Melody', NULL, NULL, 'thank you for immediate response', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(526, '2023-07-21', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To check two mouse (jesper odasco and merrelyn bantugan) due to not working properly', '', '2023-07-22', '2023-07-25', '508', 'Benjie Paras', '2023-07-22', '', NULL, '', '2023-07-24', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the mouse of Mr. Jesper and Ms. Merrelyn.\r\n2. Upon checking, found out that the mouse is not functioning properly and is also hard to click.\r\n3. Done and recommended.', 'Purchase a new mouse for the two users of the computers.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Odviar, Melody', NULL, NULL, 'Thank you for immediate response.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(527, '2023-07-21', 'cancelled', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', NULL, 'mis', 'Others', 'Request to review cctv at gpi-5 canteen area today july 21,2023 around 2:10pm to 2:25pm', '', '2023-07-22', '2023-07-24', '264', 'Wilma, Logrono', '2023-07-21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'What is the reason of reviewing the cctv. ', '2023-07-24', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(528, '2023-07-22', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To assist laptop of ms. Renalyn mogol, due to encounter malfunction', 'C2110-235', '2023-07-24', '2023-07-26', '508', 'Benjie Paras', '2023-07-24', '', NULL, '', '2023-07-24', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-28', 'Upon checking the concerned laptop, it was puchased in year 2014 (9 years) and was installed with Windows 7 operating system and too slow when being used by the user.', 'Windows 7 operating system has no update and license atm and Microsoft do not provide support in the OS. Installing Windows 10 OS will make the laptop very slow due to its old model and old parts', NULL, 'July 28, 2023', 'July 28, 2023', NULL, 'Recommend to purchase new laptop or Computer desktop to accomodate the user's need to do his daily workloads and to solve the slow computer problem', 'Recommend to purchase with new system unit. Waiting for supplier quotation', 0, NULL, NULL, '5', '5', 5.00, '2023-08-02', 'Odviar, Melody', NULL, NULL, 'Thank you for immediate response.', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(530, '2023-07-22', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to check the 2 units of qa chair if repairable.', '', '2023-07-24', '2023-07-26', '120', 'Reyes, Raymond', '2023-07-22', '', NULL, '', '2023-07-22', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Get the 2 units of Chair in QA Office\r\nOne unit re-tighten the screw and cleaned the 5 pcs of wheel.\r\nOther unit welded the damaged swivel and fixed it,clean also the 5 pcs. of wheel.\r\nThe two chairs are now ok to use.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-24', 'Jayson Torres', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(531, '2023-07-22', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect electrical connection of working table(3pcs)at rbg line and connect to sdrb-260line.', '', '2023-07-24', '2023-07-26', '822', 'Pinpin, Cherry', '2023-07-24', '', NULL, '', '2023-07-24', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-24', 'Disconnect the electrical connection of 3 working tables.\r\nEstimate the electrical materials needed to connect in GPI1 SDRB 260 line', NULL, NULL, 'July 24, 2023', NULL, NULL, 'Disconnect of electrical supply and after transfer of table re wiring the 3 table and connect to power supply.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-25', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(532, '2023-07-22', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Request for assistance in the sss webinar july 24-25, 2023 - 08:00 am - 04:00 pm\r\nattendee: ms. Maricel montano and ms. Alyssa prudente', '', '2023-07-24', '2023-07-26', '110', 'Monzon, Rio', '2023-07-22', '', NULL, '', '2023-07-24', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-08-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Already assisted the concerned member for meeting link and laptop connection to the meeting.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-22', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(533, '2023-07-24', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check faucet leak at gpi-1 female cr lavatory #2', '', '2023-07-25', '2023-07-27', '105', 'Monzon, Rio', '2023-07-24', '', NULL, 'Please use the provided label.', '2023-07-24', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-24', NULL, NULL, NULL, NULL, NULL, NULL, 'off the valve of faucet and after replace the faucet and connect again to main valve for supply of water.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(534, '2023-07-24', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check the flushing system of cubicle #2 at gpi-1 old female cr', '', '2023-07-25', '2023-07-27', '105', 'Monzon, Rio', '2023-07-24', '', NULL, 'Please use the provided label', '2023-07-24', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'check the flushing system and found out the flushing system is ok.', 'if encounter again please report to fem local 213 or 212.', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(535, '2023-07-24', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check leak at cubicle #2 at gpi-7 female cr', '', '2023-07-25', '2023-07-27', '105', 'Monzon, Rio', '2023-07-24', '', NULL, 'Please use provided label ', '2023-07-24', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Tightening the nut of fill valve.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(536, '2023-07-24', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To provide strainer at gpi-7 lavatory', '', '2023-07-25', '2023-07-27', '105', 'Monzon, Rio', '2023-07-24', '', NULL, '', '2023-07-24', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Install strainer at gpi-7 lavatory to prevent clogging.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-07-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(538, '2023-07-24', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Attach 4pcs of convenience outlet for yrbw(220v) line for tablet at gpi-5.', '', '2023-07-25', '2023-07-27', '822', 'Pinpin, Cherry', '2023-07-26', '', NULL, '', '2023-07-27', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-07-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring installation and additional of 4pcs (220 volts) convenience outlet for the supply of tablet in YRCW line.', '', 0, NULL, NULL, '4', '4', 4.00, '2023-07-28', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(539, '2023-07-25', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check broken door knob at gpi-10 male cr upstair', '', '2023-07-26', '2023-07-28', '105', 'Monzon, Rio', '2023-07-25', '', NULL, '', '2023-07-25', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of new door knob female cr at gpi 10 upstair', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-01', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(540, '2023-07-25', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check flapper of toilet bowl at gpi-10 female cr', '', '2023-07-26', '2023-07-28', '105', 'Monzon, Rio', '2023-07-25', '', NULL, '', '2023-07-25', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the flapper of toilet bowl at gpi-10 female cr.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-08-01', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(541, '2023-07-25', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly check the drss on my desktop. It suddenly not working when i will use it today.', '', '2023-07-26', '2023-07-31', '105', 'Sapalasan, Eloisa', '2023-07-27', '', NULL, '', '2023-07-28', NULL, 'CG-1732', 'Sandigan, John Spencer', NULL, '2023-07-31', NULL, NULL, NULL, NULL, NULL, NULL, '1. Check the problem.\r\n2. Set up the Microsoft edge to access the DRSS link.\r\n3. Done.', '', 0, NULL, NULL, '5', '5', 5.00, '2023-10-25', 'Rolle, Ryan', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(545, '2023-07-26', 'rated', 0, 'GP-16-461', 'Alonzo, John Lord', '[email protected]', 'Administration', NULL, 'mis', 'Telephone', 'Defective telephone at gpi 1 guard house area', '', '2023-07-27', '2023-07-29', '818', 'Calalo, Gemma', '2023-07-27', '', NULL, 'For replacement of unit', '2023-07-27', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-07-28', 'Performed troubleshooting of telephone line to verify the main cause if its telephone or the connection source.', 'After performing troubleshooting and trying another digital telephone, the problem concluded that the telephone is already malfunctioning. It also displayed REPLACE TONE in the screen', NULL, 'July 28, 2023', 'July 28, 2023', NULL, 'MIS deployed temporary telephone unit in the location. And request quotation from supplier to purchase new unit', 'To request quotation from supplier', 0, NULL, NULL, '5', '5', 5.00, '2023-07-28', 'Alonzo, John Lord', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(546, '2023-07-27', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Kindly check the canteen stove burners.', '', '2023-08-01', '2023-08-03', '102', 'Calalo, Gemma', '2023-07-27', '', NULL, '', '2023-07-27', NULL, 'GP-12-356', 'Ramirez, Francisco', NULL, '2023-07-27', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking,the stove is for replacement.\r\nAs of now we are preparing/making price comparison from 3 different contractors.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dulce, Rinalyn', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(547, '2023-07-27', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Network', 'Fixing of internet connection of the computer on gpi 8 clinic', '', '2023-07-31', '2023-08-02', '191', 'Monzon, Rio', '2023-07-27', '', NULL, '', '2023-07-28', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-08-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Provide network cable and endorsed to the user.', 'Network cable is unplugged. Please make sure that the network cable is plugged-in to ensure stable connection to the computer', 0, NULL, NULL, '5', '5', 5.00, '2023-08-07', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(548, '2023-07-27', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Network', 'Fixing of the email on the computer of gpi 8 clinic', '', '2023-07-31', '2023-08-02', '191', 'Monzon, Rio', '2023-07-27', '', NULL, '', '2023-07-28', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2023-08-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Already setup the Outlook and email account to the requested computer', 'Endorsed to the user', 0, NULL, NULL, '5', '5', 5.00, '2023-08-07', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(550, '2023-07-27', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly check, some of the computers here at ppd office and at production area cannot open the linked files sent from ms. Katarina's pc and also other links from other sender like ms. Carmela.', '', '2023-07-28', '2023-07-30', '105', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-04-05', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-05', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS successfully solved the issue about linked files that cannot open.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-24', 'Rolle, Ryan', NULL, NULL, 'Thank you!', 'Jul', '2023', '../upload_files/2307-2714-2852.CANNOT OPEN LINK.pdf', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(552, '2023-07-27', 'cancelled', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Request for two (2) additional computer sets to be used by new members.', '', '2023-08-01', '2023-08-03', '266', 'Sheryll Ramirez', '2023-08-03', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2023', '', 'Already advice to change in quotation', '2023-08-04', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(553, '2023-07-27', 'rated', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Put lights and outlet at lineout area of production 1,technician', '', '2023-08-01', '2023-08-03', '519', 'Lemuel Semillano', '2023-08-07', '', NULL, '', '2023-08-07', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-08-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Install electrical lighting and convenience outlet 110volts and 220volts into the production 1 technician area.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-08', 'Mojica, Jonar', NULL, NULL, '', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(554, '2023-07-28', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Transfer of airgun at operation cover area,additional 110v outlet for checker feed unit and 220v for operation cover area.rbw-200', '', '2023-07-31', '2023-08-02', '822', 'Pinpin, Cherry', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Install of air hose for the air-gun in operation cover area, additional 110 volts outlet for the checker of feed unit. Then install 220 volts outlet for operation cover area in RBW-200 line. ', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(556, '2023-08-01', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check faucet of lavatory #1 at gpi-1 new male cr', '', '2023-08-01', '2023-08-03', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'already replaced new lavatory faucet.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Aug', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(557, '2023-08-01', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check faucet at wash area near canteen at gpi-5', '', '2023-08-01', '2023-08-03', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'already replaced new faucet.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Aug', '2023', '', NULL, '', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(571, '2023-08-02', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To repair nosing of stair #3 at gpi-1', '', '2023-08-03', '2023-08-05', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'CG-0676', 'Edvir Lumagui', NULL, '2023-08-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of stare nosing of stair #3 at gpi-1', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(572, '2023-08-02', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check water supply at cubicle #2 at gpi-1 new male cr', '', '2023-08-03', '2023-08-05', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of damage fill valve of cubicle #2 at gpi-1 new male cr.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(573, '2023-08-02', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check water supply at urinal #1 at gpi-1 new male cr', '', '2023-08-03', '2023-08-05', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'CG-1420', 'Jenmark Rondero', NULL, '2023-08-07', NULL, NULL, NULL, NULL, NULL, NULL, 'off the water supply because the flush valve is damage and double entry of job order.\r\n*already request the material.\r\n*waiting material.\r\n', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(575, '2023-08-02', 'cancelled', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Repair of broken office chair.', '', '2023-08-03', '2023-08-05', '110', 'Monzon, Rio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'Double entry', '2023-08-02', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(576, '2023-08-02', 'cancelled', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Repair of broken office chair', '', '2023-08-03', '2023-08-05', '110', 'Monzon, Rio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'Double entry', '2023-08-02', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(577, '2023-08-02', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Repair of broken office chair', '', '2023-08-03', '2023-08-05', '110', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-08-04', NULL, NULL, NULL, NULL, NULL, NULL, 'welding the damaged parts of chair and after the welding assemble the chair,.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(580, '2023-08-02', 'cancelled', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To install additional input tool at drss line 3 and 4', '', '2023-08-03', '2023-08-04', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'Already done', '2024-03-11', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(581, '2023-08-02', 'cancelled', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check pc no.7 at drss line 2 due to when trying to open no response.', 'C2110-222', '2023-08-03', '2023-08-04', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'GP-15-449', '2024-03-11', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(582, '2023-08-02', 'cancelled', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Computer', 'To check pc of ms. Melody mine, due to when entering the password, password is not accepted.', 'C2106-027', '2023-08-03', '2023-08-04', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'GP-15-449', '2024-03-11', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(584, '2023-08-03', 'cancelled', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To change the broken rj45 in sir benjie table.', '', '2023-08-04', '2023-08-05', '508', 'Benjie Paras', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'GP-15-449', '2024-03-11', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(586, '2023-08-03', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of pathway near washing area of gpi-5 canteen (back side)', '', '2023-08-04', '2023-08-06', '105', 'Monzon, Rio', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2023-08-07', NULL, NULL, NULL, NULL, NULL, NULL, 'put the cement of the repair area flooring.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dulce, Rinalyn', NULL, NULL, '', 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(588, '2023-08-03', 'cancelled', 0, 'GP-22-729', 'Kevin Roy Marero', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Test for phpmailer', '', '2023-08-04', '2023-08-06', '127', 'Calalo, Gemma', '2023-08-03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'WRWERFWEF', '2023-08-07', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(589, '2023-08-03', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnection of electrical wiring at rbw-100 line.', '', '2023-08-04', '2023-08-06', '822', 'Pinpin, Cherry', '2023-08-03', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'Already filed by Ms,Cherry Pinpin', '2023-08-04', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(592, '2023-08-03', 'cancelled', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Computer', 'Land cable connection and printer connection to fuji xerox apeos 5570', 'C2306-021', '2023-08-04', '2023-08-07', '211', 'Bautista, Elmer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'repeat of uploading due to system error.', '2023-08-03', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(593, '2023-08-03', 'cancelled', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', NULL, 'mis', 'Computer', 'Land cable connection and printer connection to fuji xerox apeos 5570', 'C2306-021', '2023-08-04', '2023-08-07', '211', 'Bautista, Elmer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', 'repeat of uploading due to system error', '2023-08-03', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(595, '2023-08-03', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Request to create shared folder which can be accessed by pm/accounting and purchasing regarding ap report', '', '2023-08-04', '2023-08-07', '266', 'Sheryll Ramirez', '2023-08-03', '', NULL, '', '2023-08-04', NULL, 'CG-1374', 'Aileen D. Domo', NULL, '2023-08-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Create shared folder and provide access to Purchasing, Accounting and PPIC.\r\nat 192.168.5.250/PPIC/AP Report', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-09', 'Calderon, Naomi', NULL, NULL, 'done. thanks', 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(603, '2023-08-07', 'Done', 1, 'GP-23-782', 'Marlit Halili', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'The computer is encountered very slow performance while opening of files.', 'C2106-132', '2023-08-08', '2023-08-10', '185', 'Semillano, Lyziel', '2023-08-07', '', NULL, '', '2023-09-21', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-09-29', NULL, NULL, NULL, NULL, NULL, NULL, 'sample action', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(604, '2023-08-07', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Computer is encountered very slow performance while opening of files.', 'C2106-129', '2023-08-08', '2023-08-10', '155', 'Semillano, Lyziel', '2023-08-07', '', NULL, '', '2023-09-25', '2023-09-29', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2023-09-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Sample Action', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(606, '2023-08-25', 'cancelled', 0, 'GP-98-079', 'Pinpin, Cherry', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Re layout rbw - 10 packaging and supplies due to increase of schedule from 10 machine to 1 machines.', '', '2023-09-01', '2023-09-05', '822', 'Pinpin, Cherry', '2023-08-25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2023', '../upload_files/2308-2513-4732.PRODUCTION LAYOUT RBW 150 PACKAGING and SUPPLIES START SEPT 2023.pdf.', 'system error', '2024-03-07', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(615, '2024-03-04', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'Borrow laptop to be use for suppliers training on march 05, 2024', '', '2024-03-05', '2024-03-07', '508', 'Benjie Paras', '2024-03-04', '', NULL, '', '2024-03-07', '2024-03-16', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-03-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Already endorsed laptop to the requestor', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-01', 'Odviar, Melody', NULL, NULL, 'ok and thank you', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(616, '2024-03-05', 'rated', 0, 'GP-06-193', 'Villasanta, Michael', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Request for connection of aging for rbw100 line', '', '2024-03-05', '2024-03-07', '511', 'Lemuel Semillano', '2024-03-14', '', NULL, '', '2024-03-18', '2024-03-27', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring installation of 2pcs aging tank unit for RBW-100 line.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-03', 'Villasanta, Michael', NULL, NULL, 'Quick response', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(617, '2024-03-05', 'cancelled', 0, 'GP-06-193', 'Villasanta, Michael', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Request connection of aging for rbw100 line', '', '2024-03-05', '2024-03-07', '511', 'Lemuel Semillano', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'ERROR', '2024-03-05', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(618, '2024-03-05', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check water supply at gpi-1 old female cr cubicle #2', '', '2024-03-06', '2024-03-08', '105', 'Monzon, Rio', '2024-03-08', '', NULL, '', '2024-03-12', '2024-03-21', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-12', NULL, NULL, NULL, NULL, NULL, NULL, 'upon checking we found out that the fill valve is N.G. Then we replacement the fii valve then is already OK.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-12', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(619, '2024-03-06', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check chair at gpi-1 conference room 5', '', '', '', '105', 'Monzon, Rio', '2024-03-08', '', NULL, '', '2024-03-12', '2024-03-21', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-03-12', NULL, NULL, NULL, NULL, NULL, NULL, 'tigthening of bolt of 2 chair and the 1 chair is totaly damage of cylinder at the back of chair. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(620, '2024-03-06', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check tank lever at gpi-7 female cr cubicle #1', '', '', '', '105', 'Monzon, Rio', '2024-03-08', '', NULL, '', '2024-03-12', '2024-03-21', 'CG-1420', 'Jenmark Rondero', NULL, '2024-03-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of tank lever at gpi-7 female cr cubicle #1', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(621, '2024-03-06', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Email', 'Request for email address to new purchasing member ms. Rhianne keith bagorio, replacement to resigned member ms. Marlit halili with pc tag no. C2309-95', '', '', '', '155', 'Semillano, Lyziel', '2024-03-11', '', NULL, '', '2024-03-11', '2024-03-20', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Setup the email on Ms. Bagorio', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(622, '2024-03-06', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Telephone', 'Request to change telephone cord due to unwanted noises while in use. (sir eries phone)', '', '', '', '268', 'Sheryll Ramirez', '2024-03-06', '', NULL, '', '2024-03-07', '2024-03-16', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-03-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced a new telephone wire. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-09', 'Calderon, Naomi', NULL, NULL, 'done. thanks', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(623, '2024-03-07', 'rated', 0, 'GP-16-472', 'Monterde, Susan', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Exhaust fan repair \r\nmale cr (gpi6)', '', '', '', '524', 'Sheryll Ramirez', '2024-03-07', '', NULL, 'ok', '2024-03-08', '2024-03-23', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-23', 'The exhaust fan unit is already damage and not repairable, subject for replacement.', NULL, NULL, 'March 11, 2024', NULL, NULL, 'Purchase of new exhaust fan unit and install it to male c.r at GPI-6.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-27', 'Monterde, Susan', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(624, '2024-03-07', 'cancelled', 0, 'GP-10-268', 'Yalung, Idhonnah', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'For check', 'C2312-31', '', '', '509', 'Sheryll Ramirez', '2024-03-07', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'Please provide additional details to clarify your request.', '2024-03-07', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(625, '2024-03-07', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Cannot save scanned documents in my folder.', 'C2210-032', '', '', '822', 'Pinpin, Cherry', '2024-03-07', '', NULL, '', '2024-03-07', '2024-03-16', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-03-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Enable the sharing properties of the folder.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(626, '2024-03-07', 'rated', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'fem', 'Facilities', 'Re touch paint female locker wall', '', '', '', '118 /108', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-0827', 'Mark Lawrence Lopez', NULL, '2024-04-01', NULL, NULL, NULL, NULL, NULL, NULL, '1. Scrape affected area of the wall.\r\n2. Apply skim coat.\r\n3. Sanding process to get a smooth surface.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-24', 'Mojica, Richard', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(627, '2024-03-07', 'rated', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'fem', 'Facilities', 'Temporary transfer hand dryer from molding female cr to fabrication male cr', '', '', '', '118 /108', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'GP-11-301', 'Magat, Roel', NULL, '2024-03-23', NULL, NULL, NULL, NULL, NULL, NULL, 'PULL OUT 1 UNIT HAND DRYER FROM MALE MOLDING C.R TE,PORARY INSTALLED AT FASBRICATIOM MALE C.R.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Mojica, Richard', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(628, '2024-03-07', 'cancelled', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', '6 unit of press brake machine ( hg model ) checking activation of machine production parameter transfer to usb.', '', '', '', '118 /108', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'GP-17-571', 'Vivo, Felmhar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'Canceled JO because main service provider prohibited the request.', '2024-04-12', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(629, '2024-03-07', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Telephone', 'Request to check telephone due to noisy sound', '', '', '', '314', 'Naungayan, Wennie', '2024-03-14', '', NULL, '', '2024-03-14', '2024-03-26', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-03-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed a new connection (Re-wiring).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-18', 'Sarte, Emyria', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(630, '2024-03-08', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Requesting for microphone, speaker, and projector for the Gender Sensitivity Training on March 15, 2024, 7:30 am at Conference Room 4. Thank you.', '', '', '', '191', 'Monzon, Rio', '2024-03-08', '', NULL, '', '2024-03-08', '2024-03-19', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Done Setup on Conference 4 on March 15, 2024 ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-23', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(631, '2024-03-08', 'cancelled', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'For checking/repair', '', '', '', '381', 'Sheryll Ramirez', '2024-03-13', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'Please complete details of your request. Repair of what?', '2024-03-14', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(632, '2024-03-11', 'rated', 1, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'To transfer email of ms. Merre to archive folder', '', '', '', '508', 'Benjie Paras', '2024-03-11', '', NULL, '', '2024-03-11', '2024-03-20', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-03-23', 'Ongoing backup', NULL, NULL, 'March 19, 2024', NULL, NULL, 'Transfered ther requested email to the new laptop of ms, Cris', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-01', 'Odviar, Melody', NULL, NULL, 'ok and thank you for immediate response', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(633, '2024-03-11', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Others', 'Request to install cube pdf to ms. Melody., mr. Vhins, and ms. Vanessa to easily edit the pdf.', '', '', '', '508', 'Benjie Paras', '2024-03-11', '', NULL, '', '2024-03-11', '2024-03-20', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-03-13', NULL, NULL, NULL, NULL, NULL, NULL, 'The MIS team has completed the installation of the "Cube PDF" application, and it is now available for use.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-13', 'Odviar, Melody', NULL, NULL, 'Ok and thank you', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(634, '2024-03-12', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check broken tiles at gpi-5 old female cr cubicle #10', '', '', '', '105', 'Monzon, Rio', '2024-03-12', '', NULL, '', '2024-03-12', '2024-03-21', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed the 1pc damage tile into the wall of cubicle #10 at old female c.r .Then replaced the damage tile by scrap tile.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(635, '2024-03-12', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check tank lever at gpi-1 new female cr cubicle #2', '', '', '', '105', 'Monzon, Rio', '2024-03-12', '', NULL, 'OK', '2024-03-12', '2024-03-21', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of tank lever at gpi-1 new female cr cubicle #2', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(636, '2024-03-12', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to open 5 pcs of empty containers to be used in gpi 10 hazardous waste storage area', '', '', '', '120', 'Reyes, Raymond', '2024-03-12', '', NULL, '', '2024-03-12', '2024-03-21', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-13', NULL, NULL, NULL, NULL, NULL, NULL, 'open 5 pcs of empty containers to be used in gpi 10 hazardous waste storage area', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Joya, Renan', NULL, NULL, 'Quick response ', 'Mar', '2024', '../upload_files/2403-1213-2444.Empty Containers.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(637, '2024-03-13', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Replacement of perimeter light at gpi-5', '', '', '', '105', 'Monzon, Rio', '2024-03-13', '', NULL, '', '2024-03-13', '2024-03-22', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed the 2pcs existing solar perimeter light at the backside of GPI-5 building. Then replaced of new solar perimeter light.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Dulce, Rinalyn', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(638, '2024-03-13', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Transfer computer set (c2310-24) from gpi6 to gpi 9 \r\nand transfer also computer set (c2203-017) from gpi9 to gpi 6', 'C2310-24, C2203-017', '', '', '427', 'Sheryll Ramirez', '2024-03-13', '', NULL, '', '2024-03-14', '2024-03-23', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-22', 'Transfered the Computer set (c2203-017) from gpi9 - gpi 6', NULL, NULL, 'March 20, 2024', NULL, NULL, 'Already Set up both computers on their respective buildings thank you', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(639, '2024-03-13', 'Done', 1, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Email', 'Change email [email protected] to [email protected]', '', '', '', '427', 'Sheryll Ramirez', '2024-03-13', '', NULL, '', '2024-03-14', '2024-03-23', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already created and signed in email of p.pauni. done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(640, '2024-03-14', 'rated', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', NULL, 'mis', 'Others', 'Request wireless mouse for laptop', '', '', '', 'loc. 152', 'Semillano, Lyziel', '2024-03-14', '', NULL, '', '2024-03-15', '2024-03-26', 'CG-1374', 'Aileen D. Domo', NULL, '2024-03-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace the existing mouse by wireless mouse as per requested of Ma' am Desacula,\r\nfor better control while working using laptop.\r\n\r\n', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-15', 'Desacula, Genny', NULL, NULL, 'Thank you very much.', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(641, '2024-03-14', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Ups malfunction (automatic shutdown several times and not working when power is off)- sir eries', '', '', '', '268', 'Sheryll Ramirez', '2024-03-14', '', NULL, '', '2024-03-15', '2024-03-26', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-03-18', NULL, NULL, NULL, NULL, NULL, NULL, 'After checking the UPS, we tried to change the battery, but the problem still exists. We therefore conclude that the UPS is already defective.', 'We recommend purchasing a new UPS (APC BVX650I-PH Back-UPS AVR 650va 360 Watts 4 Sockets).', 0, NULL, NULL, '5', '5', 5.00, '2024-05-09', 'Calderon, Naomi', NULL, NULL, 'done. thanks', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(642, '2024-03-14', 'cancelled', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Set up laptop and projector at conference room 4 for gender sensitivity training on march 15, 2014 at 8:00 am - 4:00 pm.', '', '', '', '110', 'Monzon, Rio', '2024-03-18', '', NULL, '', '2024-03-18', '2024-03-27', 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'Also, have another JO on this request (2403-630) ', '2024-03-18', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(643, '2024-03-15', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'Repainting of bicycle track (japan trainees bicycle lesson).', '', '', '', '110', 'Monzon, Rio', '2024-03-18', '', NULL, 'ok', '2024-03-18', '2024-03-27', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Repainting of bicycle track (japan trainees bicycle lesson).Already done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-22', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(644, '2024-03-18', 'Done', 1, 'GP-17-516', 'Natuel, Jonathan Jr.', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Request to retrieve missing excel file ( \\192.168.5.250 - administration - fem folder - natuel report - monthly schedule 2024 missing ) to create monthly schedule for 2024.', '', '2024-03-19', '2024-03-25', '513', 'Calalo, Gemma', '2024-03-18', NULL, NULL, '', '2024-03-18', '2024-03-27', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already restored and removed the lock of the file.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(645, '2024-03-18', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check flexible hose at gpi-1 new female cr cubicle #8', '', '', '', '105', 'Monzon, Rio', '2024-03-18', '', NULL, 'ok', '2024-03-18', '2024-03-27', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-03-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace flexible hose due to damage..already installed new flexible hose.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(646, '2024-03-18', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'To check or replace the 3 units of emergency lights in lobby, new male cr near packaging and locker female(2nd floor), reason no light and not functioning', '', '', '', '120', 'Reyes, Raymond', '2024-03-18', '', NULL, 'ok', '2024-03-18', '2024-03-27', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Conduct cheking of emergency ligth we found out the 2 pcs emergency light is for replace and the 1 emergency light for replaced of battery.already replaced and installed.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-18', 'Joya, Renan', NULL, NULL, 'Very quick response thank you', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(647, '2024-03-18', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Request for installation of ground wire and socket (pcb area)', '', '', '', '314', 'Naungayan, Wennie', '2024-03-20', '', NULL, '', '2024-03-20', '2024-03-29', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-03-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Conduct installation of ground wire and outlet and connect to the power supply.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-18', 'Sarte, Emyria', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(648, '2024-03-18', 'rated', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Transfer computer from gpi suntrust to gpi rosario as the pic will now be assigned to rosario (most transactions are now automated).', 'C2312-45', '', '', '263', 'Sheryll Ramirez', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Transfer the System Unit on GPI 1 from GPI 8 (Suntrust) ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-25', 'Pacuan, Mary Jane', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(649, '2024-03-18', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Request to change issued laptop and transfer email address of ms. Maricris and ms. Maria in laptop.', 'C2111-273', '', '', '155', 'Semillano, Lyziel', '2024-03-18', '', NULL, '', '2024-03-19', '2024-03-28', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-03-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Setup laptop for new interpreter. Install needed applications and transfer files needed', 'Laptop was endorsed to the new user', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(650, '2024-03-18', 'rated', 0, 'GP-20-688', 'Prudente, Alyssa Jenine', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'To check computer at gpi 8 clinic', '', '', '', '191', 'Monzon, Rio', '2024-03-19', '', NULL, '', '2024-03-19', '2024-03-28', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-03-25', NULL, NULL, NULL, NULL, NULL, NULL, 'The computer on gpi 8 CLINIC is schedule for pull out due to new laptop to be use.', 'Already pull out the system unit ', 0, NULL, NULL, '5', '5', 5.00, '2024-03-25', 'Prudente, Alyssa Jenine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(651, '2024-03-19', 'rated', 0, 'GP-16-480', 'Castro, Ranelyn', '[email protected]', 'Purchasing', NULL, 'fem', 'Mechanical', 'Repair of shredder machine; and installation of cork board', '', '', '', '182', 'Semillano, Lyziel', '2024-03-19', '', NULL, 'ok', '2024-03-19', '2024-03-28', 'CG-1420', 'Jenmark Rondero', NULL, '2024-03-19', 'Upon checking the gear shaft connected to the motor is already damaged and cannot be repaired. ', NULL, NULL, 'March 19, 2024', NULL, NULL, 'for replacement shredder machine;', 'for replacement', 0, NULL, NULL, '5', '5', 5.00, '2024-03-20', 'Castro, Ranelyn', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(652, '2024-03-19', 'Done', 1, 'GP-17-516', 'Natuel, Jonathan Jr.', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Request to retrieve missing excel file ( \\192.168.5.250 - administration - fem - natuel report - natuel files - monthly schedule 2024 missing ) to create monthly schedule for 2024.', '', '2024-03-20', '2024-03-25', '513', 'Calalo, Gemma', '2024-03-19', NULL, NULL, '', '2024-03-19', '2024-03-28', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already restored and removed the lock of the file.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(653, '2024-03-19', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'To check binding machine at gpi-1 admin supplies area', '', '', '', '105', 'Monzon, Rio', '2024-03-19', '', NULL, '', '2024-03-19', '2024-03-28', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-03-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking we found out the parts of binding machine is detached to the joint.alraedy attached the detached parts to the joint.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-23', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(654, '2024-03-19', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To repair locker #a28 at gpi-1 near at atm', '', '', '', '105', 'Monzon, Rio', '2024-03-19', '', NULL, 'OK', '2024-03-19', '2024-03-28', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Already repair locker #a28 at gpi-1 near at atm', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-23', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(655, '2024-03-19', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'My pdfsam is not working and my computer and the ppd laptop cannot access the \\192.168.5.253 to gpi_shared deleted every weekend (192.168.5.253) - shortcut. Please kindly check and fix them.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-03-19', '', NULL, '', '2024-03-19', '2024-03-28', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-04-02', 'Request was attended by MIS members visiting GPI-8 building', 'Due to applications restriction for GPI network security, PDF SAM usage is limited due to downloading of other software supporting the application. ', NULL, 'April 02, 2024', 'April 02, 2024', NULL, 'To install other PDF editor application', 'To install other PDF editor application', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Rolle, Ryan', NULL, NULL, 'not yet done...', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(656, '2024-03-19', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Kindly fix my dtr filing, it is not working on my pc (c2305-013)', '', '', '', '105', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Already visited the computer and setup the dtr on 03-22-24 thank you', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-02', 'Rolle, Ryan', NULL, NULL, 'AWESOME, THANK YOU!', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(657, '2024-03-19', 'rated', 0, 'GP-13-366', 'Roque, Karen', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Lagging computer. Cannot perform multi-tasking', 'C2106-133', '', '', '269', 'Naungayan, Wennie', '2024-03-20', '', NULL, '', '2024-03-20', '2024-03-29', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-04-03', 'Upon checking, the said computer was formerly assigned to Production Technician that was also been replaced with new laptop for company innovation in Computer.', NULL, NULL, 'March 27, 2024', NULL, NULL, 'The requested computer will be pulled out.', 'Communicate with the requestor', 0, NULL, NULL, '5', '5', 5.00, '2024-05-14', 'Roque, Karen', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(658, '2024-03-20', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'fem', 'Others', 'To fix office chair due to its broken', '', '', '', '508', 'Benjie Paras', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the broken office chair using welding activity, fix the height of chair.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-01', 'Odviar, Melody', NULL, NULL, 'Ok and thank you for immediate response.', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(659, '2024-03-20', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Telephone', 'Easily unplug rj-11 cable on telephone(local number 364)', '', '', '', '822', 'Pinpin, Cherry', '2024-03-20', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace the telephone cord', 'Replacement of new Telephone cord', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(660, '2024-03-20', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Remove electrical connection on incoming qc(brm-10line)gpi-5', '', '', '', '822', 'Pinpin, Cherry', '2024-03-20', '', NULL, '', '2024-03-21', '2024-03-30', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings in BRM-10 line QC incoming tables.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(661, '2024-03-21', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'mis', 'Network', 'To fix lan connection for ms. Noriza cruz area.', '', '', '', '508', 'Benjie Paras', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-04', 'MIS saw that the LAN cable was damaged.', NULL, NULL, 'April 04, 2024', NULL, NULL, 'MIS fixed the LAN cable and it is working again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-05', '', NULL, NULL, 'ok and thank you.', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(662, '2024-03-21', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to assist us for checking(if have discharge already) the waste water sampling point in gpi 2 and gpi 7.', '', '', '', '120', 'Reyes, Raymond', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-21', NULL, NULL, NULL, NULL, NULL, NULL, 'assist for checking(if have discharge already) the waste water sampling point in gpi 2 and gpi 7.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-27', 'Jayson Torres', NULL, NULL, 'Very Satisfied', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(663, '2024-03-21', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect electrical supply of incoming qc table(brm line)', '', '', '', '822', 'Pinpin, Cherry', '2024-03-23', '', NULL, '', '2024-03-23', '2024-04-03', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings in BRM-10 line QC incoming tables.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-02', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(664, '2024-03-21', 'rated', 0, 'GP-14-390', 'Cadocoy, Analyn', '[email protected]', 'Parts Production', NULL, 'fem', 'Electrical', 'Request for additional electrical extension for 1 unit of transfer computer in fg whse at fabrication area, and for the light of qc table.', '', '', '', '124', 'Sapalasan, Eloisa', '2024-03-21', '', NULL, '', '2024-03-21', '2024-03-30', 'GP-11-301', 'Magat, Roel', NULL, '2024-04-01', NULL, NULL, NULL, NULL, NULL, NULL, 'done assemble 2gang outlet requested by whse area ', '', 0, NULL, NULL, '3', '2', 2.50, '2024-04-02', 'Cadocoy, Analyn', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(665, '2024-03-21', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Gpi-5 line compress lay-out(yrcw-52,rbw-50,sdrb-100,rbw-10).', '', '', '', '822', 'Pinpin, Cherry', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings in SDRB-100 line and remove all tables. Then transfer the location of YRCW-52 line into the area of SDRB-100 and dis-connect and transfer the location of RBW-50 line and RBW-10 line.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-22', 'Asuelo, Oscar Jr.', NULL, NULL, 'ok,thank you', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(666, '2024-03-21', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'mis', 'Relayout', 'Gpi-5 line compress lay-out(yrcw-52,rbw-50,sdrb-100,rbw-10).', '', '', '', '822', 'Pinpin, Cherry', '2024-04-02', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-04-16', 'Performed estimation of materials to be used in the activityy', NULL, NULL, 'April 16, 2024', NULL, NULL, 'Installed network connection to the transferred computer table and check connectivity to the server', 'Connection is now okay', 0, NULL, NULL, '5', '5', 5.00, '2024-04-23', 'Asuelo, Oscar Jr.', NULL, NULL, 'ok,Thank you', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(667, '2024-03-21', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Pc at gpi3 for set up of new email (old computer of mam dess)\r\nset for raymond lisama', 'c2106-015', '', '', '381', 'Sheryll Ramirez', '2024-03-23', '', NULL, '', '2024-03-26', '2024-04-06', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-04', NULL, NULL, NULL, NULL, NULL, NULL, 'We already deploy a new system unit on mr. gerpacio.', 'Already setup a new computer', 0, NULL, NULL, '5', '5', 5.00, '2024-04-05', 'Nacor Jr., Lorie', NULL, NULL, 'OK, Thank you po', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(668, '2024-03-21', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'Printer at gpi2 for checking & repair (hp laser jet p1102)', '', '', '', '381', 'Sheryll Ramirez', '2024-03-23', '', NULL, '', '2024-03-26', '2024-04-06', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-05', 'Will Coordinate to Viljam Trading for concern. ', NULL, NULL, 'April 03, 2024', NULL, NULL, 'Already requested for visit the units to viljam (subcontractor). ', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-05', 'Nacor Jr., Lorie', NULL, NULL, 'Kindly coordiante to viljam immediately sir, its the only printer we have at gpi2 bldg.', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(669, '2024-03-23', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Others', 'To repair executive chair of mr. Ozawa', '', '', '', '105', 'Monzon, Rio', '2024-03-23', '', NULL, '', '2024-03-23', '2024-04-03', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-03-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Welding the damage base of executive chair of sir Ozawa.already done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-03', 'Sangalang, Elaine', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(670, '2024-03-23', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect electrical connection on gpi-5 production area(sdrb-100,rbw-10,brm-10 incoming qc,rbw-50,yrcw-52 line).', '', '', '', '822', 'Pinpin, Cherry', '2024-03-23', '', NULL, '', '2024-03-23', '2024-04-03', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-03-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wiring connection on gpi-5 production area(sdrb-100,rbw-10,brm-10 incoming qc,rbw-50,yrcw-52 line).', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-01', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(671, '2024-03-23', 'rated', 1, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Change monitor - still the square type\r\ngpi shared 250 and 253\r\nemail and internet\r\nwebsite access to peza, boc and vasp (e-konek and cdec)\r\nscan and printers access', '', '', '', '184', 'Sheryll Ramirez', '2024-03-25', '', NULL, '', '2024-03-26', '2024-04-06', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-18', NULL, NULL, NULL, NULL, NULL, NULL, 'All request has already been made Thank you ', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-25', 'Pacuan, Mary Jane', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(672, '2024-03-25', 'rated', 0, 'GP-12-329', 'Bucayan, Jeany Lynn', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Disconnection of rbw-150 aging 2pcs.', '', '', '', '384', 'Lemuel Semillano', '2024-03-25', '', NULL, 'ok', '2024-03-25', '2024-04-05', 'CG-0676', 'Edvir Lumagui', NULL, '2024-03-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnection and connect of rbw-150 aging 2pcs.in GPI 7 already done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-03-27', 'Bucayan, Jeany Lynn', NULL, NULL, '', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(673, '2024-03-25', 'Done', 0, 'GP-19-684', 'Ragel, Christian', '[email protected]', 'Purchasing', NULL, 'mis', 'Others', 'Request for access in japanese shared folders (laptop of ms. Maria gemma kokubo', '', '', '', '216', 'Semillano, Lyziel', '2024-03-25', '', NULL, '', '2024-03-26', '2024-04-06', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-03-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Coordinated with the System Administrator for access on Japanese Shared on 03-25-24', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(674, '2024-03-26', 'rated', 0, 'GP-23-778', 'Caela Ericka Manansala', '[email protected]', 'Accounting', NULL, 'mis', 'Others', 'UPS Malfunction of 2 Accounting Members', '', '', '', '114', 'Beri, Gerina', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-11', NULL, NULL, NULL, NULL, NULL, NULL, 'We replaced the battery for Ms. Caelas' UPS with a new one, while Ms. Joys' UPS was already malfunctioning and needed to be replaced. We attempted to replace its battery, but it did not work.', 'We recommend to purchase a new UPS (APC BVX650I-PH Back- UPS AVR 650va 360 Watts 4 Sockets).', 0, NULL, NULL, '4', '4', 4.00, '2024-04-11', 'Caela Ericka Manansala', NULL, NULL, ': )', 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(675, '2024-03-26', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Printing & issuance of company id of newly hired members for april 11, 2024.', '', '', '', '110', 'Monzon, Rio', '2024-03-26', '', NULL, '', '2024-03-27', '2024-04-11', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-11', 'Edit pictures of newly hires members', NULL, NULL, 'April 04, 2024', NULL, NULL, 'Submit all id to HR', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '../upload_files/2403-2608-5212.newly hired 04.11.24.xlsx.xlsx', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(676, '2024-03-26', 'cancelled', 0, 'GP-10-268', 'Yalung, Idhonnah', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Retrieve files', '', '', '', '509', 'Sheryll Ramirez', '2024-03-26', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', 'Please complete the details of request including reason of lost . ', '2024-03-27', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(677, '2024-03-27', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Re-printing of company id (jerick mirandilla)', '', '', '', '110', 'Monzon, Rio', '2024-03-27', '', NULL, '', '2024-04-01', '2024-04-12', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Re-print the requested ID.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Mar', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(678, '2024-04-01', 'rated', 0, 'GP-16-472', 'Monterde, Susan', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Broken switch', '', '', '', '524', 'Sheryll Ramirez', '2024-04-01', '', NULL, 'as per our conversation with the requestor(Ms. Susan)it is located in GPI6 MALE CR.', '2024-04-01', '2024-04-12', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair/replacement of metal parts of single switch in male c.r at GPI-6 building.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-02', 'Monterde, Susan', NULL, NULL, 'GOOD JOB', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(679, '2024-04-01', 'Done', 1, 'GP-18-614', 'Escamillas, Tricy Ann', '[email protected]', 'Administration', NULL, 'mis', 'Network', 'Request to have access to 250 folders such as admin pdca, fem-mis and other files inside fem folder (e.g trouble report, 2023-2024 f.y budget etc.) folders are either cannot be found or cannot be access.', '', '2024-04-02', '2024-04-04', '212', 'Calalo, Gemma', '2024-04-01', NULL, NULL, '', '2024-04-01', '2024-04-12', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to the given files .', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(680, '2024-04-01', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Others', 'Request to connect my pc in gpi 9 printer and gpi 1-qa printer for printing and scanning .thank you.', '', '', '', '381', 'Reyes, Raymond', '2024-04-01', '', NULL, '', '2024-04-02', '2024-04-13', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-05', NULL, NULL, NULL, NULL, NULL, NULL, 'MIS successfully installed the printer and scanner (192.168.5.252 and 192.168.60.147) on Mr. Jayson Torres computer.', '', 0, NULL, NULL, '3', '5', 4.00, '2024-04-19', 'Jayson Torres', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(681, '2024-04-01', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Please check shredder machine.', '', '', '', '266', 'Sheryll Ramirez', '2024-04-01', '', NULL, '', '2024-04-01', '2024-04-12', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Check and repair shredder machine.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-01', 'Calderon, Naomi', NULL, NULL, 'Done. Thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(682, '2024-04-01', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional 5 working tables in rbw-150line.', '', '', '', '822', 'Pinpin, Cherry', '2024-04-02', '', NULL, 'ok', '2024-04-02', '2024-04-13', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Re wiring 5 working tables in rbw-150line.already done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-22', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK, Thank you', 'Apr', '2024', '../upload_files/2404-0209-5343.RBW-150.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(683, '2024-04-02', 'Done', 0, 'GP-12-351', 'Evangelista, Eva', '[email protected]', 'Production 1', NULL, 'mis', 'Network', 'Request access of laptop pst254 on gpi shared, 192.168.5.250 (production 1) and at printer on gpi 5 production area.', '', '', '', '517', 'Lemuel Semillano', '2024-04-02', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-04-17', 'Proceed to the location of the requestor and assessed the requested device', 'Upon checking, the device is a tablet from production line formerly used by Lemuel Semillano. ', NULL, 'April 17, 2024', 'April 17, 2024', NULL, 'Provide connection to 5.250 and 5.253 with same credentials of PC by the requestor. Prohibit printing access due to device inability.', 'Endorsed to the requestor', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(689, '2024-04-02', 'Done', 0, 'GP-18-638', 'Maligsa, Leaflor', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'Printer not functioning.', '', '', '', '509', 'Sheryll Ramirez', '2024-04-02', '', NULL, '', '2024-04-04', '2024-04-17', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-16', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking the printer is for replacement ', 'Recommend purchasing a new printer and ICT Staff will send an updated Quotation. Thank you', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(690, '2024-04-02', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Please check pc due to not functioning.', 'C2310-23', '', '', '427', 'Sheryll Ramirez', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-04', 'As per checking, the SSD on her computer was defective. ', NULL, NULL, 'April 04, 2024', NULL, NULL, 'We replace it with a new SSD', 'Recommend to purchase a new SSD. ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(691, '2024-04-03', 'Done', 0, 'GP-18-596', 'Mugas, John Eric', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'For checking .. Paper jam', '', '', '', '381', 'Sheryll Ramirez', '2024-04-05', '', NULL, '', '2024-04-05', '2024-04-18', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already requested to visit the units by Viljam (subcontractor). ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(692, '2024-04-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To replace busted lighted of food warmer at gpi-5 canteen area', '', '', '', '105', 'Monzon, Rio', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced the busted fluorescent bulb into LED light into the food warmer of canteen.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-05', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(693, '2024-04-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To fabricate menu board at gpi-5 canteen area', '', '', '', '105', 'Monzon, Rio', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabricate menu board for canteen using scrap ivory pipe and board at GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-05', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(694, '2024-04-03', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'For connect to printer (riboria printer old)', 'C2310-17,C2310-36,C2312-34', '', '', '112', 'Pinpin, Cherry', '2024-04-03', '', NULL, '', '2024-04-04', '2024-04-17', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-16', NULL, NULL, NULL, NULL, NULL, NULL, 'The ICT Team successfully installed printers in C2310-17, C2310-36, and C2312-34.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(695, '2024-04-03', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Additional outlet for computer of maam joy (c2402-5) gpi-10', '', '', '', '413', 'Sheryll Ramirez', '2024-04-05', '', NULL, '', '2024-04-12', '2024-04-23', 'CG-1420', 'Jenmark Rondero', NULL, '2024-04-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Added 2 (220V) outlet for computer of maam joy (c2402-5) gpi-10', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-17', 'Florindo, Eric', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(696, '2024-04-03', 'rated', 1, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'mis', 'Network', 'Lan connection for computer of maam joy (c2402-5) gpi-10', '', '', '', '413', 'Sheryll Ramirez', '2024-04-05', '', NULL, '', '2024-04-05', '2024-04-18', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-05-10', 'Already request quotation for PRS', 'To schedule purchasing of new network switch', NULL, 'April 18, 2024', 'April 25, 2024', NULL, 'GPI-10 office only have 5-port network switch. Additional computer in GPI-10 will need to replace the existing switch with more LAN port.', 'Already process the request of purchase since April 18... Need to reapply JO once the network switch was purchased', 0, NULL, NULL, '5', '5', 5.00, '2024-06-10', 'Florindo, Eric', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(697, '2024-04-04', 'Done', 0, 'GP-16-476', 'Sabejon, Jinelyn', '[email protected]', 'Production Support', NULL, 'mis', 'Printer', 'Request connect printer on laptop at gpi-5 supplies area', '', '', '', '518', 'Pinpin, Cherry', '2024-04-04', '', NULL, '', '2024-04-11', '2024-04-20', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Done installation of Printer on Ms. Sabejon laptop. Thank you ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(698, '2024-04-04', 'cancelled', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Internet connection', 'C2312-34,C2312-53', '', '', '112', 'Pinpin, Cherry', '2024-04-04', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Kindly complete detail of request .What do you mean for internet connection', '2024-04-11', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(699, '2024-04-05', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Additional socket 220v for alarm hi-pot', '', '', '', '314', 'Naungayan, Wennie', '2024-04-05', '', NULL, 'Please coordinate to Ms. Emy regarding her request.', '2024-04-05', '2024-04-18', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed Additional socket 220v for alarm hi-pot.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-18', 'Sarte, Emyria', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(700, '2024-04-05', 'cancelled', 0, 'GP-16-476', 'Sabejon, Jinelyn', '[email protected]', 'Production Support', NULL, 'mis', 'Network', 'Request internet connection on laptop in gpi-5 supplies area', '', '', '', '518', 'Pinpin, Cherry', '2024-04-11', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Internet or local connection? If internet need justification like details of site need to access, but if local only please indicated local connection only or intranet.', '2024-04-12', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(702, '2024-04-05', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To paint push cart used at admin supplies area', '', '', '', '105', 'Monzon, Rio', '2024-04-12', '', NULL, '', '2024-04-12', '2024-04-23', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-04-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Repaint push cart of admin supplies area.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-15', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(703, '2024-04-11', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Pipe and socketfor computer and installation of internet connection', '', '', '', '822', 'Pinpin, Cherry', '2024-04-11', '', NULL, '', '2024-04-12', '2024-04-23', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Insstall outlet of 2table for computer connection in production support.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-18', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(704, '2024-04-11', 'cancelled', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'mis', 'Network', 'Pipe and socketfor computer and installation of internet connection', '', '', '', '822', 'Pinpin, Cherry', '2024-04-11', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Kindly elaborate what do you mean pipe and socket and also if need internet connection please make reason like what site you need to be access.', '2024-04-12', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(705, '2024-04-11', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check flexible hose at gpi-1 new female cr cubicle #3', '', '', '', '105', 'Monzon, Rio', '2024-04-12', '', NULL, '', '2024-04-12', '2024-04-23', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-04-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Tightening of flexible hose.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-15', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(706, '2024-04-11', 'Done', 1, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'We would like to request access for network 250 & 253', 'C2312-53, C2312-34', '', '', '112', 'Pinpin, Cherry', '2024-04-12', '', NULL, '', '2024-04-13', '2024-04-24', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Already connected the lan cable to the computer to access the said shared folders.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(707, '2024-04-12', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Provide desktop / laptop, speaker with microphone and lcd projector for the standard first aid training this april 16-19, 2024 (8am - 5pm) at conference room 4.', '', '', '', '110', 'Monzon, Rio', '2024-04-12', '', NULL, '', '2024-04-13', '2024-04-24', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Set up projector and microphone for the training.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-22', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(708, '2024-04-12', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'fem', 'Electrical', 'Requesting to install outlet @ gpi 5 canteen to use for soup warmer..', '', '', '', '191', 'Monzon, Rio', '2024-04-12', '', NULL, '', '2024-04-12', '2024-04-23', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Assemble of extension cord for soup warmer and install it near at water dispenser.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-23', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(709, '2024-04-13', 'rated', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Fabricate shovel for sand in case of spillage', '', '', '', '981-212', 'Reyes, Raymond', '2024-04-15', '', NULL, '', '2024-04-16', '2024-04-25', 'GP-11-301', 'Magat, Roel', NULL, '2024-04-17', NULL, NULL, NULL, NULL, NULL, NULL, 'gather materials from scrap, cutting desired measurement nad assemble using mig weld sanding and turn over 4 pcs. of shovel to Q.A. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-26', 'Jordan, Carmela', NULL, NULL, 'The service is on time; the quality of the fabricated product is good. And thank you for the 1 pieces spare given for back up in case. More power!', 'Apr', '2024', '../upload_files/2404-1310-4939.Shovel.docx.docx', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(710, '2024-04-15', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Install outlet(110v) in rbg line.', '', '', '', '822', 'Pinpin, Cherry', '2024-04-16', '', NULL, '', '2024-04-16', '2024-04-25', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-04-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Installed 110V outlet in (Production area) RBG Line GPI 7 Building.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-30', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK,Thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(711, '2024-04-15', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Others', 'For checking of sd card reader (not functioning)', '', '', '', '118', 'Reyes, Raymond', '2024-04-15', '', NULL, 'Please bring to ICT area for checking', '2024-04-16', '2024-04-25', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-23', 'Checked the status of card reader and test to other computer to verify the problem.', 'Upon checking, all computer tested cannot read the card reader. Even after changing the usb cord. The possible problem is the malfunctioning of the said card reader.', NULL, 'April 23, 2024', 'April 23, 2024', NULL, 'ICT recommend to replace the card reader. Pls coordinate to GS for quotation.', 'Purchase new card reader', 0, NULL, NULL, '4', '4', 4.00, '2024-05-03', 'Dela Cruz, Jaymar', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(712, '2024-04-15', 'rated', 0, 'GP-98-079', 'Pinpin, Cherry', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Retrieve delete excel files.(pdca report monitoring--09112023).', '', '', '', '822', 'Pinpin, Cherry', '2024-04-15', NULL, NULL, 'warning and need report', '2024-04-16', '2024-04-25', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'The file is not possible to be restored as explained to the user. It lies on the local disk of the workstation.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Pinpin, Cherry', NULL, NULL, 'DONE FOR CHECKING', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(713, '2024-04-15', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check broken flush button at gpi-1 old male cr cubicle #1', '', '', '', '105', 'Monzon, Rio', '2024-04-16', '', NULL, '', '2024-04-16', '2024-05-03', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-03', 'checking of damage flush button found out the flush button is stock up and missing( need to rep[lace of new )', NULL, NULL, 'April 17, 2024', NULL, NULL, 'replace the damage flush button.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-03', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(714, '2024-04-15', 'rated', 1, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'mis', 'Others', 'To check input tool and foot switch on drss line 1(pc no.4) and drss line 2 (pc no.8) due to not working properly.', '', '', '', '508', 'Benjie Paras', '2024-04-29', '', NULL, '', '2024-04-29', '2024-05-08', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Already check needs to replace the foot switch .', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-21', 'Odviar, Melody', NULL, NULL, 'Ok and thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-04-29 00:00:00', '2024-05-09 00:00:00', '2024-05-09 00:00:00', NULL, NULL),
(715, '2024-04-16', 'rated', 0, 'GP-10-268', 'Yalung, Idhonnah', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'For check cannot use tray 3 and 4', '', '', '', '509', 'Sheryll Ramirez', '2024-04-16', '', NULL, '', '2024-04-17', '2024-04-26', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-19', 'ICT team checked the printer error and investigate the source of problem.', 'ICT team pulled out tray 3 and 4 and performed cleaning the inside of the printer because the sensor of the printer cannot detect the tray 3 and 4.', NULL, 'April 19, 2024', 'April 19, 2024', NULL, 'After performing the cleaning, the trays 3 and 4 are now detected and it is ready to use again', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-19', 'Yalung, Idhonnah', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(716, '2024-04-16', 'rated', 0, 'GP-12-346', 'Deseo, Cherrylyn', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to retrieve folder that accidentally deleted. (location- 192.168.5.250 - production - production 2 - 1.kaizen monitoring - 3.rbg line - andy william perreras', 'C2310-1', '', '', '419', 'Naungayan, Wennie', '2024-04-18', '', NULL, '', '2024-04-18', '2024-04-27', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Already restored the files before 2023 for Andy William Perreras, kindly check the folders Final Assy and Final Inspection, Safe Block and Safeblock. Done', 'Thank you', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Deseo, Cherrylyn', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(717, '2024-04-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check electric fan at gpi-3 guardhouse area', '', '', '', '105', 'Monzon, Rio', '2024-04-16', '', NULL, '', '2024-04-16', '2024-04-25', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-04-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the electric fan and found out the bushing of motor are already damage. for the main time conduct temporary repair to use again..(For recommend replace new electric fan) ', 'Purchase new electric fan', 0, NULL, NULL, '5', '5', 5.00, '2024-04-19', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(718, '2024-04-16', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', NULL, 'mis', 'Printer', 'Teach hr on how to operate and print company id.', '', '', '', '110', 'Monzon, Rio', '2024-04-16', '', NULL, '', '2024-04-17', '2024-04-26', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Conduct awareness or a tutorial in ID printing last week.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(720, '2024-04-16', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'Request to retrieve excel (general list fy2024-2025) due to accidentally delete date friday 04-12-2024 last save, 04-16-2024 7:00 am', '', '', '', '822', 'Pinpin, Cherry', '2024-04-16', '', NULL, 'warning', '2024-04-17', '2024-04-26', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Already restored the file. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-25', 'Gonzales, Digna', NULL, NULL, 'very good', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(721, '2024-04-16', 'rated', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'mis', 'Email', 'Change email addresses for permanent email assignment (regular employee)\nMarah Cabingan from [email protected] to m. [email protected]\nSherelyn Bunag from [email protected] to [email protected]\nJellyn Granada from [email protected] to [email protected]\n', '', '', '', '145', 'Sheryll Ramirez', '2024-04-17', '', NULL, '', '2024-04-17', '2024-04-26', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-18', NULL, NULL, NULL, NULL, NULL, NULL, 'The email addresses of Ms. Cabingan ([email protected]), Ms. Bunag ([email protected]) and Ms. Granada ([email protected]) have been successfully changed by the ICT team to [email protected], [email protected], and [email protected].', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-25', 'Pacuan, Mary Jane', NULL, NULL, '', 'Apr', '2024', '', 'test only', '2024-04-16', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(722, '2024-04-17', 'Done', 1, 'GP-23-780', 'Marah Cabingan', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Request to install ups worldship application in my computer for shipment documentation purposes (export).', '', '', '', '145', 'Sheryll Ramirez', '2024-04-17', '', NULL, '', '2024-04-17', '2024-04-26', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-05-10', 'ICT member tried to install the application with downloaded software online.', 'ICT member tried to install the application with downloaded software online.', NULL, 'May 10, 2024', 'May 10, 2024', NULL, 'Setup of need application will be finished by UPS service provider', 'Setup of need application will be finished by UPS service provider. Scheduling of visit from the requestor side', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(723, '2024-04-17', 'rated', 1, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', NULL, 'mis', 'Computer', 'Request to check laptop due to no power.(use in electrical adjustment)', 'N/A', '', '', '314', 'Naungayan, Wennie', '2024-04-18', '', NULL, '', '2024-04-18', '2024-04-27', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-05-10', 'For repair to outside service provider', 'Request pickup of service provider for the checkup of the laptop', NULL, 'April 24, 2024', 'May 10, 2024', NULL, 'Requested laptop is already pickup by service provider for repair. Once checking if finish, service provider will submit quotation to proceed the troubleshooting of the found problem', 'Already at service provider location. Waiting for quotation', 0, NULL, NULL, '5', '5', 5.00, '2024-07-11', 'Sarte, Emyria', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(724, '2024-04-17', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Compress assembly table of 3machine racks.', '', '', '', '822', 'Pinpin, Cherry', '2024-04-17', '', NULL, 'RBW 50 LINE as per sir oscar asuelo .Please coordinate to Ms.Fhely', '2024-04-18', '2024-04-27', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings into the production tables of RBW-50 line. Then compress the tables and re-wiring again the production tables.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-23', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK.Thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(725, '2024-04-18', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to assist us in opening sampling point in gpi 2, to check if have waste water discharge.', '', '', '', '381', 'Reyes, Raymond', '2024-04-18', '', NULL, '', '2024-04-18', '2024-04-27', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-18', NULL, NULL, NULL, NULL, NULL, NULL, 'assist us in opening sampling point in gpi 2, to check if have waste water discharge.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-19', 'Jayson Torres', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(726, '2024-04-18', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Battery lifter (opk) not charge', '', '', '', '825', 'Lisboa, Dina', '2024-04-18', '', NULL, '', '2024-04-18', '2024-04-27', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-04-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking the battery lifter is lack of distilled water and the (UP) and (DOWN) is not working too.', 'For checking service provider.', 0, NULL, NULL, '4', '4', 4.00, '2024-04-19', 'Rojas, Noemi', NULL, NULL, 'thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(727, '2024-04-18', 'cancelled', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Request access for google translate.', 'C2310-37', '', '', '112', 'Pinpin, Cherry', '2024-04-18', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Kindly indicate the existing process to elaborate on why necessary you need a Google connection.', '2024-04-23', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(728, '2024-04-19', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check urinal bowl #3 with leak at gpi-5 new male cr', '', '', '', '105', 'Monzon, Rio', '2024-04-19', '', NULL, '', '2024-04-19', '2024-04-30', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-23', 'For request of materials needed. (Epoxy A&B)', NULL, NULL, 'April 23, 2024', NULL, NULL, 'De-clogged the urinal bowl and put epoxy into the portion of flooring that have a water leak.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-24', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(729, '2024-04-19', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of mop squeezer at gpi 1 c/o housekeeping', '', '', '', '105', 'Monzon, Rio', '2024-04-19', '', NULL, '', '2024-04-19', '2024-04-30', 'CG-1420', 'Jenmark Rondero', NULL, '2024-04-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Repaired mop squeezer at gpi 1 c/o housekeeping.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dulce, Rinalyn', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(730, '2024-04-19', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'mis', 'Others', 'For checking of 8pcs tablet. 2 pcs power button not function\r\n6 pcs must plugged in first before use. If battery only it automatically shut down', '', '', '', '822', 'Pinpin, Cherry', '2024-04-19', '', NULL, '', '2024-04-22', '2024-05-01', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-30', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking 6 tablets are for battery replacement and the other 2 tablets are we can't check due to damage power button. ', 'As per checking 6 tablets are for replacement and it can be use it temporarily and the we can''t check the 2 tablets due to damage power button. Tablets that still can be used temporarily are PST175,PST61,PST96,PST102,PST157,PST12', 0, NULL, NULL, '5', '5', 5.00, '2024-05-02', 'Gonzales, Digna', NULL, NULL, 'very good', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(731, '2024-04-19', 'cancelled', 0, 'GP-16-480', 'Castro, Ranelyn', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Access on drss, euc, etc.', 'C2205-028', '', '', '182', 'Gelle, Nerio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Wrong approver', '2024-04-19', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(732, '2024-04-19', 'Done', 0, 'GP-16-480', 'Castro, Ranelyn', '[email protected]', 'Purchasing', NULL, 'mis', 'Computer', 'Access on drss, euc system, gpi-web, etc. (This CPU will be used by Ms. Irene Olaes.)', 'C2205-028', '', '', '182', 'Irene Olaes', '2024-04-19', '', NULL, '', '2024-04-19', '2024-04-30', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Done set up the computer', 'Recommend to Reformat due to always having Automatic system repair ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(733, '2024-04-22', 'rated', 0, 'GP-15-438', 'Tolentino, Edwin', '[email protected]', 'Production 2', NULL, 'mis', 'Others', 'Request recovery of (new) ncr no. (excel file) , location: \r\n\\192.168.5.250production echnicianproduction 2 technician7. Prod2_trouble analysis report, due to cannot open. Last date open about april 5,2024', '', '', '', '833', 'Naungayan, Wennie', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-05-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Check the file location of the file requested. Retrieved files backup from April 8 & 9. Set folder as recovered folder of NCR no.', 'Please see folder title: recovered NCR no.', 0, NULL, NULL, '3', '3', 3.00, '2024-05-07', 'Tolentino, Edwin', NULL, NULL, '', 'Apr', '2024', '../upload_files/2404-2207-3844.directory.jpg.jpg', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(734, '2024-04-22', 'rated', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', NULL, 'fem', 'Facilities', 'Molding big door unsafe condition - stock up (access for emergency exit, disposal of production waste daily )', '', '', '', '118108', 'Sapalasan, Eloisa', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'GP-11-301', 'Magat, Roel', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Done checking and restore , pull out door knob and lock, fix stock up mechanical parts and apply lubrication install pull out parts , testing Ok ', '', 0, NULL, NULL, '4', '4', 4.00, '2024-04-26', 'Mojica, Richard', NULL, NULL, 'Request for improvement of Molding big door proposal ( Mini service door )', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(735, '2024-04-22', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Assist and set up audio system for the launching of biggest loser on april 23, 2024, 4pm to 5pm @ gpi 1 canteen area', '', '', '', '191', 'Monzon, Rio', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-04-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Already performed assistance in setup of audio room courtesy of ICT members', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Marcilla, Lenlyn', NULL, NULL, 'Satisfied', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(736, '2024-04-22', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Computer', 'Request to check UPS assigned to Ms. Cristelyn Sencil (have noisy sound)', 'C2106-068', '', '', '314', 'Naungayan, Wennie', '2024-05-06', '', NULL, '', '2024-05-06', '2024-05-15', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-07', 'ICT staff checked the UPS and found that the battery needs to be replaced.', NULL, NULL, 'May 07, 2024', NULL, NULL, 'ICT staff replaced the old UPS battery with a new one and it is ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-07', 'Sarte, Emyria', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-06 00:00:00', '2024-05-07 00:00:00', '2024-05-07 00:00:00', NULL, NULL),
(737, '2024-04-22', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Perforated flooring between rack 0fal-0fil and incoming area of small parts.', '', '', '', '413', 'Sheryll Ramirez', '2024-04-22', '', NULL, '', '2024-04-22', '2024-05-04', 'CG-0676', 'Edvir Lumagui', NULL, '2024-05-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Conducted cement & epoxy flooring between rack 0fal-0fil and incoming area of small parts.', '', 0, NULL, NULL, '5', '4', 4.50, '2024-05-06', 'Florindo, Eric', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(738, '2024-04-22', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'For checking of iwata air cooler due to not function. Fixed asset tag # 01103.', '', '', '', '413', 'Sheryll Ramirez', '2024-04-22', '', NULL, '', '2024-04-22', '2024-05-01', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'After checking of IWATA AIR COOLER we found out the capacitor of air cooler is already damage and so we decide to replace new capacitor.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-26', 'Florindo, Eric', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(739, '2024-04-22', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Assist and set up audio system for zumba activity on april 27, 2024 at gpi 1 canteen from 4pm to 5pm', '', '', '', '191', 'Monzon, Rio', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Done assisting and set up audio system for zumba activity', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Marcilla, Lenlyn', NULL, NULL, 'Satisfied', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(740, '2024-04-22', 'Done', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Assist and set up audio system for zumba activity on april 27, 2024 from 4pm to 5pm at gpi 8 loading area', '', '', '', '191', 'Monzon, Rio', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-25', 'Upon checking, the program will accommodate 20 participants and will require a venue with a loud sound system. There was no existing sound system in GPI-8 Suntrust', NULL, NULL, 'April 25, 2024', NULL, NULL, 'The program will run from April to August 2024. The sound system in conference room 5 cannot be deployed in GPI-8 for a very long period because visitors might come and use the Conference room at any time.\r\n', 'Due to this situation, we recommend purchasing a new sound system to be permanently assigned in GPI-8. Since the Sound systems available in GPI-1 aren't built for frequent transportation that can cause damage to the devices.If granted, it will be used by PPD for every meeting that will be attended by their employees (ex: bonus explanation, Sayonara etc.) since they're only using Laptop speakers from past events.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(741, '2024-04-23', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Additional line set-up for rbw-200 less production machine', '', '', '', '822', 'Pinpin, Cherry', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring installation of electrical supply into the production tables of RBW-200 line less production machine.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-26', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK, Thank you', 'Apr', '2024', '../upload_files/2404-2308-5218.PRODUCTION-1 RBW-200 LINE RE-LAY-OUT.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(742, '2024-04-23', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnection of electrical connection on audit &training line.', '', '', '', '822', 'Pinpin, Cherry', '2024-04-24', '', NULL, '', '2024-04-24', '2024-05-03', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings of 14pcs tables of audit and training and remove the tables to be use in RBW-200 line at production.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-26', 'Asuelo, Oscar Jr.', NULL, NULL, 'ok, thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(743, '2024-04-23', 'rated', 0, 'GP-19-672', 'Pauni, Princess', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Broken swivel chair.', '', '', '', '524', 'Sheryll Ramirez', '2024-04-24', '', NULL, '', '2024-04-25', '2024-05-04', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair and fix the damage metal portion of office chair in GPI-6 building using welding activity.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-30', 'Pauni, Princess', NULL, NULL, 'very accommodating. Fast action about the requested JO. thank you.', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(744, '2024-04-23', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'My grpis is not working properly just today, it seems that all my uploaded filed are not bieng accepted by the system eventhough it says it is successful. No records have been found after uploading.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-04-23', '', NULL, '', '2024-04-23', '2024-05-02', 'GP-23-822', 'Christian John Lopez', NULL, '2024-04-24', 'Review the full details of requestor concern in the system.', 'Troubleshoot the function of the system by doing the same process that the requestor did and review the system on why that occurs.', NULL, 'April 24, 2024', 'April 24, 2024', NULL, 'The problem only occurs on that client side, so the solution that I made is to reset/clear his browser cache to let the latest function of code in the system to load and giving a basic troubleshoot so it will lessen to encounter again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-04-24', 'Rolle, Ryan', NULL, NULL, 'Thank you very much for your very immediate response.', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(745, '2024-04-23', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'Request for checking of the condition of ms. Katarina's ups because her computer was still affected power fluctuation. It turned of as if the ups doesnt helpful to supply power at time like power fluctuation.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-04-23', '', NULL, '', '2024-04-24', '2024-05-03', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-29', 'ICT staff checked the UPS and found out that the UPS battery was the problem.', NULL, NULL, 'April 29, 2024', NULL, NULL, 'ICT staff replaced a new battery, and the UPS is working and ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Rolle, Ryan', NULL, NULL, 'Thank yo very much!!!', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(746, '2024-04-23', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Request for google translation due to use for rk 10 screw list from japan and standard manual receive.', 'C2310-37', '', '', '112', 'Pinpin, Cherry', '2024-04-23', '', NULL, '', '2024-04-24', '2024-05-03', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-24', 'Access is Coordinated to Administrator ', NULL, NULL, 'April 24, 2024', NULL, NULL, 'ICT Staff Visited the workstation and change the IP for the access ', 'Done Giving Access Thank you ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(747, '2024-04-24', 'Done', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', NULL, 'mis', 'Others', 'Request to retrieve excel file: \r\n\r\n\\192.168.5.250ppicpmimpex fileslocal processing filespeza documentation formatspeza form liquidationpeza form liquidation 2023 new logo.xlsx', '', '', '', '184', 'Sheryll Ramirez', '2024-04-24', '', NULL, '', '2024-04-26', '2024-05-07', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Restored the file. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '../upload_files/2404-2408-2515.EXCEL FILE ERROR ON OPENING.jpg.jpg', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(748, '2024-04-24', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Set up a projector at gpi 1 conference room 4 and themes for gpi 8 participants on april 25 8am to 9am', '', '', '', '191', 'Monzon, Rio', '2024-04-24', '', NULL, '', '2024-04-26', '2024-05-07', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Setup was completed yesterday.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Marcilla, Lenlyn', NULL, NULL, 'Satisfied', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(749, '2024-04-24', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check lavatory leak at gpi-1 old male cr', '', '', '', '105', 'Monzon, Rio', '2024-04-24', '', NULL, '', '2024-04-25', '2024-05-04', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-04-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced new lavatory faucet and put the epoxy to the P-trap damage.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-03', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(750, '2024-04-24', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', NULL, 'mis', 'Computer', 'Request checking of CPU due to easy mode always appear on the screen (HARD DISK NOT FUNCTION)', 'C2310-36', '', '', '112', 'Pinpin, Cherry', '2024-04-24', '', NULL, '', '2024-04-26', '2024-05-07', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-04-26', 'Ask per checking Hard disk was broken', 'Our assessment is due to fluctuation the hard disk of the unit was broken. ', NULL, 'April 26, 2024', 'April 26, 2024', NULL, 'Already replaced the hard disk and previous files weren't retrieved.', 'Additional ups ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(751, '2024-04-25', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check office chair at admin/gs area', '', '', '', '105', 'Monzon, Rio', '2024-04-25', '', NULL, '', '2024-04-25', '2024-05-04', 'CG-0676', 'Edvir Lumagui', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Retightening the screw of office chair at admin/gs area already done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-03', 'Sangalang, Elaine', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(752, '2024-04-25', 'Done', 1, 'GP-15-429', 'Gawaran, Antonieta', '[email protected]', 'PPIC', NULL, 'mis', 'Printer', 'Printer not functioning', '', '', '', 'LOCAL -509', 'Sheryll Ramirez', '2024-04-26', '', NULL, '', '2024-04-26', '2024-05-07', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'We coordinated to VILJAM and reported the problem. As per contractor''s advice the printer cannot be repaired. They recommend for replacement due to dot matrix printer is more expensive if being repair than replacing a new unit,', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-04-26 00:00:00', '2024-06-07 08:41:59', '2024-06-07 08:41:59', NULL, '2024-06-20 07:49:02'),
(753, '2024-04-25', 'Done', 0, 'GP-16-478', 'Sierra, John Carlo', '[email protected]', 'Administration', NULL, 'mis', 'Network', 'Access on google for the checking of parts and materials in computer of fem staff (ralph)', '', '2024-04-26', '2024-04-28', '143', 'Calalo, Gemma', '2024-04-25', NULL, NULL, '', '2024-04-26', '2024-05-07', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided access to google.com. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(754, '2024-04-25', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'mis', 'Computer', 'Unlock computer due to password not working.', 'C2312-36', '', '', '413', 'Sheryll Ramirez', '2024-04-26', '', NULL, '', '2024-04-26', '2024-05-07', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Created account VMI Staff for the workstation. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Florindo, Eric', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(755, '2024-04-26', 'cancelled', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'mis', 'Others', 'I would like to request a teams account of my own so that i will not borrow others account when attending meetings thru teams.', '', '', '', '105', 'Sapalasan, Eloisa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'Creating teams accounts requires add cost for the procurement of license. Can use Shielo/Mitch account in case needed. No need for personal account.', '2024-06-18', 'Sapalasan, Eloisa', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(756, '2024-04-26', 'cancelled', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Assemble curtain holder for projector, used at gpi 8 loading area for the videos during zumba on april 27, 2024 4pm to 5pm', '', '', '', '191', 'Monzon, Rio', '2024-04-26', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-11-301', 'Magat, Roel', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', 'no need to assemble ', '2024-05-07', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(757, '2024-04-26', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Request for downloading a videos for zumba on april 27, 2024 4pm to 5pm', '', '', '', '191', 'Monzon, Rio', '2024-04-26', '', NULL, '', '2024-04-27', '2024-05-08', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-04-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Download and combine all videos', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Marcilla, Lenlyn', NULL, NULL, 'Thank you for always accommodating to us', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(758, '2024-04-26', 'rated', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', NULL, 'fem', 'Electrical', 'Remove or re-arrange electrical and lan connection', '', '', '', '519', 'Lemuel Semillano', '2024-04-26', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Re-arranged the electrical wirings in production office at GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-08', 'Mojica, Jonar', NULL, NULL, '', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(759, '2024-04-26', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Computer', 'Request to install email for ms. Jizelle tocaldo for the reason receiving of projection, standard manual and sending delivery schedule to purchasing.', 'C2312-34', '', '', '112', 'Pinpin, Cherry', '2024-04-27', '', NULL, '', '2024-04-29', '2024-05-08', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-04-29', NULL, NULL, NULL, NULL, NULL, NULL, 'logged on the mail account to the designated computer. The account [email protected] is logged on. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-04-29 00:00:00', '2024-04-29 00:00:00', '2024-04-29 00:00:00', NULL, NULL),
(760, '2024-04-27', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'mis', 'Email', 'To add on email group of [email protected](use by auditor) ms. Krizzel leigh sayas.', '', '', '', '508', 'Benjie Paras', '2024-04-29', '', NULL, '', '2024-04-29', '2024-05-08', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-05-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Felmhar Vivo created the e-mail address [email protected] and logged it in. Done by Felmhar Vivo', 'None', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Odviar, Melody', NULL, NULL, 'OK, and thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-04-29 00:00:00', '2024-05-03 00:00:00', '2024-05-03 00:00:00', NULL, NULL),
(761, '2024-04-27', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'mis', 'Email', 'To change the email address use by ms. Merrelyn bantugan ([email protected]) to [email protected] under to ms. Noriza cruz. Due to need to transact to supplier with regards to trial sample concerns.', '', '', '', '508', 'Benjie Paras', '2024-04-29', '', NULL, '', '2024-04-29', '2024-05-08', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-03', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff already changed the email of Ms. Merrelyn bantugan ([email protected]) to Ms. Noriza cruz ([email protected]).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Odviar, Melody', NULL, NULL, 'ok and thank you', 'Apr', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-04-29 00:00:00', '2024-05-03 00:00:00', '2024-05-03 00:00:00', NULL, NULL),
(762, '2024-05-02', 'rated', 0, 'GP-12-343', 'Cornejo, Wenna Rose', '[email protected]', 'Production 1', 'Job Order', 'mis', 'CCTV', 'Request for review of cctv on gpi-5 saitama due to missing parts.', '', '', '', '515', 'Lemuel Semillano', '2024-05-02', '', NULL, '', '2024-05-02', '2024-05-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-03', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff assisted Ms. Wenna in reviewing the CCTV footage in GPI-5 Saitama.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-09', 'Cornejo, Wenna Rose', NULL, NULL, 'ICT staff is very knowledgeable in operating the CCTV footage. Very helpful and patience.', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-02 00:00:00', '2024-05-03 00:00:00', '2024-05-03 00:00:00', NULL, NULL),
(763, '2024-05-02', 'rated', 0, 'GP-12-343', 'Cornejo, Wenna Rose', '[email protected]', 'Production 1', 'Job Order', 'mis', 'Telephone', 'Please check telephone local 515 due to suddenly disconnecting during calls.', '', '', '', '515', 'Lemuel Semillano', '2024-05-02', '', NULL, '', '2024-05-03', '2024-05-14', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-09', 'ICT staff checked the telephone and found that the handle cord was defective.', NULL, NULL, 'May 09, 2024', NULL, NULL, 'ICT staff replaced the defective handle cord with their spare cord and it's ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-09', 'Cornejo, Wenna Rose', NULL, NULL, 'Telephone is now working properly. ', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-03 00:00:00', '2024-05-09 00:00:00', '2024-05-09 00:00:00', NULL, NULL),
(764, '2024-05-02', 'rated', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Request for internet connection to be used by japan trainees on their registration to e-travel and visit japan website (may 3, 2024 - 2-4pm)', '', '', '', '110', 'Monzon, Rio', '2024-05-02', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-05-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Provided network connection for the japan trainees. Done', 'Thank you, all users was disconnected after.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-07', 'Bornasal, Rusitha Audrey', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-03 00:00:00', '2024-05-07 00:00:00', '2024-05-07 00:00:00', NULL, NULL),
(765, '2024-05-02', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'fem', 'Others', 'To fix broken chair of the following members of parts inspection:\r\n1. Leigh cayas - broken wheels\r\n2. Joey comia & rena mogol -the chair is automatically lowered', '', '', '', '508', 'Benjie Paras', '2024-05-03', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the broken chair.\r\n1. Leigh cayas - replacement of damage wheels\r\n2. Joey comia & rena mogol - fix the height of office chair using welding activity.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-21', 'Odviar, Melody', NULL, NULL, 'ok and thank you for immediate response.', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(766, '2024-05-02', 'Done', 0, 'GP-16-476', 'Sabejon, Jinelyn', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Computer', 'Request checking of laptop due to slow performance.', 'C2106-168', '', '', '518', 'Pinpin, Cherry', '2024-05-03', '', NULL, '', '2024-05-03', '2024-05-14', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-03', 'As per checking the laptop was slowing due to low battery. ', NULL, NULL, 'May 03, 2024', NULL, NULL, 'We charge it for a while and decrease unwanted apps that cause the computer to slow. ', 'Proper charging of the unit and close not using applications ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-03 00:00:00', '2024-05-03 00:00:00', '2024-05-03 00:00:00', NULL, NULL),
(767, '2024-05-02', 'rated', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', NULL, 'fem', 'Others', 'Please check two office chairs (jofhel and jaymar). Cannot adjust.', '', '', '', '266', 'Sheryll Ramirez', '2024-05-03', '', NULL, 'OK', '2024-05-06', '2024-05-15', 'CG-0676', 'Edvir Lumagui', NULL, '2024-05-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking we found out that the hydraulic of chairs (jofhel and jaymar). is cannot repair due to damage and oil leak', 'need to replace new chair because the hydraulic is not repairable.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-10', 'Calderon, Naomi', NULL, NULL, 'For apply PRS for replacement. thanks', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(768, '2024-05-02', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Additional 220v on rework area of rbw200 feed unit (1pc)', '', '', '', '822', 'Pinpin, Cherry', '2024-05-03', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring installation of additional 1pc 220volts outlet in the table of RBW-200 line.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-06', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(769, '2024-05-03', 'cancelled', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Computer', 'Installation of microsoft teams to be use for qa meeting/discussion\r\nc2310-35 - jay mar, c2310-39 - roween, c2310-44 - jireh mae, c2312-37 - leo(suntrust)', 'C2310-35, C2310-39, C2310-44, C2312-37', '', '', '118', 'Reyes, Raymond', '2024-05-03', '', NULL, '', '2024-05-03', '2024-05-14', 'GP-17-571', 'Vivo, Felmhar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'Coordinate with the requestor and explain the need to purchase a license to install Microsoft teams. Requestor agreed to cancel the JO', '2024-05-14', NULL, 'True', 0, NULL, NULL, NULL, '2024-05-03 00:00:00', NULL, NULL, NULL, NULL),
(770, '2024-05-06', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Assist and set up audio system for zumba activity on may 8, 16, 22 and 30, 2024 at gpi 1 canteen from 4pm to 5pm', '', '', '', '191', 'Monzon, Rio', '2024-05-06', '', NULL, '', '2024-05-06', '2024-05-15', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Setup audio system and projector', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Marcilla, Lenlyn', NULL, NULL, 'Thanks for your good service', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-06 00:00:00', '2024-05-14 00:00:00', '2024-05-14 00:00:00', NULL, NULL),
(771, '2024-05-06', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Assist and set audio system for the sports activity today may 6, 2024 at gpi 1 loading area near at employees waiting area', '', '', '', '191', 'Monzon, Rio', '2024-05-06', '', NULL, '', '2024-05-06', '2024-05-15', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Set up audio system at gpi 1 laoding area', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Marcilla, Lenlyn', NULL, NULL, 'Thanks for your good service', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-06 00:00:00', '2024-05-14 00:00:00', '2024-05-14 00:00:00', NULL, NULL),
(772, '2024-05-06', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Others', 'Request to check/install/replace the emergency light and fire alarm. Please see attached file for details.', '', '', '', '381', 'Reyes, Raymond', '2024-05-06', '', NULL, '', '2024-05-08', '2024-05-17', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking of emergency light we found out that the 2 unit is already damage of transformer and the another unit is return to the original location.already replace the unit and return..', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-08', 'Jayson Torres', NULL, NULL, 'Quick Response. Thank you. ', 'May', '2024', '../upload_files/2405-0610-3307.For J.O.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(773, '2024-05-06', 'rated', 0, 'GP-13-366', 'Roque, Karen', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Computer', 'Request to check-up UPS due to not charging. Encountered non-stop alarm.', 'C2310-25', '', '', '269', 'Naungayan, Wennie', '2024-05-08', '', NULL, '', '2024-05-10', '2024-05-21', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-14', 'ICT staff checked the UPS and found that the battery needs to be replaced.', NULL, NULL, 'May 14, 2024', NULL, NULL, 'ICT staff replaced the old UPS battery with a new one and it is ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-14', 'Roque, Karen', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-10 00:00:00', '2024-05-14 00:00:00', '2024-05-14 00:00:00', NULL, NULL),
(774, '2024-05-07', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'mis', 'Others', 'To check ups of ms. Melody mine due to encounter sound.', '', '', '', '508', 'Benjie Paras', '2024-05-07', '', NULL, '', '2024-05-07', '2024-05-16', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-10', 'ICT staff checked the UPS and found that the battery needs to be replaced.', NULL, NULL, 'May 10, 2024', NULL, NULL, 'ICT staff replaced the old UPS battery with a new one and it is ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-21', 'Odviar, Melody', NULL, NULL, 'ok and thank you for response.', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-07 00:00:00', '2024-05-10 00:00:00', '2024-05-10 00:00:00', NULL, NULL),
(775, '2024-05-07', 'cancelled', 0, 'GP-16-476', 'Sabejon, Jinelyn', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Computer', 'Request to check laptop due to not power on', 'C2106-168', '', '', '518', 'Pinpin, Cherry', '2024-05-07', '', NULL, '', '2024-05-07', '2024-05-16', 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'The laptop in question appeared to be functioning normally when checked.', '2024-05-15', NULL, 'True', 0, NULL, NULL, NULL, '2024-05-07 00:00:00', NULL, NULL, NULL, NULL),
(776, '2024-05-07', 'rated', 0, 'GP-15-438', 'Tolentino, Edwin', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Others', 'Cannot transfer files to server , see attached picture location : \\192.168.5.250japanese sharedjapanese shareprod2 tech back-up2. Sdrb-260.250.24011. Sdrb-250 coin detection', '', '', '', '833', 'Naungayan, Wennie', '2024-05-08', '', NULL, '', '2024-05-10', '2024-05-21', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-05-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Checked the directory, found out that the user group JAPANESESHARED_FA is not included on the allowed access on the said directory. Changed the ownership of the whole directory to ICT Administrator account. Provided access the JAPANESESSHARED_FA group and enabled inheritance. Done', '', 0, NULL, NULL, '4', '4', 4.00, '2024-07-11', 'Tolentino, Edwin', NULL, NULL, '', 'May', '2024', '../upload_files/2405-0712-5845.cannot transfer files.jpg.jpg', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-10 00:00:00', '2024-05-10 00:00:00', '2024-05-10 00:00:00', NULL, NULL),
(777, '2024-05-07', 'rated', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Facilities', 'Correction of failed parameters of illumination (wem) in gpi plant 8 - please see attached file for more details.', '', '', '', '981-212', 'Reyes, Raymond', '2024-05-07', '', NULL, '', '2024-05-08', '2024-05-31', 'GP-22-756', 'Frank B. Apil', NULL, '2024-05-31', 'Material Request has been filed. Now waiting for materials to be purchased.', NULL, NULL, 'May 14, 2024', NULL, NULL, 'Installation of LED tube light has been completed.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Jordan, Carmela', NULL, NULL, 'J.O was conducted by PPD', 'May', '2024', '../upload_files/2405-0713-3521.WEM Failed Parameters Correction - AdminFEM (for J.O).pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(778, '2024-05-07', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Requesting for the speakers and amplifier to be used at gpi8 for biggest loser activities for the month of may', '', '', '', '191', 'Monzon, Rio', '2024-05-07', '', NULL, '', '2024-05-07', '2024-05-16', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT Staff provided an audio system for the biggest loser activities for the month of May.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-03', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-07 00:00:00', '2024-05-15 00:00:00', '2024-05-15 00:00:00', NULL, NULL),
(779, '2024-05-08', 'rated', 0, 'GP-12-345', 'Custodio, Haydee', '[email protected]', 'Production 2', NULL, 'fem', 'Facilities', 'Request to repair the flooring on gpi-5 packaging area', '', '', '', '505', 'Lisboa, Dina', '2024-05-08', '', NULL, '', '2024-05-08', '2024-05-20', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the damage flooring using epoxy A&B in packaging area.', '', 0, NULL, NULL, '4', '4', 4.00, '2024-06-10', 'Custodio, Haydee', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(780, '2024-05-08', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check caster wheel of push cart use by housekeeping at gpi-8', '', '', '', '105', 'Monzon, Rio', '2024-05-10', '', NULL, '', '2024-05-10', '2024-05-21', 'CG-2387', 'Alcala, Jansel', NULL, '2024-05-16', NULL, NULL, NULL, NULL, NULL, NULL, '>checked the wheels and we confirmed that it is damaged so we replaced it with used wheels.\r\n>work completed.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-20', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(781, '2024-05-08', 'rated', 0, 'GP-12-345', 'Custodio, Haydee', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Replacement of damage spot light at gpi 5 packaging area', '', '', '', '505', 'Lisboa, Dina', '2024-05-08', '', NULL, '', '2024-05-10', '2024-05-21', 'GP-12-356', 'Ramirez, Francisco', NULL, '2024-06-04', 'FEM personnel is not authorized/certified to work at heights to replace the busted spot light. This request is subject to perform by outside service provider.', NULL, NULL, 'May 13, 2024', NULL, NULL, 'We requested a quotation from our service provider however was too expensive. Therefore we decide include it as part of the replacement for the project with the selected contractor.', '', 0, NULL, NULL, '3', '3', 3.00, '2024-06-10', 'Custodio, Haydee', NULL, NULL, ' ', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(782, '2024-05-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check flush tank mechanism at gpi-8 fabrication female cr cubicle #'s 8,9,10 and 11', '', '', '', '105', 'Monzon, Rio', '2024-05-10', '', NULL, '', '2024-05-10', '2024-05-21', 'CG-0827', 'Mark Lawrence Lopez', NULL, '2024-05-16', NULL, NULL, NULL, NULL, NULL, NULL, 'checked the status of the flush tanks and found 1 fill valve is defective.', 'Need to replace the Fill Valve of the flush tank.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-20', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(783, '2024-05-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check flush tank mechanism at gpi-8 canteen male cr', '', '', '', '105', 'Monzon, Rio', '2024-05-10', '', NULL, '', '2024-05-10', '2024-05-29', 'CG-2387', 'Alcala, Jansel', NULL, '2024-05-29', '>checked the status of the flush tank and found that the float valve is broken.\r\n>need to purchase float valve.', 'waiting materials of Fil valve from gp1supplies to gpi-8', 'Fill valve replaced. Work completed\r\n', 'May 16, 2024', 'May 27, 2024', 'May 29, 2024', 'done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(784, '2024-05-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check low water supply at gpi-8 fabrication female cr', '', '', '', '105', 'Monzon, Rio', '2024-05-10', '', NULL, '', '2024-05-10', '2024-05-25', 'GP-11-301', 'Magat, Roel', NULL, '2024-05-25', 'To be scheduled for checking.', 'already check gate valve already worn out need to outsource replacement of 2"gate valve .', NULL, 'May 16, 2024', 'May 25, 2024', NULL, 'for replacement of 2" gate valve. Request of quotation 0f sub contractors for replacement. ', 'for replacement of 2" gate valve. Request of quotation 0f sub contractors for replacement. ', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(785, '2024-05-09', 'Done', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', 'Job Order', 'mis', 'Others', 'Request to install cube-pdf for editing pdf files. (total of 6 computers)\r\n3 for pm (m' she / m' chona / jonna)\r\n3 for impex (m' mj / sherelyn / roger)', '', '', '', '266', 'Sheryll Ramirez', '2024-05-14', '', NULL, '', '2024-05-15', '2024-05-24', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Done installing cube pdf on 6 computers of PM and Impex. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-15 00:00:00', '2024-05-18 00:00:00', '2024-05-18 00:00:00', NULL, NULL),
(786, '2024-05-09', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', 'Job Order', 'mis', 'Others', 'The task bar on my computer always hang-up when left for a few moment. And it took 3-5 minutes before it works again after continuous clicking and refreshing my desktop. Kindly check please if this is normal or not.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-05-09', '', NULL, '', '2024-05-10', '2024-05-21', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-20', 'When the ICT staff checked the computer of Mr. Rolle, they found that the PC was fine.', NULL, NULL, 'May 20, 2024', NULL, NULL, 'The ICT team will arrange an instructional session on how to fix the taskbar that is hang-up.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Rolle, Ryan', NULL, NULL, 'The problem still occurs...', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-10 00:00:00', '2024-05-20 00:00:00', '2024-05-20 00:00:00', NULL, NULL),
(787, '2024-05-10', 'rated', 0, 'GP-08-214', 'Armillo, Rey', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Others', 'Restoration of files on \\192.168.5.250 japanese shared -> japanese share->temp files->hirooka->daily output 2024->may 2024.', '', '', '', '821', 'Naungayan, Wennie', '2024-05-10', '', NULL, 'Kindly attached problem report regarding this matter', '2024-05-13', '2024-05-22', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-05-16', NULL, NULL, NULL, NULL, NULL, NULL, 'restored, done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-04', 'Armillo, Rey', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-13 00:00:00', '2024-05-16 00:00:00', '2024-05-16 00:00:00', NULL, NULL),
(788, '2024-05-13', 'cancelled', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Title link sheduled date of viewing remarks\r\n1 cervical cancer https://youtube.com/shorts/qruavrjk5as?si=wbk7-gugzzedgfsn\r\nmay 16-17, 2024 \r\n2 thyroid https://youtu.be/kskypm6se_k?si=6rrhjmz6y_bntgxi\r\nmay 16-17, 2024 will be cut at 4:25\r\n3 hypertension https://youtu.be/wh-rqoaij_s?si=s7vkmiiop68dlcgv\r\nmay 16-17, 2024 will be cut at 3:40', '', '', '', '191', 'Monzon, Rio', '2024-05-13', '', NULL, '', '2024-05-13', '2024-05-22', 'GP-17-571', 'Vivo, Felmhar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'The link provided do not proceed to a youtube video. Seems like the video is not available anymore. Please submit another request and find another videos. Thank you', '2024-05-23', NULL, 'True', 0, NULL, NULL, NULL, '2024-05-13 00:00:00', NULL, NULL, NULL, NULL),
(789, '2024-05-13', 'Done', 0, 'GP-11-289', 'Margie Umali', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Printer', 'Request to install printer for our laptop (prod. Supplies)', '', '', '', '112', 'Pinpin, Cherry', '2024-05-13', '', NULL, '', '2024-05-14', '2024-05-23', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-14', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer (Apeos 4570).', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-14 00:00:00', '2024-05-14 00:00:00', '2024-05-14 00:00:00', NULL, NULL),
(790, '2024-05-14', 'rated', 0, 'GP-18-606', 'Villanroque, Nemfa', '[email protected]', 'Purchasing', NULL, 'fem', 'Others', 'Request to repair my office chair. The wheel already pull-out and the back support is wiggle.', '', '', '', '158', 'Semillano, Lyziel', '2024-05-14', '', NULL, '', '2024-05-14', '2024-05-23', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-14', NULL, NULL, NULL, NULL, NULL, NULL, 'weld the portion damage and remove the hair fall to the wheels of chair.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-14', 'Villanroque, Nemfa', NULL, NULL, 'Thank you for the quick response. Good Job!', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(791, '2024-05-14', 'cancelled', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Network', 'Request website access', '', '', '', '981-212', 'Reyes, Raymond', '2024-05-14', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-1407-5224.PCO-SO website need access.xlsx.xlsx', 'Please complete the details of request like what website you need to access and reason.', '2024-05-14', 'Nemedez, Nathan', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(792, '2024-05-14', 'rated', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', NULL, 'fem', 'Others', 'Check office chair in supplies area (2 pcs)', '', '', '', '112', 'Pinpin, Cherry', '2024-05-14', '', NULL, '', '2024-05-14', '2024-05-23', 'CG-0676', 'Edvir Lumagui', NULL, '2024-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking the office chair in supplies area 2pcs. chair the cylinder is damage.', 'For recommendation Replacement of new 2pcs. office chair at Production supplies.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-15', 'Pagatpat, Annalyn', NULL, NULL, 'VERY SATISFIED', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(793, '2024-05-14', 'rated', 0, 'GP-13-366', 'Roque, Karen', '[email protected]', 'Production 2', NULL, 'fem', 'Others', 'Requesting for checking of office chair for replacement', '', '', '', '269', 'Naungayan, Wennie', '2024-05-14', '', NULL, '', '2024-05-14', '2024-05-23', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-15', NULL, NULL, NULL, NULL, NULL, NULL, 'After checking of chair we found out the cylinder of chair is not functioning and the back rest is already damage. for replacement of new chair because the cylinder damage is not referable. ', 'for replacement of new chair.', 0, NULL, NULL, '5', '5', 5.00, '2024-07-11', 'Roque, Karen', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(794, '2024-05-14', 'rated', 1, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'mis', 'Relayout', 'Re-lay-out/transfer of location of computer due its current location will be use for parts/rack relocation from gpi6', '', '', '', '381', 'Sheryll Ramirez', '2024-05-14', '', NULL, '', '2024-05-15', '2024-05-24', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Already scheduled network connection support to the relocation of computer as per location requested by the department', 'Done JO', 0, NULL, NULL, '5', '5', 5.00, '2024-06-14', 'Nacor Jr., Lorie', NULL, NULL, 'OK', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-15 00:00:00', '2024-06-11 08:42:31', '2024-06-11 08:42:31', NULL, '2024-06-20 07:49:02'),
(795, '2024-05-14', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', '1.remove secondary light at gpi6 (sdrb100 area) and gpi9 (rbg100 area)\r\n2.install secondary light at gpi 10 (sdrb100 area) and gpi 9 (rbw-200 area)\r\n3.install exhaust fan at gpi 9 cr. 4.install electrical wiring at gpi9 second floor.', '', '', '', '427', 'Sheryll Ramirez', '2024-05-14', '', NULL, '', '2024-05-16', '2024-05-25', 'GP-12-356', 'Ramirez, Francisco', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed secondary light at GPI6 and in GPI9\r\nInstalled secondary light in GPI10 and GPI9\r\nInstalled electrical wiring at GPI9 second floor.\r\nFor exhaust fan to be installed on 6-4-2024', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-1410-1459.WH LAYOUT.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(796, '2024-05-14', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Job Order', 'mis', 'Relayout', '1.transfer 3 computer from gpi6 to gpi 9\r\n2.transfer vmi computer (gpi1) to gpi 6\r\n3. Transfer computer (michael barcena) from gpi 10 to gpi 1 (vmi area)', '', '', '', '427', 'Sheryll Ramirez', '2024-05-14', '', NULL, '', '2024-05-15', '2024-05-24', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Transferring the computers to their new station was done, and they are ready to use again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-1410-2225.WH LAYOUT.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-15 00:00:00', '2024-05-21 00:00:00', '2024-05-21 00:00:00', NULL, NULL),
(797, '2024-05-14', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', NULL, 'fem', 'Others', 'To check 3 pcs chair.oscar,dhigs and she(production support office and tools area. Unbalance,cylinder problem and broken handle', '', '', '', '822', 'Pinpin, Cherry', '2024-05-14', '', NULL, '', '2024-05-14', '2024-05-23', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-05-15', 'Upon checking the 3pcs chair in production support office and tools area is for replacement because the damage of the 3 pcs. office chair is cylinder.', NULL, NULL, 'May 15, 2024', NULL, NULL, 'Recommend for Replacement 3pcs. chair.', 'For replacement new 3pcs. office chair cause of damage cylinder.', 0, NULL, NULL, '5', '5', 5.00, '2024-05-15', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(798, '2024-05-14', 'rated', 0, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Set up audio system on may 14, 2024 at loading area at 4:00pm', '', '', '', '191', 'Monzon, Rio', '2024-05-14', '', NULL, '', '2024-05-15', '2024-05-24', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Done set up on may 14 2024 that was used on zumba. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Marcilla, Lenlyn', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-15 00:00:00', '2024-05-18 00:00:00', '2024-05-18 00:00:00', NULL, NULL),
(799, '2024-05-14', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check clogged cubicle #13 at gpi-5 old female cr', '', '', '', '105', 'Monzon, Rio', '2024-05-21', '', NULL, '', '2024-05-21', '2024-05-30', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Removed the toilet bowl and de-clogged it. Then install again the toilet bowl in cubicle #13 at old female C.R', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(800, '2024-05-14', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', NULL, 'fem', 'Electrical', 'Check Electric fan reverse air blow (GPI 1 Packaging Area)', '', '', '', '825', 'Naungayan, Wennie', '2024-05-27', '', NULL, '', '2024-05-27', '2024-06-05', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'replace fan blade. test run ok.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-28', 'Rojas, Noemi', NULL, NULL, 'Good job Thank you for immediate response', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(801, '2024-05-15', 'rated', 0, 'GP-07-204', 'Sarte, Emyria', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Computer', 'Request to check cpu due to encountered malfunction (assigned to ms. Donalyn robledo)', 'C2210-045', '', '', '314', 'Naungayan, Wennie', '2024-05-15', '', NULL, '', '2024-05-15', '2024-05-24', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-15', 'ICT staff checked the system unit and discovered that the system units Solid State Drive (SSD) was faulty.', NULL, NULL, 'May 15, 2024', NULL, NULL, 'ICT staff replaced the defective SSD with a new one. Fortunately, the old files have been recovered.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-11', 'Sarte, Emyria', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-15 00:00:00', '2024-05-15 00:00:00', '2024-05-15 00:00:00', NULL, NULL),
(802, '2024-05-15', 'rated', 1, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Others', 'Benq digital projector model#:ms506 for checking due to malfunction.', '', '', '', '822', 'Pinpin, Cherry', '2024-05-15', '', NULL, '', '2024-05-15', '2024-05-24', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-19', 'Infosec member checked the status of the projector. Upon checking, the lamp is already malfunctioning', 'The said projector was frequently used in Training of Production members and already more than 5 years. ', NULL, 'June 13, 2024', 'June 19, 2024', NULL, 'ICT recommends to purchase new projector as replacement of the existing unit.', 'This JO should be attached as supporting reference when processing to purchase a new projector. Please coordinate with GS for the quotation of a projector.', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-15 00:00:00', '2024-06-13 15:53:25', '2024-06-19 09:29:58', NULL, '2024-06-27 00:00:04'),
(803, '2024-05-15', 'cancelled', 0, 'GP-11-304', 'Mojica, Richard', '[email protected]', 'Parts Production', 'Job Order', 'mis', 'Telephone', 'Repair of dc adaptor wireless phone local 118', '', '', '', '118108', 'Sapalasan, Eloisa', '2024-05-24', '', NULL, '', '2024-05-25', '2024-06-05', 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-1511-5729.New Microsoft Excel Worksheet (2).xlsx.xlsx', 'According to Mr. Richard, the wireless phones DC adaptor is now working properly again.', '2024-06-05', NULL, 'True', 0, NULL, NULL, NULL, '2024-05-25 00:00:00', NULL, NULL, NULL, NULL),
(804, '2024-05-16', 'rated', 1, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Others', 'Request access to japanese shared to view and copy standard manual on qa(audit&training).', '', '', '', '822', 'Pinpin, Cherry', '2024-05-16', '', NULL, '', '2024-05-18', '2024-05-29', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to Japanese Shared', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-13', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-18 00:00:00', '2024-06-11 14:41:35', '2024-06-11 14:41:35', NULL, '2024-06-20 07:49:02'),
(805, '2024-05-17', 'rated', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Job Order', 'mis', 'Others', 'Request to install cube application for ecn and purchases (consolidation, split and delete pdf data)', '', '', '', 'loc. 152', 'Semillano, Lyziel', '2024-05-17', '', NULL, '', '2024-05-18', '2024-05-29', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-23', 'ICT staff successfully installed the application "CUBEPDF"', NULL, NULL, 'May 23, 2024', NULL, NULL, 'ICT staff instruct them on how to use the said application.', '', 0, NULL, NULL, '4', '5', 4.50, '2024-05-23', 'Desacula, Genny', NULL, NULL, 'satisfied', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-18 00:00:00', '2024-05-23 00:00:00', '2024-05-23 00:00:00', NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(806, '2024-05-17', 'rated', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'Request an updated id picture of the attached eprt gpi 2,3,7,9 and all plant workers representative committee, this is to make formal and uniform the picture pose in our organizational chart.', '', '', '', '381', 'Lontoc, Arlene', '2024-05-17', '', NULL, '', '2024-05-20', '2024-05-29', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Email all the pictures requested.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-21', 'Jayson Torres', NULL, NULL, 'Prompt response on my request', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-20 00:00:00', '2024-05-20 00:00:00', '2024-05-20 00:00:00', NULL, NULL),
(807, '2024-05-17', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'For checking of mouse (not functioning)', '', '', '', '118', 'Lontoc, Arlene', '2024-05-17', '', NULL, '', '2024-05-18', '2024-05-29', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace new mouse :) \r\n', '', 0, NULL, NULL, '4', '4', 4.00, '2024-05-23', 'Dela Cruz, Jaymar', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-18 00:00:00', '2024-05-23 00:00:00', '2024-05-23 00:00:00', NULL, NULL),
(808, '2024-05-20', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', 'Job Order', 'mis', 'Printer', 'Request connection of computer c2402-5 to printer canon 6030 in gpi-10', '', '', '', '413', 'Sheryll Ramirez', '2024-05-20', '', NULL, '', '2024-05-24', '2024-06-04', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-05', 'Florindo, Eric', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-24 00:00:00', '2024-05-27 00:00:00', '2024-05-27 00:00:00', NULL, NULL),
(809, '2024-05-20', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', 'Job Order', 'mis', 'Network', 'Request connection to euc of computer c-2402-5', '', '', '', '413', 'Sheryll Ramirez', '2024-05-20', '', NULL, '', '2024-05-24', '2024-06-04', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully put the EUC link on computer C2402-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-05', 'Florindo, Eric', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-24 00:00:00', '2024-05-27 00:00:00', '2024-05-27 00:00:00', NULL, NULL),
(810, '2024-05-20', 'cancelled', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'To correct 2024 gpi 5 wem findings (please see attached)', '', '', '', '519', 'Lontoc, Arlene', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-2013-2628.WEM GPI 5 Job Order (Canteen, Prod.office,Impex office).pdf', 'for re-upload of correct attachment', '2024-05-20', 'Lontoc, Arlene', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(811, '2024-05-20', 'cancelled', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Others', 'Can i request an updated id picture of the attached 5s committee organizational chart, this is to make formal and uniform the picture pose in our organizational chart.', '', '', '', '120', 'Lontoc, Arlene', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'to upload attachment', '2024-05-20', 'Lontoc, Arlene', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(812, '2024-05-20', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'Can i request an updated id picture of the attached 5s committee organizational chart, this is to make formal and uniform the picture pose in our organizational chart.', '', '', '', '120', 'Lontoc, Arlene', '2024-05-20', '', NULL, '', '2024-05-20', '2024-05-29', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Email all the pictures requested.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-20', 'Joya, Renan', NULL, NULL, 'Thank you for fastest action', 'May', '2024', '../upload_files/2405-2013-3509.G11OC21-RE00-5S Committee Org Chart.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-20 00:00:00', '2024-05-20 00:00:00', '2024-05-20 00:00:00', NULL, NULL),
(813, '2024-05-20', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Electrical', 'Request replacement of broken fan blade of iwata air cooler at GPI-10.(asset code 01199)', '', '', '', '413', 'Sheryll Ramirez', '2024-05-28', '', NULL, '', '2024-05-29', '2024-06-07', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-30', NULL, NULL, NULL, NULL, NULL, NULL, 'replaced damage fan blade. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Florindo, Eric', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(814, '2024-05-20', 'rated', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Request cover for pvc pipe at GPI-10. Near telephone local 414.to avoid damage by jacklift..', '', '', '', '413', 'Sheryll Ramirez', '2024-05-28', '', NULL, '', '2024-05-29', '2024-06-07', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-05-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabricate barrier for pvc pipe using scrap metals then put caution tape around the barrier.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Florindo, Eric', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(815, '2024-05-20', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check fill valve of cubicle #1 at gpi-1 old female cr', '', '', '', '105', 'Monzon, Rio', '2024-05-21', '', NULL, '', '2024-05-21', '2024-05-30', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace new fill valve due to continues water leak. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(816, '2024-05-21', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Request for projector, mic and speaker for safe motherhood and family planning seminar on may 21, 2024', '', '', '', '191', 'Monzon, Rio', '2024-05-21', '', NULL, '', '2024-05-24', '2024-06-04', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Done set up ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-03', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-24 00:00:00', '2024-06-03 00:00:00', '2024-06-03 00:00:00', NULL, '2024-06-20 07:49:02'),
(817, '2024-05-21', 'rated', 0, 'GP-12-322', 'Alvarez, Emil', '[email protected]', 'Purchasing', NULL, 'fem', 'Others', 'Repair of office chair (broken bracket)', '', '', '', '151', 'Semillano, Lyziel', '2024-05-21', '', NULL, '', '2024-05-21', '2024-05-30', 'CG-0676', 'Edvir Lumagui', NULL, '2024-05-22', NULL, NULL, NULL, NULL, NULL, NULL, 'welding the damage metal base of chair and assemble.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-28', 'Alvarez, Emil', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(818, '2024-05-21', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'To check faucet connector with leak at gpi-2 female cr', '', '', '', '105', 'Monzon, Rio', '2024-05-21', '', NULL, '', '2024-05-21', '2024-05-30', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'upon checking leak at GPI-2 cr is over all replacement (flexible hose, fuacet connector, valve, lavatory faucet).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-31', 'Sangalang, Elaine', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(819, '2024-05-22', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnect electrical connection on gpi-5(supplies) and connect to gpi-7(supplies).', '', '', '', '822', 'Pinpin, Cherry', '2024-05-22', '', NULL, '', '2024-05-22', '2024-05-31', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical supply in production supplies and re-layout the production supplies. Then remove the 2pcs table and transfer to GPI-7 building.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-29', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(820, '2024-05-22', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Gpi-5 Supplies re-lay-out', '', '', '', '822', 'Pinpin, Cherry', '2024-05-22', '', NULL, '', '2024-05-22', '2024-05-31', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings and re-layout the production supplies at GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-23', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'May', '2024', '../upload_files/2405-2207-5417.re layout.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(821, '2024-05-22', 'rated', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', 'Job Order', 'mis', 'Others', 'Ng ups change battery', '', '', '', '519', 'Lemuel Semillano', '2024-05-22', '', NULL, '', '2024-05-24', '2024-06-04', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-24', 'ICT staff checked the UPS and found that the battery needs to be replaced.', NULL, NULL, 'May 24, 2024', NULL, NULL, 'ICT staff replaced the old UPS battery with a new one and it is ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-05', 'Mojica, Jonar', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-24 00:00:00', '2024-05-24 00:00:00', '2024-05-24 00:00:00', NULL, NULL),
(822, '2024-05-22', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', NULL, 'fem', 'Others', 'To unscrew the pull test gauge, to check only the hydraulic oil(urgent)', '', '', '', '508', 'Benjie Paras', '2024-05-22', '', NULL, '', '2024-05-22', '2024-05-31', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-05-23', NULL, NULL, NULL, NULL, NULL, NULL, 'The job order request did not perform by FEM personnel due to work load schedule, parts inspection personnel will perform it. ( job order request is cancelled)', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Odviar, Melody', NULL, NULL, 'Ok and thank you', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(823, '2024-05-22', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Request for installation of additional lights with separate switch in admin supplies area, replacement of led light to higher lumens in accounting area (ms. Caela's table), installation of secondary light in check sheet preparation area and replacement/cleaning of led light in sdrb line.', '', '', '', '120', 'Lontoc, Arlene', '2024-05-22', '', NULL, '', '2024-05-24', '2024-06-04', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-05-27', NULL, NULL, NULL, NULL, NULL, NULL, 'installation of additional set of LED lights in admin supplies area also wiring and replaced LED lights to higher lumens in accounting area.(Ms. Caela's table) install and wiring of secondary lights in check sheet preparation area at SDRB line in GPI 1. test ok.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-28', 'Joya, Renan', NULL, NULL, 'Thank you for immediate action and smooth coordination ', 'May', '2024', '../upload_files/2405-2213-2210.GPI 1 WEM Action Report plan.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(824, '2024-05-22', 'cancelled', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', NULL, 'mis', 'Others', 'Request copy of updated pictures for organizational chart(ems and eprt) and emergency contact number', '', '', '', '981-212', 'Lontoc, Arlene', '2024-05-22', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '../upload_files/2405-2214-4210.request for picture.xlsx.xlsx', 'wrong attachment', '2024-05-22', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(825, '2024-05-22', 'rated', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'Request copy of updated pictures for organizational charts (ems / eprt) and emergency contact number', '', '', '', '981-212', 'Lontoc, Arlene', '2024-05-22', '', NULL, '', '2024-05-24', '2024-06-04', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Send all copies of the requested pictures.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Jordan, Carmela', NULL, NULL, 'Quick service', 'May', '2024', '../upload_files/2405-2214-4851.Request Picture.xlsx.xlsx', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-24 00:00:00', '2024-05-30 00:00:00', '2024-05-30 00:00:00', NULL, '2024-06-20 07:49:02'),
(826, '2024-05-22', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', NULL, 'mis', 'Others', 'Set up projector and teams for pap smear awareness & screening tomorrow may 23-24, 2024 @ conference 4.', '', '', '', '191', 'Monzon, Rio', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-04', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Done set up on may 23 and 24 ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'JANELLA MAE FRANCISCO', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-06-04 13:41:03', '2024-06-06 12:07:20', '2024-06-06 12:07:20', NULL, '2024-06-20 07:49:02'),
(827, '2024-05-22', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', NULL, 'fem', 'Relayout', 'Gpi-7 supplies line re-lay-out transfer near on rbg line.', '', '', '', '822', 'Pinpin, Cherry', '2024-05-22', '', NULL, '', '2024-05-24', '2024-06-04', 'CG-0676', 'Edvir Lumagui', NULL, '2024-05-28', NULL, NULL, NULL, NULL, NULL, NULL, 'Gpi-7 supplies line re-lay-out transfer near on rbg line. DONE.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-29', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'May', '2024', '../upload_files/2405-2215-3634.GPI-7 SUPPLIES.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(828, '2024-05-23', 'rated', 1, 'GP-23-801', 'Eunice Linde', '[email protected]', 'Purchasing', 'Job Order', 'mis', 'Others', 'Jo request for the 18 members experiencing problem related to the language pack of the operating system.', '', '', '', '158', 'Semillano, Lyziel', '2024-05-23', '', NULL, '', '2024-05-24', '2024-06-04', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-01', 'On going check due to large amount of system changes', NULL, NULL, 'June 11, 2024', NULL, NULL, 'Reinstalled Langauge pack for Japanese to all the computers and Reinstall GSTAR-M. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-01', 'Eunice Linde', NULL, NULL, '', 'May', '2024', '../upload_files/2405-2315-5820.G117.xlsx.xlsx', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-24 00:00:00', '2024-06-11 13:23:16', '2024-07-01 10:18:35', NULL, NULL),
(829, '2024-05-24', 'c', 1, 'GP-23-801', 'Eunice Linde', '[email protected]', 'Purchasing', 'Job Order', 'mis', 'Others', 'Jo request for the 18 members experiencing problem related to the language pack of the operating system. One member added on the list (for Mr. Nerio Gelle).', '', '', '', '158', 'Semillano, Lyziel', '2024-05-24', '', NULL, '', '2024-05-24', '2024-06-04', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Performed troubleshooting on system error encountered in G-StarM system.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-01', 'Eunice Linde', NULL, NULL, '', 'May', '2024', '../upload_files/2405-2407-4323.PU PT List Of Member.xlsx.xlsx', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-24 00:00:00', '2024-07-01 10:50:48', '2024-07-01 13:31:30', NULL, NULL),
(830, '2024-05-24', 'rated', 1, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'I would like to request to access this site : https://reports.dole.gov.ph/data_privacy_notice .this will be use for monthly submission of work accident/illnesses report (wair) to dole.', '', '', '', '381', 'Lontoc, Arlene', '2024-05-24', '', NULL, '', '2024-05-27', '2024-06-01', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access for the https://reports.dole.gov.ph', '', 0, NULL, NULL, '1', '1', 1.00, '2024-07-11', 'Jayson Torres', NULL, NULL, 'Still cant access the website ', 'May', '2024', '../upload_files/2405-2413-0211.DOLE ERS SITE.pdf', NULL, NULL, NULL, 'True', 0, NULL, 'Normal', NULL, '2024-05-27 00:00:00', '2024-06-10 15:43:42', '2024-06-10 15:43:42', NULL, '2024-06-20 07:49:02'),
(831, '2024-05-27', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Software Issues', 'Computer hangs when she opens PDF ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-05-27', '2024-06-01', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-27', 'The ICT staff observed that the computer hung while opening a PDF file.', NULL, NULL, 'May 27, 2024', NULL, NULL, 'The ICT staff attempted to resolve the issue by uninstalling the current PDF application (Adobe Acrobat) and replacing it with another (Adobe Reader).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-04', 'Rojas, Noemi', NULL, NULL, 'Good job', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-05-27 00:00:00', '2024-05-27 13:00:23', '2024-05-27 00:00:00', NULL, NULL),
(832, '2024-05-27', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'System Issues', 'Unnecessary approver appear on record of review.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-05-27', '2024-06-01', 'GP-23-822', 'Christian John Lopez', NULL, '2024-05-27', 'Checking the process of reported problem in the G-RPIS by demonstrating the actions taken when encountering the error.', 'Fixing the issue of duplication of data getting in viewing Document Reviewee by adding an additional WHERE CLAUSE of Document No and ECN number to ensure the data accuracy it fetch.', 'Verify if the error has been resolved by repeating the same process again.', 'May 27, 2024', 'May 27, 2024', 'May 27, 2024', 'The error has been fixed in Purchasing Requestor account.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-05-27 00:00:00', '2024-05-27 13:29:37', '2024-05-27 00:00:00', NULL, NULL),
(833, '2024-05-24', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', 'Job Order', 'mis', 'Others', 'There is really someting wrong with the g-rpis, many times i filed and ecn and the latest is today with ecn no.s20987 but again, it is not successfully given a document number after saying by the system that it was successful, but it isnt really successful.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-05-24', 'Please check.', NULL, '', '2024-05-25', '2024-06-05', 'GP-23-822', 'Christian John Lopez', NULL, '2024-05-28', 'Checking the structure of G-RPIS code for requestor account to find the faulty query or process.', 'Re-construct the process of incrementation of document number since theres and error on it.', 'Changing of logics on each current procedures by adding additional condition on it also edit the structure of table in accepting reason for revision to accept apostrophe in each comment.', 'May 27, 2024', 'May 27, 2024', 'May 27, 2024', 'The problem regarding uploading excel and pdf document form in G-RPIS has been resolve as per feedback by Sir Ryan this morning.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Rolle, Ryan', NULL, NULL, 'Thank you so much!!!', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, '2024-05-25 00:00:00', '2024-05-27 09:15:44', '2024-05-28 00:00:00', NULL, '2024-06-20 07:49:02'),
(834, '2024-05-28', 'Done', 0, 'GP-16-467', 'Ma. Jesusa Garcia', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Hardware Issues', 'NO POWER OF SYSTEM UNIT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-28', NULL, NULL, NULL, NULL, NULL, NULL, 'Change Power Supply', 'Already Replace the power Supply', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Hardware Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-05-28 08:05:03', '2024-05-28 08:05:03', '2024-05-28 08:05:03', NULL, '2024-06-20 07:49:02'),
(835, '2024-05-28', 'cancelled', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Additional light for crating area located in gpi-5.', '', '', '', '263', 'Sheryll Ramirez', '2024-05-28', '', NULL, '', '2024-05-29', '2024-06-07', 'GP-12-356', 'Ramirez, Francisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'Included in WEM failed results c/o Ms Micah', NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(847, '2024-05-29', 'Done', 0, 'GP-18-634', 'Due, Raymond', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Hardware Issues', 'On May 10, 2024, Mr. Due expressed concern about his computer entering BIOS setup.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-29', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-05-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon investigation, Mr. Yuki, an ICT staff member, checked the system unit and found that the SSD was damaged. The ICT personnel pulled the computer and installed a new SSD, yet were unsuccessful in retrieving the previous files.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Hardware Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-05-29 08:23:05', '2024-05-29 08:23:05', '2024-05-29 08:23:05', NULL, '2024-06-20 07:49:02'),
(859, '2024-05-30', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'System Issues', 'System Name: RPIS\nDetails: Error in viewing document. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-05-30', '2024-06-06', 'GP-23-822', 'Christian John Lopez', NULL, '2024-05-30', 'I review the concern by doing the same process they do when viewing a document using PRODUCTION STAFF account.', 'Upon identifying the error that occurred during the process i fix the problem in back end of the code to result the faulty function.', NULL, 'May 30, 2024', 'May 30, 2024', NULL, 'Since the faulty is the viewer account doesnt have the right credentials to view or get the specific document in the index search and table. After the code is fix the process can work again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-05-30', 'Gonzales, Digna', NULL, NULL, 'very good', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-05-30 09:15:00', '2024-05-30 09:15:43', '2024-05-30 00:00:00', NULL, '2024-06-20 07:49:02'),
(860, '2024-05-30', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others', 'Request to design a programme layout and invitation for Business Conference 2024', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Design a programme layout with 3 columns and back-to-back format, location guide and google map qr code. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others', 'Low Priority', 'Cedrick James M. Orozo', '2024-05-30 15:30:00', '2024-05-30 15:30:00', '2024-05-30 15:30:00', NULL, '2024-06-20 07:49:02'),
(861, '2024-05-30', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others', 'Design a programme layout, digital invitation and thank you card for upcoming 7th annual business conference. Add location or google map qr code at the programme layout and invitation. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-05-31', '2024-06-07', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-05-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Designed the programme and thank you card using canva and sent them to the requestors. Revised if there are some revisions as well. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others', 'Low Priority', 'Cedrick James M. Orozo', '2024-05-31 13:13:00', '2024-05-31 13:43:01', '2024-05-31 14:13:00', NULL, '2024-06-20 07:49:02'),
(862, '2024-05-24', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', NULL, 'fem', 'Facilities', 'Repair of water leakage of gpi 8 canteen lavatory faucet.', '', '', '', '105', 'Monzon, Rio', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-19', 'CG-2387', 'Alcala, Jansel', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'replaced the defective faucet.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dulce, Rinalyn', NULL, NULL, '', 'May', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(863, '2024-05-27', 'rated', 0, 'GP-06-181', 'Rolle, Ryan', '[email protected]', 'Parts Production', NULL, 'fem', 'Others', 'Kindly repair broken door knob at office area near conference room.', '', '', '', '105', 'Sapalasan, Eloisa', '2024-06-18', '', NULL, '', '2024-06-19', '2024-06-28', 'GP-22-756', 'Frank B. Apil', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Tightening of the loose screw of the door knob.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Rolle, Ryan', NULL, NULL, 'Thank you very much!!!', 'May', '2024', '../upload_files/2405-2708-0237.Broken Door knob - Office Area.jpg.jpg', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(864, '2024-05-28', 'cancelled', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', NULL, 'fem', 'Facilities', 'Additional light for crating area located in gpi-5.', '', '', '', '263', 'Sheryll Ramirez', '2024-05-28', '', NULL, '', '2024-05-29', '2024-06-07', 'GP-12-356', 'Ramirez, Francisco', NULL, NULL, '1. Waiting to purchase the materials needed.', NULL, NULL, 'May 31, 2024', NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'May', '2024', '', 'Included in WEM Failed Results', NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(865, '2024-05-31', 'Done', 0, 'GP-17-541', 'Barron, Sherilyn', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Data Issues (Loss, Corrupted)', 'The file from \\192.168.5.250productionPRODSUPPORTPRODUCTION SUPPORT STAFFPRODUCTION SUPPORT (TOOLS)MONITORING OF PURCHASE ITEMS 2INVENTORY(Safety Stock )Tools MonitoringTOOLS MONITORING 2023-2024 was changed and asked for a restoration.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-03', '2024-06-08', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Cannot be restored. no changes were made on the file. even on other versions', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Data Issues (Loss, Corrupted)', 'High Priority', 'Kevin Roy Marero', '2024-06-03 08:39:27', '2024-06-06 15:21:53', '2024-06-06 15:21:53', NULL, '2024-06-20 07:49:02'),
(866, '2024-05-31', 'rated', 0, 'GP-16-489', 'Michelle Lamera', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Hardware Issues', 'Digicam of production technology not working properly ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-31', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-05-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Digicam was reset and still not working properly. ', 'we recommends to bring on service provider due to ICT is not capable to troubleshoot the unit. ', 0, NULL, NULL, '5', '5', 5.00, '2024-06-06', 'Michelle Lamera', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-05-31 10:01:00', '2024-05-31 10:20:18', '2024-05-31 12:24:07', NULL, '2024-06-20 07:49:02'),
(867, '2024-06-03', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check exhaust fan at gpi-5 old female cr', '', '', '', '105', 'Monzon, Rio', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-21', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-06-21', 'Need to replace the damage exhaust fan unit.', NULL, NULL, 'June 07, 2024', NULL, NULL, 'Purchase of exhaust fan unit and install it to the wall of old female C.R', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-25', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(868, '2024-06-03', 'rated', 0, 'GP-12-359', 'Tamayo, Julius Cezar', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Electrical', 'Change of convenient outlet to universal outlet', '', '', '', '524', 'Sheryll Ramirez', '2024-06-03', '', NULL, '', '2024-06-04', '2024-06-13', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Replaced the convenience outlet by universal outlet into the extension wire.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-25', 'Tamayo, Julius Cezar', NULL, NULL, 'good', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(869, '2024-06-03', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Electrical', 'Additional flourescent bulbs at gpi3 small parts area', '', '', '', '381', 'Sheryll Ramirez', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-13', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'FEM install and wirings 4 sets of LED lights with fixture and reflector, also use scrap plastic molding.\r\ntest lights ok.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-14', 'Nacor Jr., Lorie', NULL, NULL, 'OK', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(870, '2024-06-03', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Broken tiles on flooring of gpi2 office for repair', '', '', '', '381', 'Sheryll Ramirez', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-13', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-14', 'After checking of job order we found out the tiles is detached and need to fix and need purchase adhesive cement. ', NULL, NULL, 'June 05, 2024', NULL, NULL, 'clean tiles flooring then install and fix 3 pcs. of tiles.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-08', 'Nacor Jr., Lorie', NULL, NULL, 'OK', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(871, '2024-06-03', 'rated', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Electrical', 'To correct 2024 gpi 5 wem findings (please see attached)', '', '', '', '519', 'Reyes, Raymond', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-26', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-06-26', 'Already request electrical materials for additional lightings for failed WEM result last MAY 24, 2024.', NULL, NULL, 'June 11, 2024', NULL, NULL, '1. Installation of 1pc fixture with LED light into the table of crating office.\r\n2. Installation of 6pcs fixtures with LED lights into the ceiling of canteen cashier area.\r\n3. Installation of 5pcs fixtures with LED lights into the ceiling of production and coordinators area. ( All additional lighting fixtures is pass into the standard of WEM illumination).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-26', 'Alvarez, Krizel Micah Anne', NULL, NULL, 'good', 'Jun', '2024', '../upload_files/2406-0312-5735.WEM GPI 5 Job Order (Canteen, Prod.office,Impex office).pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(872, '2024-06-03', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'System Issues', 'Error in re-uploading PDF attachment in RPIS.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'GP-23-822', 'Christian John Lopez', NULL, '2024-06-04', 'Checking the process of reported problem in the G-RPIS by demonstrating the actions taken when encountering the error.', 'Fixing the issue of editing documents details such as replacement of PDF & XLS files in the current document filled for approval.', 'Verify if the error has been resolved by repeating the same process again.', 'June 04, 2024', 'June 04, 2024', 'June 04, 2024', 'The error has been fixed in Purchasing Requestor account.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-04 06:59:56', '2024-06-04 07:17:07', '2024-06-04 07:21:55', NULL, '2024-06-20 07:49:02'),
(873, '2024-06-03', 'Done', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Account Issues', 'Can't login on the computer.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-03', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-03', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking the account she use was disable due to resign employee so we create a new one and transfer her files to the new account', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Account Issues', 'High Priority', 'Mark Ely Aragon', '2024-06-03 07:24:12', '2024-06-03 07:24:12', '2024-06-03 07:24:12', '2024-06-04 12:53:07', NULL),
(874, '2024-06-04', 'rated', 0, 'CG-2758', 'Marlyn Garcia Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'NDR / EDR Detection', 'The device is transmitting data frequently to an external destination that is unusual.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-04', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Performed full scanning on the computer and get the complete information of its network. Get the logs from the firewall from 1200H to 1300H', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-04', 'Marlyn Ilagan', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'NDR / EDR Detection', 'Critical', 'Marlyn Garcia Ilagan', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-04 07:58:49', NULL),
(875, '2024-06-04', 'Done', 0, 'GP-98-079', 'Pinpin, Cherry', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Email Support', 'Can't open outlook as per employee', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff reset Outlook by using the outlook.exe /resetnavpane and outlook.exe /safe commands and restarting the PC.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-06-04 08:50:24', '2024-06-04 09:15:34', '2024-06-04 09:15:34', NULL, '2024-06-20 07:49:02'),
(876, '2024-06-04', 'rated', 0, 'GP-11-308', 'Irene Olaes', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others', 'installation of gstarM on production technology staff ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-04', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'done installation on c2110-002', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Irene Olaes', NULL, NULL, 'JO was done and confirmed CLOSED.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others', 'Low Priority', 'Mark Ely Aragon', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-06 09:33:17', NULL),
(877, '2024-06-04', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Software Issues', 'As per employee the mouse is not working ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff replaces the current mouse that Mr. Oscar is using with a spare one.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-04 09:24:28', '2024-06-04 10:23:46', '2024-06-04 10:23:46', NULL, '2024-06-20 07:49:02'),
(878, '2024-06-04', 'Done', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'As per Mr. Fagutan they have seen that the excel was not work properly on pc C2312-4. \r\n', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'As per checking MS Excel has the problem on printing so i reinstall the driver on LX310 printer', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-04 09:24:42', '2024-06-04 12:48:58', '2024-06-04 12:48:58', NULL, '2024-06-20 07:49:02'),
(879, '2024-06-04', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Software Issues', ' iBoard software cannot open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-04', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff removes the existing iBoard software and installs a new one.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-04', 'Dela Torre, Hazel Ann', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-04 07:30:49', '2024-06-04 10:42:10', NULL),
(880, '2024-06-04', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check water flow of toilet bowl at gpi-3 female cr', '', '', '', '105', 'Monzon, Rio', '2024-06-04', '', NULL, '', '2024-06-04', '2024-06-13', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'upon checking water flow of toilet is cause of flopper, i replace a new flopper.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(881, '2024-06-04', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'Forgotten password of 365 account.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Ms. Charisse's password was changed by ICT staff so she could access her 365 and OneDrive account.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-06-04 13:41:16', '2024-06-04 15:08:16', '2024-06-04 15:08:16', NULL, '2024-06-20 07:49:02'),
(882, '2024-06-04', 'rated', 0, 'GP-10-262', 'Rojas, Noemi', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Hardware Issues', 'DVD Drive not functioning.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT employees examined and found that the issue was caused by the rewritable CD not being formatted correctly.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-20', 'Rojas, Noemi', NULL, NULL, 'Good job.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-04 13:41:29', '2024-06-04 15:16:18', '2024-06-04 15:16:18', NULL, '2024-06-20 07:49:02'),
(883, '2024-06-04', 'Done', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'Printing not working properly.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-04', '2024-06-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-04', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer on the PC of Mr. Ernald.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-04 13:43:05', '2024-06-04 15:21:36', '2024-06-04 15:21:36', NULL, '2024-06-20 07:49:02'),
(884, '2024-06-05', 'Done', 0, 'GP-20-688', 'Prudente, Alyssa Jenine', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Network Connectivity', 'No internet connection in GPI 8', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-05', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'We set up Connectivity on both GPI 1 and GPI 8 (Lan) ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-06-05 07:16:46', '2024-06-05 07:16:46', '2024-06-05 07:16:46', '2024-06-05 08:46:35', NULL),
(885, '2024-06-05', 'rated', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Network Connectivity', 'No connection/access to 253 file server ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-05', '2024-06-12', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to N.Ciudad', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Ciudad, Nolsan', NULL, NULL, 'Immediate response on a job request was very nice.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-06-05 12:03:03', '2024-06-06 15:22:32', '2024-06-06 15:22:32', NULL, '2024-06-20 07:49:02'),
(886, '2024-06-05', 'Done', 0, 'GP-02-146', 'Servida, Jacqueline', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Software Issues', 'Printer cannot use.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-05', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-05', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff installed the printer successfully.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-05 10:16:01', '2024-06-05 10:16:01', '2024-06-05 10:16:01', NULL, '2024-06-20 07:49:02'),
(887, '2024-06-05', 'rated', 1, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Computer Specs Recommendation', 'Upgade computer of Production 1 (Windows 7)', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-06', '2024-06-13', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Ongoing Setup the new unit ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-01', 'Mojica, Jonar', NULL, NULL, 'OK', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Computer Specs Recommendation', 'Low Priority', 'Kevin Roy Marero', '2024-06-06 07:11:13', '2024-06-13 13:55:50', '2024-06-13 13:55:50', NULL, '2024-06-21 00:00:01'),
(888, '2024-06-05', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Electrical', 'Relocate tv monitor and holder at sdrb260 block assy line', '', '', '', '822', 'Pinpin, Cherry', '2024-06-07', '', NULL, '', '2024-06-07', '2024-06-18', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'relocation of TV monitor and holder at sdrb260 block assy line then provide power supply 220volts.test ok.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(889, '2024-06-05', 'cancelled', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Relayout', '1.layout for prod.2 mente area in gpi.1\r\n2.disconnect of 2 computer and 2 computer table from gpi 7 to gpi 1', '', '', '', '822', 'Pinpin, Cherry', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '../upload_files/2406-0515-0456.05062024150117.pdf', 'UPDATE', '2024-06-07', NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(890, '2024-06-05', 'rated', 0, 'GP-11-308', 'Irene Olaes', '[email protected]', 'Purchasing', NULL, 'fem', 'Others', 'Repair of office chairs', '', '', '', '157', 'Gelle, Nerio', '2024-06-05', NULL, NULL, '', '2024-06-06', '2024-06-15', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Repaired two office chairs and the other one is for replacement because the damage of one office chair is hydraulic.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Irene Olaes', NULL, NULL, 'Confirmed done and closed. Accomplished very. Thank you!!!!', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(891, '2024-06-06', 'Done', 0, 'GP-18-604', 'Tonga, Camille', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Software Issues', 'OS was not responding it was causing downtown to her. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-06', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Conducted basic troubleshooting on the computer. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-06 09:55:04', '2024-06-06 12:18:44', '2024-06-06 12:18:44', NULL, '2024-06-20 07:49:02');
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(892, '2024-06-06', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Email Support', 'PST File Concern ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-06', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-06', NULL, NULL, NULL, NULL, NULL, NULL, 'Retrieval of old email data files ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-06-06 12:07:00', '2024-06-06 12:07:00', '2024-06-06 12:07:00', NULL, '2024-06-20 07:49:02'),
(893, '2024-06-06', 'Done', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', 'Job Order', 'mis', 'CCTV', 'Reviewing CCTV Footage on GPI 5 Parts Receiving or Crating Area on May 16, 2024 9:59 am.', NULL, '', '', NULL, 'Sheryll Ramirez', '2024-06-06', '', NULL, '', '2024-06-07', '2024-06-07', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Base on the request, the footage that needs to review was on May 16, 2024. Upon requesting the review process, the CCTV recorder does not have May 16 record because its already overwriten.', 'To request CCTV footage make sure it is within 7-10 days after the incident', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, 'Medium Priority', 'Mark Ely Aragon', '2024-06-07 09:24:24', '2024-06-07 10:30:24', '2024-06-11 15:32:00', NULL, '2024-06-29 00:00:10'),
(894, '2024-06-07', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Relayout', '1.layout for prod.2 mente area in gpi.1\r\n2.disconnect of 2 computer and 2 computer table from gpi 7 to gpi 1', '', '', '', '822', 'Pinpin, Cherry', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'already disconnect the 2 computer table and wiring the 8 table and wiring the 110V outlet.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-14', 'Gonzales, Digna', NULL, NULL, '', 'Jun', '2024', '../upload_files/2406-0707-2820.LAYOUT.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(895, '2024-06-07', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To repaint rusty floor stand of refrigerator at gpi-1 canteen', '', '', '', '105', 'Monzon, Rio', '2024-06-07', '', NULL, '', '2024-06-07', '2024-06-18', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'repaint the stand of refrigerator (4 pcs.)', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-21', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(896, '2024-06-07', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'fem', 'Electrical', 'Broken socket cover, inside parts inspection', '', '', '', '508', 'Benjie Paras', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Fix the broken convenience outlet and install blank cover.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Odviar, Melody', NULL, NULL, 'ok and thank you for immediate response.', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(897, '2024-06-07', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'System Issues', 'G-Sense can't access ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff set the G-Sense link to reload in Internet Explorer mode.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-07', 'Gonzales, Digna', NULL, NULL, 'GP-10-247', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Mark Ely Aragon', '2024-06-07 09:20:59', '2024-06-07 09:28:52', '2024-06-07 09:28:52', NULL, '2024-06-20 07:49:02'),
(898, '2024-06-07', 'Done', 0, 'GP-14-381', 'Gelle, Nerio', '[email protected]', 'Purchasing', 'Job Order', 'mis', 'Others', 'Requesting to change laptop battery ', NULL, '', '', NULL, 'Semillano, Lyziel', '2024-06-11', '', NULL, '', '2024-06-11', '2024-06-11', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Already replaced the battery. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-06-11 13:17:25', '2024-06-11 15:52:27', '2024-06-11 15:52:27', NULL, '2024-06-20 07:49:02'),
(899, '2024-06-07', 'Done', 0, 'GP-20-695', 'Gerpacio, Richard', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'The printer cannot print gstarm.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff off the firewall and change the printing preference. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-07 13:18:24', '2024-06-07 13:18:24', '2024-06-07 13:18:24', NULL, '2024-06-20 07:49:02'),
(900, '2024-06-07', 'rated', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'Assist in printing of QR Codes.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Combine all pages of PDF attachment.\r\nSetting the printer settings in Checklist Area.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-13', 'Mojica, Jonar', NULL, NULL, 'Goods', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Bobby John Solomon', '2024-06-07 09:21:20', '2024-06-07 12:16:33', '2024-06-07 12:16:33', NULL, '2024-06-20 07:49:02'),
(901, '2024-06-07', 'cancelled', 0, 'GP-19-678', 'Bornasal, Rusitha Audrey', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'This is a test only. Please disregard this request.', '', '', '', '212', 'Monzon, Rio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '../upload_files/2406-0708-5917.GPI Volleyball Tournament Scores.pdf', 'test only', '2024-06-10', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(902, '2024-06-07', 'Done', 0, 'GP-13-361', 'Alinio, Shiela', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Hardware Issues', 'Drum Cartridge replacement on printer of checksheet. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-07', '2024-06-14', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Done replacing of drum cartridge on revoria printer', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-07 09:25:48', '2024-06-07 09:29:35', '2024-06-07 09:29:35', NULL, '2024-06-20 07:49:02'),
(903, '2024-06-07', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check tank lever at new male cr cubicle #1', '', '', '', '105', 'Monzon, Rio', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'upon checking the damage of cubicle no.1 is gate valve, we replaced the gate valve.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-21', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(904, '2024-06-07', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check toilet bowl near employees lounge at gpi-10 female cr', '', '', '', '105', 'Monzon, Rio', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'repaire toilet bowl near employees lounge at gpi-10 female cr all ready done.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-21', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(905, '2024-06-07', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Others', 'Tools for checking( digital tester(1),electric torque driver(2),impact driver(1),impact driver charger(1)', '', '', '', '822', 'Pinpin, Cherry', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Checking of power tools and charger. for replacement of damage power tools and charger.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(906, '2024-06-07', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'System Issues', 'Assist in data retrieval of approved WSO.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-07', '2024-06-14', 'GP-23-822', 'Christian John Lopez', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Revert the system database of PSIS back to data from same day at 3pm to 12pm.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-07 12:22:56', '2024-06-10 09:34:57', '2024-06-10 09:34:57', NULL, '2024-06-20 07:49:02'),
(907, '2024-06-07', 'Done', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'System Issues', 'Adding function or access to register lot and block on QC account for VMI machines. (GLR and SDRB)', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-07', '2024-06-14', 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-07', NULL, NULL, NULL, NULL, NULL, NULL, 'Create SDRB-QC and GLR-QC account same level of access with SDRB-200 and GLR-100 requestor account.\r\nTrain Ms. Fins on how to register lot and block schedule.\r\nUpdate report in version control monitoring.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-07 13:01:42', '2024-06-07 13:05:28', '2024-06-07 13:05:28', NULL, '2024-06-20 07:49:02'),
(908, '2024-06-07', 'cancelled', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Others', 'Re-paint of pedestrian lane of gpi employees from gpi 5 to gpi 1', '', '', '', '519', 'Reyes, Raymond', '2024-06-07', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '../upload_files/2406-0712-4226.requesting re-painting of Pedestrian Lane from GPI 5 to GPI 1.pdf', 'Waiting for letter to peza', '2024-07-02', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(909, '2024-06-10', 'cancelled', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Relayout', 'Gpi-1 rbg line re-lay-out for mente function area.', '', '', '', '822', 'Pinpin, Cherry', '2024-06-11', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '../upload_files/2406-1008-2335.RBG MENTE FUNCTION AREA.pdf', 'multiple entry', '2024-06-13', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(910, '2024-06-10', 'rated', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'fem', 'Others', 'To install two table light in parts inspection pull-out area', '', '', '', '508', 'Benjie Paras', '2024-06-21', '', NULL, '', '2024-06-25', '2024-07-04', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-06-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Install and wiring installation of 2pcs additional lighting fixtures into the table of pull out area of parts inspection.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-01', 'Odviar, Melody', NULL, NULL, 'Ok and thank you.', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(911, '2024-06-10', 'Done', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Leak on the ceiling of vmi area at gpi 1 near computer table.', '', '', '', '413', 'Sheryll Ramirez', '2024-06-10', '', NULL, '', '2024-06-10', '2024-06-19', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'put epoxy and sealant.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(913, '2024-06-10', 'Done', 0, 'GP-12-356', 'Ramirez, Francisco', '[email protected]', 'Administration', 'Job Order', 'mis', 'Others', 'Requesting access to youtube for tutorials in repairing aircons and other facilities on the PC of Sir Raph ', NULL, '', '', NULL, 'Monzon, Rio', '2024-06-13', '', NULL, '', '2024-06-13', '2024-06-13', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to youtube', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-06-13 14:57:17', '2024-06-13 14:58:55', '2024-06-13 14:58:55', NULL, '2024-06-21 00:00:01'),
(914, '2024-06-10', 'cancelled', 0, 'GP-01-115', 'Wilma, Logrono', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Downloading Video', 'Request ID picture of the following:\r\n\r\nMs. Catherine Castillo\r\nMs. Joanna Marie Moises\r\nMrs. Wilma Logroño', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'for correction of category', '2024-06-10', 'Nemedez, Nathan', NULL, 0, 'Downloading Video', 'Low Priority', 'Mark Ely Aragon', NULL, NULL, NULL, NULL, NULL),
(915, '2024-06-10', 'Done', 0, 'GP-01-115', 'Wilma, Logrono', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Others TS', 'Request ID picture of the following:\r\n\r\nMs. Catherine Castillo\r\nMs. Joanna Marie Moises\r\nMrs. Wilma Logroño', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-10', '2024-06-15', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Send the requested pictures. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-10 13:13:49', '2024-06-10 13:18:32', '2024-06-10 13:18:32', NULL, '2024-06-20 07:49:02'),
(916, '2024-06-10', 'Done', 0, 'GP-01-115', 'Wilma, Logrono', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Others TS', 'Requesting ID picture of the following:\r\n\r\n1. Nolsan Ciudad\r\n2. Filipina Alcantara', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-10', '2024-06-15', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Send requested id pictures', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-10 14:44:17', '2024-06-10 14:47:34', '2024-06-10 14:47:34', NULL, '2024-06-20 07:49:02'),
(917, '2024-06-10', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others TS', 'Design a PowerPoint presentation for 7th Annual Business Conference programme. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-11', 'Ask for initial layout for the powerpoint', NULL, NULL, 'June 11, 2024', NULL, NULL, 'Create a different presentation design using Canva to make it more presentable. Edit pictures of Mr. Kawada and Mr. Hirooka and add formal attire. At the same time, I edited and upscaled all other pictures, including those of other Japanese officers, presenters, and awardees logo. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 08:52:45', '2024-06-11 08:54:35', '2024-06-11 09:23:18', NULL, '2024-06-20 07:49:02'),
(918, '2024-06-10', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'Take and edit pictures of new GPI Employees including new Japanese Officers. \r\nThese are the employees\r\nMr. Ebashi\r\nMr. Kawada\r\nMs. Aragoza', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Capture photos of said employees and edit a 1x1 and id format. Also, edited their digital signatures. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 08:53:29', '2024-06-11 09:25:33', '2024-06-11 09:25:33', NULL, '2024-06-20 07:49:02'),
(919, '2024-06-10', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'Edit a caricature design of Mr. Kojima for his sayonara gift.\r\n', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Upscale a low-quality picture of Mr. Kojima and create various options for caricatures. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-11', 'Dulce, Rinalyn', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 08:49:40', '2024-06-11 08:53:58', '2024-06-11 08:53:58', '2024-06-11 12:05:17', NULL),
(920, '2024-06-11', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Electrical', 'Disconnection of electrical wirings on audit and training line.', '', '', '', '822', 'Ramirez, Francisco', '2024-06-11', '', NULL, '', '2024-06-13', '2024-06-22', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnection of electrical wirings at audit and training line.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-24', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(921, '2024-06-11', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Cannot print due to error. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon inspection, we discovered that the printer had an error number (016-799), indicating that the paper or output tray must be the incorrect size. ', 'Aware employee to check the size of the paper and tray they choosing. ', 0, NULL, NULL, '4', '4', 4.00, '2024-06-11', 'Manny Herrera', NULL, NULL, 'Job well done ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-11 08:53:17', '2024-06-11 09:47:07', '2024-06-11 09:47:07', NULL, '2024-06-20 07:49:02'),
(922, '2024-06-11', 'Done', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Setup Audio / Video', 'Create Video Presentation for Business Conference', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-13', 'Coordinate with QC for the consolidation of photos needed in the presentation. Set a schedule for creating of video', NULL, NULL, 'June 13, 2024', NULL, NULL, 'Created video presentation and coordinate with the approver.', 'Done', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Vivo, Felmhar', '2024-06-11 08:43:16', '2024-06-13 15:30:41', '2024-06-13 15:31:32', NULL, '2024-06-21 00:00:01'),
(923, '2024-06-11', 'Done', 1, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Downloading Video', 'Download and edit videos for health viewing at GPI 1 Canteen Area on June 13-14, 2024\r\n\r\n1. https://youtube.com/shorts/8o6nomslFsi=pH88cbpowbzZDA9i \r\n2. https://youtu.be/5GA2_wilA1U?si=P3SwZODdRXPWvEgG Will be cut at 03:40\r\n3. https://youtu.be/B5DAcaoj6Qw?si=28y7cflCM0_kEDnm Will be cut 05:20\r\n\r\n', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-18', 'I downloaded all videos except the first one. We cannot find the link provided. ', 'Ask for the new link and download it. Played all videos at canteen area (June 13)', NULL, 'June 13, 2024', 'June 13, 2024', NULL, 'Play all videos at canteen', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Downloading Video', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 08:43:41', '2024-06-13 07:34:14', '2024-06-18 15:51:17', NULL, '2024-06-25 00:00:02'),
(924, '2024-06-11', 'Done', 1, 'GP-19-683', 'Marcilla, Lenlyn', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Setup Audio / Video', 'Set up the sound system for Biggest Looser Activity on the following dates:\r\n\r\nJune 11, 2024, 4:00pm = Loading area: Sports\r\nJune 13, 2024, 4:00pm = GPI 1 Canteen Area: Zumba\r\nJune 19, 2024, 4:00pm = GPI 1 Canteen Area: Zumba\r\nJune 25, 2024, 4:00pm = Loading area: Sports\r\nJune 27, 2024, 4:00pm = GPI 1 Canteen Area: Zumba\r\n\r\n', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-18', 'Sir Felmhar and our OJT set-up the speakers last June 11 2024. ', NULL, NULL, 'June 13, 2024', NULL, NULL, 'Scheduled all audio setup for the biggest looser activities', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 08:44:19', '2024-06-13 07:11:16', '2024-06-18 08:31:31', NULL, '2024-06-25 00:00:02'),
(925, '2024-06-11', 'rated', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'Others TS', 'Request ID pictures of the following employees. This will be used to update the GPI 5&6 EPRT Organization Chart.\r\nLeaflor Maligsa\r\nAlvin Benavente\r\nMary Ann Delgado\r\nLeonardo Abueni\r\nRamina Miguel.\r\n\r\n', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Finf the pictures of requested employees and sent it the requestor', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-26', 'Alvarez, Krizel Micah Anne', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-11 13:16:25', '2024-06-11 13:41:29', '2024-06-11 13:41:29', NULL, '2024-06-20 07:49:02'),
(926, '2024-06-11', 'Done', 0, 'GP-03-158', 'Semillano, Lyziel', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Setup Audio / Video', 'Setup sound system in the canteen at 2:30 they will be having practice with president for upcoming business conference. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-13', NULL, NULL, NULL, NULL, NULL, NULL, 'Give assistance for the sound system and presentation. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Mark Ely Aragon', '2024-06-11 13:16:00', '2024-06-13 07:21:04', '2024-06-13 07:21:04', NULL, '2024-06-20 07:49:02'),
(927, '2024-06-11', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'Repair of grease trap pushcart at gpi-8 canteen.', '', '', '', '105', 'Monzon, Rio', '2024-06-13', '', NULL, '', '2024-06-14', '2024-06-25', 'GP-11-301', 'Magat, Roel', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'done repair of caster wheel attached by using welding process, after repair return item to end user', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dulce, Rinalyn', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(928, '2024-06-11', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'c2402-8 and c2402-6 Can't Connect on the printer located on GPI 9', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Done troubleshoot printer access and setup ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-11 13:16:48', '2024-06-11 15:51:06', '2024-06-11 15:51:06', NULL, '2024-06-20 07:49:02'),
(929, '2024-06-11', 'rated', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'Assist in printing of QR Codes.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-11', '2024-06-18', 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Combine all pages of PDF attachment.\r\nSetting the printer settings in Checklist Area.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-13', 'Mojica, Jonar', NULL, NULL, 'goods', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Bobby John Solomon', '2024-06-11 15:59:55', '2024-06-11 16:01:00', '2024-06-11 16:01:00', NULL, '2024-06-20 07:49:02'),
(930, '2024-06-11', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'NDR / EDR Detection', 'An internal device was detected uploading (1.56 GB) of data to multiple different external destinations.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-11', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Blocked the IP Address of the service to disable the access from the device', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'NDR / EDR Detection', 'Critical', 'Marlyn Ilagan', '2024-06-11 15:56:41', '2024-06-11 15:56:41', '2024-06-11 15:56:41', NULL, '2024-06-20 07:49:02'),
(931, '2024-06-13', 'rated', 0, 'GP-16-489', 'Michelle Lamera', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Software Issues', 'having Link error on MS EXCEL ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-13', '2024-06-20', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-14', 'Already visited and on going checking the problem ', NULL, NULL, 'June 13, 2024', NULL, NULL, 'As i check today the file was working good. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-14', 'Michelle Lamera', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-13 14:56:41', '2024-06-13 16:46:22', '2024-06-14 15:23:10', '2024-06-14 15:59:34', NULL),
(932, '2024-06-13', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Job Order', 'mis', 'Add/Delete Email Account', 'Deactivation and Transferring 2 emails of Parts Inspection [email protected] and [email protected] to Ms. Cherry Manalon and another PI Staff ', NULL, '', '', NULL, 'Benjie Paras', '2024-06-21', '', NULL, '', '2024-06-24', '2024-06-24', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-28', 'The data files belonging to Ms. Incognito and Ms. Villaraza have been backed up by ICT staff.', 'ICT staff changed the email accounts of Ms. Incognito ([email protected]) to ([email protected]) and Ms. Villaraza ([email protected]) to ([email protected]).', NULL, 'June 27, 2024', 'June 28, 2024', NULL, 'Ms. Manalon's ([email protected]) and Ms. Aragoza's ([email protected]) email accounts have been added to their computers (Outlook), and they are now available for use.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-06-24 07:41:48', '2024-06-27 14:57:37', '2024-06-28 09:33:42', NULL, '2024-07-06 00:00:16'),
(933, '2024-06-13', 'Done', 0, 'GP-12-356', 'Ramirez, Francisco', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Network Connectivity', 'Need access on watching youtube for their troubleshooting aircon and other facilities ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-13', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to the requested workstation. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'redundant', '2024-06-13', 'Nemedez, Nathan', NULL, 0, 'Network Connectivity', 'High Priority', '', '2024-06-13 15:19:22', '2024-06-18 08:12:31', '2024-06-18 08:12:31', NULL, '2024-06-25 00:00:02'),
(934, '2024-06-13', 'Done', 0, 'GP-12-356', 'Ramirez, Francisco', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Network Connectivity', 'Need access to youtube to watch tutorials for there troubleshooting aircon and other facilities in the company ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-13', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to the requested workstation. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'redundant', '2024-06-13', 'Nemedez, Nathan', NULL, 0, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-06-13 15:19:19', '2024-06-18 08:29:14', '2024-06-18 08:29:14', NULL, '2024-06-25 00:00:02'),
(935, '2024-06-13', 'Done', 0, 'GP-20-688', 'Prudente, Alyssa Jenine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Others', 'To check and repair the office chair at gpi 1 clinic', '', '', '', '191', 'Monzon, Rio', '2024-06-13', '', NULL, '', '2024-06-14', '2024-06-25', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'provide plate then fix the back rest into the chair of GPI 1 clinic.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(936, '2024-06-13', 'Done', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'System Issues', 'Problem in requestor's account of Production Management in GDMS.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-13', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Checking GDMS add/edit account function on DCC account.\r\nRetrieval of Production Management requestor's account.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-14 07:30:42', '2024-06-14 08:59:47', '2024-06-14 08:59:47', NULL, '2024-06-25 00:00:02'),
(937, '2024-06-14', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'System Issues', 'Migration of Iboard system.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-14', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Already migrated. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Marlyn Ilagan', '2024-06-14 07:24:46', '2024-06-18 08:30:54', '2024-06-18 08:30:54', NULL, '2024-06-25 00:00:02'),
(938, '2024-06-14', 'Done', 0, 'GP-22-737', 'Sherelyn P. Bunag', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Email Support', 'Outlook datafiles cannot be open. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-14', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff add the missing data files (file>Account Settings>Data Files) in Outlook.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-06-14 07:24:48', '2024-06-14 08:07:10', '2024-06-14 08:07:10', NULL, '2024-06-25 00:00:02'),
(939, '2024-06-14', 'rated', 0, 'GP-11-308', 'Irene Olaes', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others TS', 'System unit won't start ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-14', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'System unit was open but for observation. ', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Irene Olaes', NULL, NULL, 'Unit was ok but encountered server connection lost', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-14 07:36:25', '2024-06-14 07:54:17', '2024-06-14 07:54:17', '2024-06-14 08:23:42', NULL),
(940, '2024-06-14', 'rated', 0, 'GP-12-346', 'Deseo, Cherrylyn', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Additional and Network Relayout', 'Request installation of network connection for two computers in GPI-1 Production area. And request telephone connection to Ms. Cherry Deseo table', NULL, '', '', NULL, 'Naungayan, Wennie', '2024-06-24', '', NULL, '', '2024-06-24', '2024-06-24', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed a network connection for the two computers and for the telephone.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Deseo, Cherrylyn', NULL, NULL, '', 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Vivo, Felmhar', '2024-06-24 14:37:01', '2024-06-24 15:08:55', '2024-06-24 15:08:55', NULL, '2024-06-30 00:00:04'),
(941, '2024-06-14', 'Done', 0, 'GP-18-610', 'Fagutan, Ernald', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Computer on Ms. Jelly can't access to printer.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-14', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-14', NULL, NULL, NULL, NULL, NULL, NULL, 'Added his username and password on the computer to recognized by the printer', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-14 15:53:38', '2024-06-14 15:53:38', '2024-06-14 15:53:38', NULL, '2024-06-25 00:00:02'),
(942, '2024-06-14', 'rated', 0, 'GP-11-310', 'Sapalasan, Eloisa', '[email protected]', 'Parts Production', 'Technical Support', 'mis', 'System Issues', 'Checki Fukada-san's account in GDMS.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-18', '2024-06-25', 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Coordinate the concern to Sir Jaymar of QA.\r\nAccount is already created and informed Kawada-san.\r\nProvide Username and Password to Kawada-san including procedure of changing password.', '', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Sapalasan, Eloisa', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-18 12:31:15', '2024-06-18 13:03:24', '2024-06-18 13:03:24', NULL, '2024-06-25 00:00:02'),
(943, '2024-06-18', 'Done', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Hardware Issues', 'PC cannot open', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-18', '2024-06-25', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-18', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully solved the issue by unplugging the power supply on the motherboard and plugging it back in again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-18 12:29:09', '2024-06-18 13:58:38', '2024-06-18 13:58:38', NULL, '2024-06-25 00:00:02'),
(944, '2024-06-18', 'Done', 0, 'GP-02-146', 'Servida, Jacqueline', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others TS', 'Requesting images on Business Conference last June 14, 2024. Kindly send to Ms. Rhianne of purchasing. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-18', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Copy all the picture and send it to the requestor', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-18 15:40:20', '2024-06-19 09:15:36', '2024-06-19 09:15:36', NULL, '2024-06-27 00:00:04'),
(945, '2024-06-19', 'Done', 0, 'GP-13-361', 'Alinio, Shiela', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Ms. Alinio's PC need to install backup printer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the backup printer (192.168.5.203) on Ms. Alinio's PC.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-19 08:27:12', '2024-06-19 09:20:54', '2024-06-19 09:20:54', NULL, '2024-06-27 00:00:04'),
(946, '2024-06-19', 'Done', 0, 'GP-14-397', 'Lontoc, Arlene', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Others', 'Assistance in controlling document in GDMS.\r\n\r\nE-mail Reference (Incident):\r\n"Yesterday, we cannot access the G-DMS around 4:20pm until 6:00pm.\r\nWe have (6) affected documents for control with effective date June 18, 2024 (see below).\r\nIf we control the documents today June 19, it will reflect as DELAY on G-DMS’s system generated report.\r\nWith this we are asking for assistance regarding on the said concern."', NULL, '', '', NULL, 'Reyes, Raymond', '2024-06-21', '', NULL, '', '2024-06-24', '2024-06-24', 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, '1. Controlled Date and Time was set to June 18, 2024 05:00PM\r\n2. Final Date Effectivity was set to June 18, 2024\r\n3. Obsolete Date of Revised Document was set to June 18,2024\r\n', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Bobby John Solomon', '2024-06-24 07:42:23', '2024-06-24 08:07:22', '2024-06-24 08:07:22', NULL, '2024-06-30 00:00:04'),
(947, '2024-06-19', 'Done', 0, 'GP-12-351', 'Evangelista, Eva', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Hardware Issues', 'An Excel file suddenly double-clicks or drags when you click a cell.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'The ICT staff concluded that the main cause of the problem was the mouse. They replaced the old mouse with a spare one, and further investigations are being conducted regarding the issue.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Hardware Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-19 09:57:06', '2024-06-19 09:57:06', '2024-06-19 09:57:06', '2024-06-20 10:16:40', NULL),
(948, '2024-06-19', 'rated', 0, 'GP-12-343', 'Cornejo, Wenna Rose', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'DRSS link connection', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff add the DRSS link in Internet Explorer mode pages and it is ready to use.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-19', 'Cornejo, Wenna Rose', NULL, NULL, 'Always respond immediately to our request.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-06-19 10:09:01', '2024-06-19 10:09:01', '2024-06-19 10:09:01', '2024-06-19 13:25:57', NULL),
(949, '2024-06-19', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'System Issues', 'DRSS Link can't access. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Inform the user how to setup the internet explorer compatibility on MS Edge for DRSS link. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-20', 'Dela Torre, Hazel Ann', NULL, NULL, 'FAST IN RESPONSE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Mark Ely Aragon', '2024-06-19 10:21:06', '2024-06-19 10:28:51', '2024-06-19 10:28:51', '2024-06-20 09:07:52', NULL),
(950, '2024-06-19', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'System Issues', 'Problem in account registration in G-DMS.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-20', NULL, NULL, NULL, NULL, NULL, NULL, 'Fix Section selection List in Account Registration.\r\nChange process of saving Employee ID instead of Section ID.\r\nFix the records of duplicated Employee ID.', '', 0, NULL, NULL, '5', '4', 4.50, '2024-06-20', 'Dela Cruz, Jaymar', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-20 07:30:50', '2024-06-20 08:43:45', '2024-06-20 08:43:45', '2024-06-20 13:04:31', NULL),
(951, '2024-06-19', 'Done', 0, 'GP-06-178', 'Didal, Bobby', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Network Connectivity', 'Connection Problem in remoting sticker computer in Checksheet area', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-19', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-19', NULL, NULL, NULL, NULL, NULL, NULL, 'Check connection and IP Address. Installed UltraVNC application for the remote access from Head Office member', 'Done', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Vivo, Felmhar', '2024-06-19 16:01:52', '2024-06-19 16:01:52', '2024-06-19 16:01:52', NULL, '2024-06-27 00:00:04'),
(952, '2024-06-20', 'rated', 0, 'GP-18-595', 'Mendez, Marlyn', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'System Issues', 'Problem in multiple updating of pending POF. Excel file uploading.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-21', NULL, 'GP-23-783', 'Olive Bugarin', NULL, '2024-06-21', 'Troubleshoot the problem in multiple updating of pending POF', NULL, NULL, 'June 21, 2024', NULL, NULL, 'Problem has been fixed; the system can’t fetch data from the temporary table of pending POF as the indexes of the table have been deleted. We are still investigating the cause of the deletion', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-21', 'Mendez, Marlyn', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-21 07:29:20', '2024-06-21 08:34:47', '2024-06-21 13:02:12', '2024-06-21 14:59:35', NULL),
(953, '2024-06-20', 'Done', 0, 'GP-18-596', 'Mugas, John Eric', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Others', 'Checking office chair and repair.', '', '', '', '381', 'Sheryll Ramirez', '2024-06-20', '', NULL, '', '2024-06-25', '2024-07-04', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'After checking we found out the cylinder of chair is already damage and the metal base is damage not referable findings.', 'Need to replace of chair due to findings damage is not referable.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(954, '2024-06-20', 'rated', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'Others TS', 'Requesting ID Picture of Mr. Kawada ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-21', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Send Mr. Kawada's Id picture', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-11', 'Jordan, Carmela', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-21 07:29:24', '2024-06-21 12:42:49', '2024-06-21 12:42:49', NULL, '2024-06-29 00:00:10'),
(955, '2024-06-20', 'Done', 0, 'GP-12-351', 'Evangelista, Eva', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Software Issues', 'Cannot connect in outlook', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-20', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-20', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff re-enter her outlook password and it is working again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-20 14:18:24', '2024-06-20 14:18:24', '2024-06-20 14:18:24', NULL, '2024-06-28 00:00:06'),
(957, '2024-06-21', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check urinal water leak at gpi-5 new male cr', '', '', '', '105', 'Monzon, Rio', '2024-06-21', '', NULL, '', '2024-06-25', '2024-07-04', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-07-05', '1. For request materials needed.', NULL, NULL, 'July 03, 2024', NULL, NULL, 'Check the water leak came from the flooring into the outside wall of urinal bowl at new male C.R (Recommendation for de-clogged and leak repair).', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(958, '2024-06-21', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Add/Delete Email Account', 'Additional local email for Ms. Erica Tolentino of Production Supplies. ', NULL, '', '', NULL, 'Pinpin, Cherry', '2024-06-21', '', NULL, '', '2024-06-21', '2024-06-21', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-21', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully create a email ([email protected]) for Ms. Erica Tolentino.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-06-21 12:25:11', '2024-06-21 15:00:18', '2024-06-21 15:00:18', NULL, '2024-06-29 00:00:10'),
(959, '2024-06-21', 'Done', 0, 'GP-10-269', 'Sheryll Ramirez', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'System Issues', 'Error message appeared upon approval of RPIS document. (ADMIN account in G-RPIS)', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-21', '2024-06-28', 'GP-23-822', 'Christian John Lopez', NULL, '2024-06-21', NULL, NULL, NULL, NULL, NULL, NULL, 'Check ADMIN account in RPIS upon approval of G-RPIS document. \r\nFix header by declaring ecn_no on header location/link.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-21 12:55:32', '2024-06-21 13:57:27', '2024-06-21 13:57:27', NULL, '2024-06-29 00:00:10'),
(960, '2024-06-24', 'Done', 0, 'GP-02-146', 'Servida, Jacqueline', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others TS', 'Flash drive cant access ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-24', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Formatted the flashdrive to a Fat32. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-24 08:12:11', '2024-06-24 15:39:30', '2024-06-24 15:39:30', NULL, '2024-06-30 00:00:04'),
(961, '2024-06-24', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Electrical', 'Disconnection of electrical wirings on audit and training line.', '', '', '', '822', 'Pinpin, Cherry', '2024-06-24', '', NULL, '', '2024-06-25', '2024-07-04', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Already disconnect the electrical wirings and the 3 light fixture already install rbg line.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-02', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(962, '2024-06-24', 'Done', 0, 'GP-22-740', 'Bobby John Solomon', '[email protected]', 'ICT', 'Technical Support', 'mis', 'Others TS', 'REQUEST VM SERVER FOR RPA IMPLEMENTATION.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-24', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Already created a server of Information System. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Bobby John Solomon', '2024-06-24 08:16:05', '2024-06-24 15:40:01', '2024-06-24 15:40:01', '2024-06-24 15:46:59', NULL),
(963, '2024-06-24', 'Done', 0, 'GP-13-361', 'Alinio, Shiela', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Request to change waster toner on their back up printer. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-24', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff changed the waste toner of back-up printer.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-24 08:27:49', '2024-06-24 15:06:23', '2024-06-24 15:06:23', NULL, '2024-06-30 00:00:04'),
(964, '2024-06-24', 'Done', 0, 'GP-10-269', 'Sheryll Ramirez', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Others TS', 'Desktop Can't open.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-24', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Perform checking of power cable and possible loose connectors. Checked the UPS if shutdown. Computer is now open and operating', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-06-24 08:42:07', '2024-06-25 13:09:53', '2024-06-25 13:09:53', NULL, '2024-07-02 00:00:11'),
(965, '2024-06-24', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'NDR / EDR Detection', 'dt-4176. The device is uploading data to Github.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-24', '2024-06-26', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Already closed the issue. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'NDR / EDR Detection', 'Critical', 'Marlyn Ilagan', '2024-06-24 12:21:41', '2024-06-24 15:41:39', '2024-06-24 15:41:39', NULL, '2024-06-30 00:00:04'),
(966, '2024-06-24', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', 'Job Order', 'mis', 'Others', 'Request to change computer account on old computer (gpiazuma) to Technician Account ', NULL, '', '', NULL, 'Naungayan, Wennie', '2024-06-24', '', NULL, '', '2024-06-24', '2024-06-24', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-04', 'Added a new account on Active Directory ', NULL, NULL, 'July 01, 2024', NULL, NULL, 'We already Change the username ', '', 0, NULL, NULL, '2', '3', 2.50, '2024-07-04', 'Dela Torre, Hazel Ann', NULL, NULL, '', 'Jun', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-06-24 14:37:15', '2024-07-01 08:30:54', '2024-07-04 15:59:18', NULL, NULL),
(967, '2024-06-24', 'Done', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Software Issues', 'Error in viewing of PDF on his computer.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-24', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-24', NULL, NULL, NULL, NULL, NULL, NULL, 'Check error appear in the PDF document.\r\nFont not supported on the default PDF Viewer of the user.\r\nOpen the PDF using browser.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-06-24 15:39:49', '2024-06-24 15:58:32', '2024-06-24 15:58:32', NULL, '2024-06-30 00:00:04'),
(968, '2024-06-25', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check faucet leak at drivers quarter area', '', '', '', '105', 'Monzon, Rio', '2024-06-25', '', NULL, '', '2024-06-25', '2024-07-04', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-07-01', 'Schedule for Saturday because the main line of water supply is shutdown.', NULL, NULL, 'June 26, 2024', NULL, NULL, 'Replace garden faucet at drivers quarter.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(969, '2024-06-25', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'System Issues', 'Request assistance in generating WSO PDF in G-PSIS.\r\nWSO-240963', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-25', '2024-07-02', 'GP-23-783', 'Olive Bugarin', NULL, '2024-06-26', 'Ongoing review of the process of generating WSO', NULL, NULL, 'June 25, 2024', NULL, NULL, 'Already fixed generating WSO PDF in G-PSIS. WSO-240963 is now printable', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-25 10:16:43', '2024-06-25 13:11:58', '2024-06-26 15:25:12', NULL, '2024-07-04 00:00:12'),
(970, '2024-06-25', 'Done', 0, 'GP-22-717', 'Maigue, Jonnalyn', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'System Issues', 'Checking generated excel data from EUC system.\r\nDifferent account downloaded different set of excel data even same process.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Check the generated excel data from both user.\r\nBoth excel is the same. Found out that opening of the generated excel on Ms. Jonnalyn PC has problem once one certain excel file is open. Advised to close the said suspicious excel file before opening the generated data from EUC.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-25 10:43:58', '2024-06-25 13:39:42', '2024-06-25 13:39:42', '2024-06-25 16:24:34', NULL),
(971, '2024-06-25', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Software Issues', 'Check PDF problem when using Cube application', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Checked the problem message. Found out that the PDF trying to be edited is generated from Japan system and cannot be altered', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', '', '2024-06-25 13:08:34', '2024-06-25 13:08:34', '2024-06-25 13:08:34', NULL, '2024-07-02 00:00:11'),
(972, '2024-06-25', 'Done', 0, 'GP-16-461', 'Alonzo, John Lord', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'CCTV Review', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Provide assistance in reviewing CCTV footage based on requested details', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-06-25 13:40:41', '2024-06-25 13:40:41', '2024-06-25 13:40:41', '2024-06-25 13:41:53', NULL),
(973, '2024-06-25', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'System Issues', 'Error in viewing additional copy of document in DCC account.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', NULL, 'GP-23-783', 'Olive Bugarin', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'The error is already fixed; we are just waiting for a new request for an additional copy of document to test if the error still occurs.', '', 0, NULL, NULL, '3', '3', 3.00, '2024-07-17', 'Dela Cruz, Jaymar', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-06-26 07:07:39', '2024-06-26 07:34:44', '2024-06-26 07:52:04', NULL, '2024-07-04 00:00:12'),
(974, '2024-06-26', 'Done', 0, 'G2740', 'Jane Degalea', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Software Issues', 'Installing printer ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer (172.24.33.119)', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-26 07:20:22', '2024-06-26 07:20:22', '2024-06-26 07:20:22', NULL, '2024-07-04 00:00:12'),
(975, '2024-06-26', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check lawn mower used in gpi-8 and gpi-1', '', '', '', '105', 'Monzon, Rio', '2024-06-26', '', NULL, '', '2024-07-02', '2024-07-11', 'GP-22-756', 'Frank B. Apil', NULL, '2024-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'finished checking the lawn mower, need to replace air filter and need to check the cylinder gasket.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(976, '2024-06-26', 'Done', 0, 'GP-97-059', 'Bautista, Elmer', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Installing colored printer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer (ApeosPort C3070 (192.168.5.115)) located at purchasing department.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-26 10:50:55', '2024-06-26 10:50:55', '2024-06-26 10:50:55', NULL, '2024-07-04 00:00:12'),
(977, '2024-06-26', 'Done', 0, 'GP-18-616', 'Mendoza, Charisse', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'Request editing of Ms. Bacuetes ID Pictures. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', NULL, 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Take picture and edit 1x1 and Id Picture. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Cedrick James M. Orozo', '2024-06-26 13:51:51', '2024-06-26 13:51:51', '2024-06-26 13:51:51', NULL, '2024-07-04 00:00:12'),
(978, '2024-06-26', 'Done', 0, 'GP-11-306', 'Nemedez, Nathan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'Others TS', 'Assisted Fujifilm for new Printer delivery', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-26', NULL, NULL, NULL, NULL, NULL, NULL, 'Provide assistance in unloading of 2 printers courtesy of PPIC warehouse. Endorsed properly to Dept', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-06-26 13:56:17', '2024-06-26 13:56:17', '2024-06-26 13:56:17', NULL, '2024-07-04 00:00:12'),
(979, '2024-06-26', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check fill valve at gpi-3 female cr', '', '', '', '105', 'Monzon, Rio', '2024-06-26', '', NULL, '', '2024-06-27', '2024-07-06', 'CG-0676', 'Edvir Lumagui', NULL, '2024-06-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of fill valve at gpi-3 female cr', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-27', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(980, '2024-06-26', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check lavatory faucet leak at gpi-1 old male cr', '', '', '', '105', 'Monzon, Rio', '2024-06-27', '', NULL, '', '2024-07-02', '2024-07-11', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-07-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace lavatory faucet.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(981, '2024-06-27', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check tank lever at gpi-10 female cr', '', '', '', '105', 'Monzon, Rio', '2024-06-27', '', NULL, '', '2024-06-28', '2024-07-09', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-06-28', NULL, NULL, NULL, NULL, NULL, NULL, 'Done repair tank lever at GPI-10 Female Comfort Room.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Sangalang, Elaine', NULL, NULL, '', 'Jun', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(982, '2024-06-27', 'Done', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'Scan file location problem', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-27', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-06-27', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking, the scan file was in different folder. No system error found', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', '', '2024-06-27 13:58:17', '2024-06-27 13:58:17', '2024-06-27 13:58:17', NULL, '2024-07-05 00:00:20'),
(983, '2024-06-28', 'rated', 0, 'GP-16-466', 'Dela Torre, Hazel Ann', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Others TS', 'Assistance in QR Code Printing.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-06-28', '2024-07-05', 'GP-22-740', 'Bobby John Solomon', NULL, '2024-06-28', NULL, NULL, NULL, NULL, NULL, NULL, 'Give assistance on Printing of QR Codes.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-06-28', 'Dela Torre, Hazel Ann', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Bobby John Solomon', '2024-06-28 12:14:44', '2024-06-28 13:17:11', '2024-06-28 13:17:11', '2024-06-28 14:35:26', NULL),
(984, '2024-06-28', 'Done', 0, 'GP-16-480', 'Castro, Ranelyn', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'cannot connect to the printer (epson).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-28', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-06-28', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff installed the needed driver, and it is ready to use again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-06-28 09:36:45', '2024-06-28 09:36:45', '2024-06-28 09:36:45', '2024-07-01 12:24:49', NULL),
(985, '2024-07-01', 'rated', 0, 'GP-14-405', 'Dolores Castro', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Setup Audio / Video', 'Set up Projector on Conference 4 before 2:30 pm. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-01', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-01', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully set up the projector on conference 4.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-03', 'Dolores Castro', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Mark Ely Aragon', '2024-07-01 10:46:18', '2024-07-01 15:39:05', '2024-07-01 15:39:05', '2024-07-02 10:48:38', NULL),
(986, '2024-07-01', 'Done', 0, 'GP-00-098', 'Mendoza, Elarde', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Email Support', 'Outlook cannot open.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-01', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-01', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff clears and regenerates the navigation pane by running outlook.exe /resetnavpane in cmd, and it successfully solves the problem. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Email Support', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-01 10:39:47', '2024-07-01 10:39:47', '2024-07-01 10:39:47', NULL, '2024-07-07 00:00:36'),
(987, '2024-07-02', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Setup Audio / Video', 'Request for the assistance of ICT on setting up the projector, speaker, microphone and MS Teams on July 5, Friday at 8:00AM. This is for the program of HB, Occupational Illness Seminar.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-02', '2024-07-09', 'GP-22-722', 'Cedrick James M. Orozo', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'RE-schedule the set-up on July 12', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-15', 'JANELLA MAE FRANCISCO', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Cedrick James M. Orozo', '2024-07-02 07:36:58', '2024-07-08 16:02:21', '2024-07-08 16:02:21', NULL, '2024-07-14 00:00:14'),
(988, '2024-07-02', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Relayout', 'Request to unplug electrical to line of audit and training area, due to need to transfer to production line of rbg mente function area.', '', '', '', '211', 'Bautista, Elmer', '2024-07-02', 'ok', NULL, '', '2024-07-02', '2024-07-11', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Relay out production line of rbg mente function area.at GPI1 ALLREADY DONE.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-04', 'Manny Herrera', NULL, NULL, 'Job well Done', 'Jul', '2024', '../upload_files/2407-0207-3738.IMG_20240702_073310_423.jpg', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(989, '2024-07-02', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Hardware Issues', '2 UPS of parts inspection was not functioning. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-02', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-02', 'ICT staff checked the UPS and found out that the UPS batteries are not good.', NULL, NULL, 'July 02, 2024', NULL, NULL, 'ICT staff replaced the NG batteries with a new one and it is ready to use again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-02 07:55:24', '2024-07-02 15:52:07', '2024-07-02 15:54:22', NULL, '2024-07-09 00:00:16'),
(990, '2024-07-02', 'cancelled', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Email Support', 'Add email on the laptop of QC department. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-02', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Needs approval of the head.', '2024-07-02', NULL, NULL, 0, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-07-02 12:00:44', NULL, NULL, NULL, NULL),
(991, '2024-07-02', 'rated', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Additional and Network Relayout', 'Request for network connection in new area of Production Support (former audit and training area)', NULL, '', '', NULL, 'Pinpin, Cherry', '2024-07-09', '', NULL, '', '2024-07-10', '2024-07-10', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT members successfully provided connection for 8 computers and 2 telephones in the target area. To easily provide network access to the computers, ICT member installed a temporary network switch (need to buy new switch as replacement) in the area as the main source of connection to all computers in the location. Done and Properly endorsed to the requestor', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-23', 'Asuelo, Oscar Jr.', NULL, NULL, 'OK', 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Vivo, Felmhar', '2024-07-10 07:47:26', '2024-07-10 12:21:32', '2024-07-10 12:21:32', NULL, '2024-07-18 00:00:07'),
(992, '2024-07-02', 'rated', 0, 'GP-14-405', 'Dolores Castro', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Setup Audio / Video', 'Set-up Conference room 4, 2:30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-02', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-02', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully set-up the projector in Conference Room 4', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-03', 'Dolores Castro', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-02 12:00:47', '2024-07-02 15:54:59', '2024-07-02 15:54:59', '2024-07-03 15:38:31', NULL),
(993, '2024-07-02', 'Done', 0, 'GP-07-199', 'Lapan, Jonald John', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Others TS', 'Have problem on Gstar late receiving of extracted file from the system. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-02', '2024-07-09', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-05', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff discovered that the cause of the problem was Ms. Rosalinda's email address, which is in glorylocal.', 'The ICT team recommends purchasing a Microsoft 365 account.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-02 13:24:15', '2024-07-05 10:57:30', '2024-07-05 10:57:30', NULL, '2024-07-13 00:00:11'),
(994, '2024-07-03', 'Done', 0, 'GP-10-268', 'Yalung, Idhonnah', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Others TS', 'UPS has no power of parts receiving section on GPI 5. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-03', '2024-07-10', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-05', 'The ICT staff inspected the UPS and discovered that the battery needed replacement due to low voltage levels.', NULL, NULL, 'July 05, 2024', NULL, NULL, 'ICT staff changed the UPS batteries and it is ready to use again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-03 09:07:15', '2024-07-05 13:53:46', '2024-07-05 13:59:34', NULL, '2024-07-13 00:00:11'),
(995, '2024-07-03', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'System Issues', 'Provide access to C2305-010 to Quality Assurance files.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-03', '2024-07-10', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'already provided access to C2305-010 to QA files', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Marlyn Ilagan', '2024-07-03 09:07:39', '2024-07-04 15:51:57', '2024-07-04 15:51:57', NULL, '2024-07-12 00:00:03'),
(996, '2024-07-03', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Others TS', 'DRSS Line Keyboard cannot function properly and DRSS system can't access. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-03', '2024-07-10', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-03', 'Microsoft edge needs to update', 'as per checking keyboard has no problem', NULL, 'July 03, 2024', 'July 03, 2024', NULL, 'Edge is updated and System unit was restored ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', '', '2024-07-03 09:07:59', '2024-07-03 09:26:19', '2024-07-03 09:59:45', NULL, '2024-07-11 00:00:08'),
(997, '2024-07-03', 'Done', 0, 'GP-16-490', 'Manalo, Rosemarie Jinky', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Network Connectivity', 'Need access to certain link because its block. check your email for the reference. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-03', '2024-07-10', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to the said link. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-07-03 09:08:22', '2024-07-04 15:53:31', '2024-07-04 15:53:31', '2024-07-04 15:59:55', NULL),
(998, '2024-07-03', 'Done', 0, 'GP-06-178', 'Didal, Bobby', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'System Issues', 'Provide access to C2305-010 to Quality Control files.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-05', '2024-07-12', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-05', NULL, NULL, NULL, NULL, NULL, NULL, 'Already provided access to the C2305-010 to QC files', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Marlyn Ilagan', '2024-07-05 09:57:51', '2024-07-05 13:58:19', '2024-07-05 13:58:19', NULL, '2024-07-13 00:00:11'),
(999, '2024-07-03', 'Done', 0, 'GP-19-659', 'Rose Bella Austria', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Others', 'Data Retrieval of Accidentally approved lot numbers under WSO-241210', NULL, '', '', NULL, 'Pinpin, Cherry', '2024-07-09', '', NULL, '', '2024-07-10', '2024-07-10', 'GP-23-783', 'Olive Bugarin', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, '-Checked the difference on backup database and latest \r\n-Modified and create updates to PSIS database', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Bobby John Solomon', '2024-07-10 07:47:52', '2024-07-11 10:55:04', '2024-07-11 10:55:04', NULL, '2024-07-19 00:00:09'),
(1000, '2024-07-03', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Others TS', 'DRSS link cannot open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-03', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff updates the Microsoft Edge and changed the old DRSS link (http://150.71.129.8/DrSystem/Pages/SDRX0000.aspx) to a new link (http://drss.glory.co.jp/DrSystem/Pages/SDRX0000.aspx).', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-03 10:46:12', '2024-07-03 10:46:12', '2024-07-03 10:46:12', NULL, '2024-07-11 00:00:08'),
(1001, '2024-07-03', 'Done', 0, 'GP-17-541', 'Barron, Sherilyn', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Network Connectivity', 'Need network connection.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-03', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff examined the Lan cable and discovered that it is not connected to the switch or router. ICT staff resolved the issue, and the PC now has a connection.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-03 10:49:44', '2024-07-03 10:49:44', '2024-07-03 10:49:44', NULL, '2024-07-11 00:00:08'),
(1002, '2024-07-03', 'Done', 0, 'GP-10-269', 'Sheryll Ramirez', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Hardware Issues', 'Cannot open the computer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-03', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff checked the computer and found out the power supply was broken. ICT staff replace the damaged power supply with a spare but not damaged power supply.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Hardware Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-03 10:55:16', '2024-07-03 10:55:16', '2024-07-03 10:55:16', '2024-07-03 12:59:38', NULL),
(1003, '2024-07-03', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Email Support', 'Change email of SK15 laptop from [email protected] to [email protected] ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-03', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-03', NULL, NULL, NULL, NULL, NULL, NULL, 'Already change and activate the email ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-07-03 16:42:25', '2024-07-03 16:42:25', '2024-07-03 16:42:25', NULL, '2024-07-11 00:00:08'),
(1004, '2024-07-04', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Electrical', 'Disconnect all electrical and ground wire to rbg-line from main source.', '', '', '', '211', 'Bautista, Elmer', '2024-07-04', '', NULL, '', '2024-07-05', '2024-07-16', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect all electrical and ground wire to rbg-line from main source. all ready done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Manny Herrera', NULL, NULL, 'Noted and great respond', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1005, '2024-07-04', 'Done', 0, 'GP-08-224', 'Quilantang, Joy', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Software Issues', 'Installing new version of GPSS-A for maintenance in 9 computer.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-04', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staffs successfully installed the new version of GPSS-A for maintenance.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-04 10:12:25', '2024-07-04 10:12:25', '2024-07-04 10:12:25', '2024-07-04 10:36:42', NULL),
(1006, '2024-07-04', 'Done', 0, 'GP-08-224', 'Quilantang, Joy', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'System Issues', 'Assistance in installation of GPSS-A for Maintenance.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-04', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-07-04', NULL, NULL, NULL, NULL, NULL, NULL, 'Uninstall the existing GPSS-A for Maintenance and install the new version.\r\n(GPSS-A for Maintenance ver 4012.2024.06.05)', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-07-04 13:55:55', '2024-07-04 13:55:55', '2024-07-04 13:55:55', NULL, '2024-07-12 00:00:03'),
(1007, '2024-07-04', 'cancelled', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Gpi2/3 floor lane for repaint', '', '', '', '381', 'Sheryll Ramirez', '2024-07-05', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', 'Please provide attachment or approve lay out', '2024-07-11', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1008, '2024-07-05', 'Done', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Others TS', 'Set-up laptop and create acc (QC Assembly Audit).', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-05', '2024-07-12', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff has completed the setup and created an account (QC Assembly Audit), which has already been deployed.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-05 09:57:39', '2024-07-08 09:12:48', '2024-07-08 09:12:48', NULL, '2024-07-14 00:00:14'),
(1009, '2024-07-05', 'Done', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Mechanical', 'Weighing scale for calibration\r\n(last calibration date label is year august 26, 2016)', '', '', '', '263', 'Sheryll Ramirez', '2024-07-05', '', NULL, '', '2024-07-09', '2024-07-18', 'GP-12-356', 'Ramirez, Francisco', NULL, '2024-07-30', 'July 9 -Request quotation to P.IMES / MESCO', 'July 11- request quotation to Sonju\r\nJuly 17- request quotation tp Scientific Standard Services.\r\nJuly 18- Forward the quotation to Sir Mar ,waiting for their approval.', NULL, 'July 23, 2024', 'July 23, 2024', NULL, 'Based on the advice from Sir Mar and Mam She, please inquire with other calibration lab. for a lower cost.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1010, '2024-07-05', 'Done', 0, 'GP-11-278', 'Pacuan, Mary Jane', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Others TS', 'UPS are not functioning ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-08', '2024-07-13', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'Replace new battery and deploy temporary Old UPS. ', 'Replacement of new UPS ', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-08 10:07:38', '2024-07-10 12:04:21', '2024-07-10 12:04:21', NULL, '2024-07-18 00:00:07'),
(1011, '2024-07-05', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Others', 'We request to make a 4 portion of spot weld to the item of stanchion mount single (ad-sm (wz) 58 pcs to more stronger.', '', '', '', '211', 'Bautista, Elmer', '2024-07-05', '', NULL, '', '2024-07-09', '2024-07-18', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'We conduct welding a Four portion of spot weld to the item of stanchion mount single (ad-sm (wz) 58 pcs.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Manny Herrera', NULL, NULL, 'Good Job.', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1012, '2024-07-08', 'Done', 0, 'GP-13-361', 'Alinio, Shiela', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Printer has error code 021-404 of Revoria on Checksheet ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-08', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff conclude that the error of the printers (Fujifilm) was due to the server (AWMS). Though it is not affecting the printer, scanning, or copying of the printer, we will further investigate and solve the said problem.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-08 10:04:57', '2024-07-09 09:12:19', '2024-07-09 09:12:19', NULL, '2024-07-16 00:00:12'),
(1013, '2024-07-08', 'rated', 0, 'GP-23-778', 'Caela Ericka Manansala', '[email protected]', 'Accounting', 'Technical Support', 'mis', 'Account Issues', 'Can't Log in on the computer. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-08', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'The computer booted using the other disk, changed the setting from the BIOS and made the NVME the primary boot. Rejoined the computer to the domain, reset the password of the account 'c.manansala', and logged in the account with the new password. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-08', 'Caela Ericka Manansala', NULL, NULL, 'Satisfied for the wonderful service. Thank you. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Account Issues', 'High Priority', 'Mark Ely Aragon', '2024-07-08 10:04:53', '2024-07-08 12:41:04', '2024-07-08 12:41:04', NULL, NULL),
(1014, '2024-07-08', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Relayout', 'Request to assist lay-out of prod. Supplies/admin extension storage/calibration area/dok for disconnection and connection of electrical wiring.', '', '', '', '211', 'Bautista, Elmer', '2024-07-08', '', NULL, '', '2024-07-09', '2024-07-18', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Conduct re layout and re wiring of new layout of office and preparation of screw.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Manny Herrera', NULL, NULL, 'Noted and great cooperation.', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1015, '2024-07-08', 'rated', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Broken tiles for repair (gpi2 office)', '', '', '', '381', 'Sheryll Ramirez', '2024-07-08', '', NULL, '', '2024-07-09', '2024-07-18', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Put the epoxy to the damage flooring.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-17', 'Nacor Jr., Lorie', NULL, NULL, 'OK', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1016, '2024-07-08', 'head', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', 'Job Order', 'mis', 'Add/Delete Email Account', 'Additional Email for QC Audit ', NULL, NULL, NULL, NULL, 'Wilma, Logrono', '', NULL, NULL, NULL, NULL, NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', NULL, NULL, NULL, NULL, NULL),
(1017, '2024-07-08', 'Done', 0, 'GP-15-437', 'Alega, Rose Ann', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Network Connectivity', 'Need Connection on SunTrust GPI 8. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-08', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Already add script to change IP. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-07-08 10:04:49', '2024-07-09 07:48:06', '2024-07-09 07:48:06', NULL, '2024-07-16 00:00:12'),
(1018, '2024-07-08', 'Done', 0, 'GP-01-115', 'Wilma, Logrono', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Connecting QC laptop in printer (192.168.5.111)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-08', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer (192.168.5.111).', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-08 10:01:13', '2024-07-08 10:01:13', '2024-07-08 10:01:13', NULL, '2024-07-14 00:00:14'),
(1019, '2024-07-08', 'rated', 0, 'GP-14-405', 'Dolores Castro', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Setup Audio / Video', 'Conference 4 Projector Setup 3:00 o'clock PM. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-09', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff already set-up the projector in conference 4 ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-09', 'Dolores Castro', NULL, NULL, 'OKAY', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Mark Ely Aragon', '2024-07-09 07:13:49', '2024-07-09 08:51:46', '2024-07-09 08:51:46', NULL, NULL),
(1020, '2024-07-08', 'Done', 0, 'GP-16-461', 'Alonzo, John Lord', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Connection on printer (192.168.5.17)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-08', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-08', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the printer.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-08 12:41:52', '2024-07-08 12:41:52', '2024-07-08 12:41:52', NULL, '2024-07-14 00:00:14'),
(1021, '2024-07-08', 'rated', 0, 'GP-12-359', 'Tamayo, Julius Cezar', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Request of re painting of hallway lining of gpi-6', '', '', '', '524', 'Sheryll Ramirez', '2024-07-12', '', NULL, '', '2024-07-12', '2024-07-23', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-07-23', 'Need to request materials needed (July 12, 2024)', 'July 18, 2024 The requested items/materials have revision ( need actual picture)\r\n7-23-2024 Waiting for the delivery of materials', NULL, 'July 12, 2024', 'July 23, 2024', NULL, 'July 29- items was delivered \r\nJuly 29-Performed the activity, during afternoon overtime.\r\nPut lining on the floor using masking tape.\r\nPainting the floor (yellow)\r\nTampering the old paint using green paint.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-02', 'Tamayo, Julius Cezar', NULL, NULL, 'good', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1022, '2024-07-08', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'GPI-5 canteen telephone connection', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-11', 'for checking', 'waiting for the decision of Admin-HB for the replacement of the telephone.', NULL, 'July 09, 2024', 'July 10, 2024', NULL, 'The replacement will be provided by the canteen concessionaire. Done', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Sangalang, Elaine', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Marlyn Ilagan', '2024-07-09 07:13:33', '2024-07-09 16:00:33', '2024-07-11 13:42:02', NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(1023, '2024-07-08', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Job Order', 'mis', 'Add/Delete Email Account', 'Delete and Update emails for two QA Staff Angelyn P. Maullon and Jane Carla D. Eguia. \r\n', NULL, '', '', NULL, 'Lontoc, Arlene', '2024-07-10', '[email protected] and [email protected] (already inactive) then assign new emails for new QA Staff', NULL, '', '2024-07-11', '2024-07-11', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully changed the emails [email protected] and [email protected] to [email protected] and [email protected].', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Dela Cruz, Jaymar', NULL, NULL, '', 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-07-11 13:49:49', '2024-07-12 12:39:37', '2024-07-12 12:39:37', NULL, NULL),
(1024, '2024-07-09', 'rated', 0, 'GP-08-216', 'Naungayan, Wennie', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Email Support', 'Email of Ms. Wennie was late receiving from supplier. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-09', '2024-07-16', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'The ICT team checked and tested the email of Ms. Wennie, and upon investigation, we concluded that the problem was on the supplier's side.', 'Please coordinate the said problem to the supplier.', 0, NULL, NULL, '5', '5', 5.00, NULL, 'Naungayan, Wennie', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Email Support', 'Medium Priority', 'Mark Ely Aragon', '2024-07-09 08:37:33', '2024-07-09 09:18:39', '2024-07-09 09:18:39', NULL, '2024-07-16 00:00:12'),
(1025, '2024-07-09', 'cancelled', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To fabricate storage for gs tools and materials', '', '', '', '105', 'Monzon, Rio', '2024-07-10', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', 'Multiple entry', '2024-07-11', 'Ramirez, Francisco', 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1026, '2024-07-09', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To repair wall at gpi-5 new male cr', '', '', '', '105', 'Monzon, Rio', '2024-07-10', '', NULL, '', '2024-07-11', '2024-07-20', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Repair the damage wall and flooring by using fixing of tiles. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1027, '2024-07-09', 'Done', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'Request for gs stock room area at gpi-8', '', '', '', '105', 'Monzon, Rio', '2024-07-10', '', NULL, '', '2024-07-11', '2024-07-20', 'GP-22-756', 'Frank B. Apil', NULL, '2024-07-20', 'purchase needed material ', NULL, NULL, 'July 11, 2024', NULL, NULL, 'Receive purchased materials 07/29/24, start fabrication 07/29/24 until 08/01/24. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1028, '2024-07-09', 'Done', 0, 'GP-98-079', 'Pinpin, Cherry', '[email protected]', 'Production Support', NULL, 'fem', 'Electrical', 'Disconnection of electrical connection at gpi-7 rbg table (supplies area).', '', '', '', '822', 'Pinpin, Cherry', '2024-07-09', NULL, NULL, '', '2024-07-11', '2024-07-20', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnection of electrical connection at gpi-7 rbg table (supplies area). all ready done the two table.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1029, '2024-07-09', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Cover the open holes at gpi 9 segregation area.', '', '', '', '427', 'Sheryll Ramirez', '2024-07-12', '', NULL, '', '2024-07-17', '2024-07-26', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'fabricate cover for open holes then painting at GPI 9 segregation area.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '../upload_files/2407-0913-0955.for j.o.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1030, '2024-07-09', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Data Issues (Loss, Corrupted)', 'Unable to Delete certain file here \\192.168.5.250ppicPM_PURCHASINGENGINEERING CHANGE NOTICE (ECN) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-09', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-10', 'for retrieval', NULL, NULL, 'July 09, 2024', NULL, NULL, 'Already configured the user g.desacula to access the PM_PurchasingECN directory. Done.\r\nPS. Kindly restart your computer/laptop for the config to take effect.', ' Kindly restart your computer/laptop for the config to take effect.', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Data Issues (Loss, Corrupted)', 'High Priority', 'Mark Ely Aragon', '2024-07-09 15:52:12', '2024-07-09 16:01:19', '2024-07-10 07:46:15', NULL, '2024-07-18 00:00:07'),
(1031, '2024-07-09', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Repair damage floor at gpi 9.', '', '', '', '427', 'Sheryll Ramirez', '2024-07-12', '', NULL, '', '2024-07-17', '2024-07-26', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'this activity is for schedule.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1032, '2024-07-09', 'Done', 0, 'GP-13-361', 'Alinio, Shiela', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Checking of Sticker Printer Problem of old laptop in Checksheet Area', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-09', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Proceed to checksheet area and check possible problem. IP conflict s the possible problem why the laptop cannot print to the sticker printer. Change with a replacement vacant IP', 'To change the existing laptop to an updated workstation computer', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Vivo, Felmhar', '2024-07-09 15:58:52', '2024-07-09 15:58:52', '2024-07-09 15:58:52', NULL, '2024-07-16 00:00:12'),
(1033, '2024-07-09', 'Done', 0, 'lem', 'Lemuel Semillano', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Hardware Issues', 'Deployment of 2 Tablet for Production Iboard output monitoring', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-09', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-09', NULL, NULL, NULL, NULL, NULL, NULL, 'Assess installation area of 2 tablet. Upon checking, the existing HDMI cable is short and need to adjust the area installation. Communicate to DOK and Prod Support for the jig to use in Output monitoring', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Hardware Issues', 'Medium Priority', 'Vivo, Felmhar', '2024-07-09 16:04:30', '2024-07-09 16:04:30', '2024-07-09 16:04:30', NULL, '2024-07-16 00:00:12'),
(1034, '2024-07-10', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check door knob at gpi-7 female cr cubicle #5', '', '', '', '105', 'Monzon, Rio', '2024-07-10', '', NULL, '', '2024-07-11', '2024-07-20', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Done repair female cubicle no.5 door knob at GPI-7 Building.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1035, '2024-07-10', 'Done', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Others TS', 'Create Powerpoint Presentation Slide design for QC Kaizen Guts to be presented to Head Office Kaizen Competition', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-10', '2024-07-17', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Create template for Glory inspired powerpoint to be used in Guts Presentation.\r\nEndorsed to the QC department members the Powerpoint template layout. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-07-10 10:58:28', '2024-07-11 12:08:31', '2024-07-11 12:08:31', NULL, '2024-07-19 00:00:09'),
(1036, '2024-07-10', 'Done', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Others TS', 'To check telephone problem in GPI-1 Canteen. No dial tone.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-10', '2024-07-17', 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Performed troubleshooting and line tracing of telephone line.\r\nProblem encountered when dialing. Replaced the local number to 361', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-07-10 11:00:11', '2024-07-12 15:59:24', '2024-07-12 15:59:24', NULL, '2024-07-20 00:00:15'),
(1037, '2024-07-10', 'Done', 0, 'GP-15-426', 'Calderon, Naomi', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Setup Audio / Video', 'Set up Projector on Conference Room 1 on 1:00 o'clock PM ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-10', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff (Mr. Aragon) successfully set up the projector.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Mark Ely Aragon', '2024-07-10 13:22:51', '2024-07-10 15:01:15', '2024-07-10 15:01:15', NULL, '2024-07-18 00:00:07'),
(1038, '2024-07-10', 'Done', 0, 'GP-14-397', 'Lontoc, Arlene', '[email protected]', 'Quality Assurance', NULL, 'fem', 'Electrical', 'Request to fix or relayout the wirings in qa area (for safety purposes) much better locate the wirings near the wall', '', '', '', '118', 'Lontoc, Arlene', '2024-07-10', NULL, NULL, '', '2024-07-11', '2024-07-20', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-07-20', 'Schedule for tommorrow OT (July 18).', 'Did not perform on July 18 due to re-layout in GPI 5', NULL, 'July 17, 2024', 'July 23, 2024', NULL, 'conduct re-layout of electrical supply and outlet to eliminate possible hazard.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1039, '2024-07-10', 'rated', 0, 'GP-23-767', 'Dela Cruz, Jaymar', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Others', 'Extension cord to be used by qa dept.', '', '', '', '118', 'Reyes, Raymond', '2024-07-12', '', NULL, '', '2024-07-12', '2024-07-23', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'fabricate extension cord.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Dela Cruz, Jaymar', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1040, '2024-07-10', 'Done', 0, 'GP-08-224', 'Quilantang, Joy', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Request a scanning connection on the RICOH (192.168.5.135) for PCs (j.quilantang and p1.office).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-10', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-10', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully connected the two PCs (j.quilantang and p1.office) on RICOH (192.168.5.135).', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-10 13:25:41', '2024-07-10 13:25:41', '2024-07-10 13:25:41', '2024-07-10 14:11:15', NULL),
(1041, '2024-07-11', 'Done', 0, 'GP-15-442', 'Alvarez, Krizel Micah Anne', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Electrical', 'To correct 2024 gpi 5 wem findings (please see attached file)', '', '', '', '519', 'Reyes, Raymond', '2024-07-12', '', NULL, '', '2024-07-12', '2024-07-23', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-07-23', '1.Packaging area ( Additional Light in area) July 11,2024\r\n2. Installed secondary light in G181 area ( July 17,2024)\r\n3. Replaced LED Light then installed additional fixtures ( July 12,2024)', NULL, NULL, 'July 23, 2024', NULL, NULL, 'Finish the installation of additional lighting fixtures and LED lights into the areas that failed in WEM result at GPI-5.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '../upload_files/2407-1108-1644.WEM GPI 5 Job Order (Packaging, G181, Parts Inspection).pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1042, '2024-07-11', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Printer Installation of all the member of parts control on GPI 9. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-11', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staffs successfully installed the printer (192.168.5.55) in all members of parts control on GPI 9.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-11 12:27:32', '2024-07-12 08:04:09', '2024-07-12 08:04:09', NULL, '2024-07-20 00:00:15'),
(1043, '2024-07-11', 'Done', 0, 'GP-10-268', 'Yalung, Idhonnah', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Installation of Scanner in all the member of Part Receiving on GPI 5. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-11', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Done installing the scanner of all the members of Part Receiving on GPI 5 with Sir Yuki.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-11 12:27:47', '2024-07-11 14:01:53', '2024-07-11 14:01:53', NULL, '2024-07-19 00:00:09'),
(1044, '2024-07-11', 'rated', 0, 'GP-11-303', 'Malubay, Michelle', '[email protected]', 'Parts Production', 'Technical Support', 'mis', 'Software Issues', 'G-FIAS is not opening on GPSS-P tablet.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-11', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-11', NULL, NULL, NULL, NULL, NULL, NULL, 'Re-installation of G-FIAS on tablet GPSSP-005.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-02', 'Malubay, Michelle', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Bobby John Solomon', '2024-07-11 12:29:44', '2024-07-11 12:29:44', '2024-07-11 12:29:44', NULL, '2024-07-19 00:00:09'),
(1045, '2024-07-11', 'Done', 0, 'GP-15-429', 'Gawaran, Antonieta', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Others', 'For repair damage chair', '', '', '', 'LOCAL -509', 'Sheryll Ramirez', '2024-07-12', '', NULL, '', '2024-07-12', '2024-07-23', 'CG-1420', 'Jenmark Rondero', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Repaired damage chair at parts receiving area.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1046, '2024-07-12', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Others TS', 'Request to transfer of scanning account form old laptop to my desktop. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully transferred scanning account from old laptop to new laptop.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Manny Herrera', NULL, NULL, 'Great respond', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-12 07:29:54', '2024-07-12 07:57:51', '2024-07-12 07:57:51', NULL, NULL),
(1047, '2024-07-12', 'rated', 0, 'GP-14-405', 'Dolores Castro', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Network Connectivity', 'Can't access connect to the http://glory.g-dms.com/ link', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'The ICT staff found that the DNS server configuration on the laptop was incorrect. They subsequently corrected the DNS settings to the proper ones.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-12', 'Dolores Castro', NULL, NULL, 'Performed my request good and fast. No problem encountered after.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-12 08:02:54', '2024-07-12 08:02:54', '2024-07-12 08:02:54', '2024-07-12 09:19:41', NULL),
(1048, '2024-07-12', 'rated', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Electrical', 'Light connection ( 2 table racks )', '', '', '', '112', 'Pinpin, Cherry', '2024-07-12', '', NULL, '', '2024-07-17', '2024-07-26', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Connect 2 table lighting fixture at production support supplies. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-26', 'Pagatpat, Annalyn', NULL, NULL, 'satisfied', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1049, '2024-07-12', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Software Issues', 'Gsense file unable to print has an error displayed. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Already Troubleshoot the computer of Ms, Benilyn regarding on print error on the Gsense file', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-18', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-12 08:30:45', '2024-07-12 09:27:25', '2024-07-12 09:27:25', NULL, NULL),
(1050, '2024-07-12', 'Done', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Account Issues', 'Issue with Deserie Baldesimo's account.\r\nThe workstation is still using the "C2306-020" instead of the "d.baldesimo" account.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Completely transferred files, programs, and accounts with Sir Yuki.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Account Issues', 'High Priority', 'Bobby John Solomon', '2024-07-12 08:58:34', '2024-07-12 11:25:55', '2024-07-12 11:25:55', NULL, '2024-07-20 00:00:15'),
(1051, '2024-07-12', 'Done', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Network Connectivity', 'Is having a network connection problem; connection connects and disconnects occasionally.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'Re-crimped the Ethernet cable connected to the PC. Network is now stable. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-12 09:11:22', '2024-07-12 09:11:22', '2024-07-12 09:11:22', '2024-07-12 12:17:55', NULL),
(1052, '2024-07-12', 'Done', 0, 'GP-15-449', 'Odviar, Melody', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Others TS', 'DRSS link cannot open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff updates the microsoft edge and then change the links of the DRSS to a new one.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-12 10:58:06', '2024-07-12 10:58:06', '2024-07-12 10:58:06', NULL, '2024-07-20 00:00:15'),
(1053, '2024-07-12', 'rated', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Others TS', 'No power UPS (already pullout the unit) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-18', 'ICT staff checked the UPS and found that the battery needed to be replaced.', NULL, NULL, 'July 18, 2024', NULL, NULL, 'ICT staff changed the old battery with a new one and it is ready to use again.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-26', 'Pagatpat, Annalyn', NULL, NULL, 'satisfied', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-12 14:37:17', '2024-07-18 10:19:57', '2024-07-18 10:20:51', NULL, '2024-07-26 00:00:22'),
(1054, '2024-07-12', 'Done', 0, 'GP-10-244', 'Yacon, Deserie', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Printer Access on Part Receiving Member on GPI 5 ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-12', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staffs are successfully installed the printer on Part Receiving Member on GPI 5 ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-12 14:37:18', '2024-07-12 15:20:51', '2024-07-12 15:20:51', NULL, '2024-07-20 00:00:15'),
(1055, '2024-07-12', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Printer Access of all Member Parts Control on GPI 9. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Done giving Printer Access of all Member Parts Control on GPI 9. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-12 14:37:22', '2024-07-15 07:22:30', '2024-07-15 07:22:30', NULL, '2024-07-21 00:00:01'),
(1056, '2024-07-12', 'rated', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', 'Job Order', 'fem', 'Mechanical', 'Check wall fan if functioning', '', '', '', '112', 'Pinpin, Cherry', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'we checked and inspect the wall was already damage and subject for replacement.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-26', 'Pagatpat, Annalyn', NULL, NULL, 'satisfied', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1057, '2024-07-12', 'rated', 0, 'GP-12-346', 'Deseo, Cherrylyn', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Installation of Printer on her computer. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-12', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Completed the installation of Printer on her computer; also installed the scanner.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-16', 'Deseo, Cherrylyn', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-12 14:37:26', '2024-07-15 07:59:09', '2024-07-15 07:59:09', NULL, NULL),
(1058, '2024-07-12', 'cancelled', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Put floor markings (yellow tape)', '', '', '', '427', 'Sheryll Ramirez', '2024-07-15', '', NULL, '', '2024-07-17', '2024-07-26', 'GP-12-356', 'Ramirez, Francisco', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '../upload_files/2407-1215-4402.Warehouse GPI-09 Lay-out_20210426.pdf', 'wrong input of details', NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1059, '2024-07-15', 'Done', 0, 'GP-00-098', 'Mendoza, Elarde', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Others TS', 'Computer on Crating Area wasn't open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-15', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Computer is now working fine. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-15 07:40:01', '2024-07-15 08:02:59', '2024-07-15 08:02:59', NULL, '2024-07-21 00:00:01'),
(1060, '2024-07-15', 'Done', 0, 'GP-00-098', 'Mendoza, Elarde', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'The computer at crating area was stuck on boot. Error message reported by user was "Disk Error"', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-15', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Checked the computer and reconfigure boot settings in the BIOS. Performed restart to the computer and test if the problem will still exist.\r\n\r\nProblem is solved. Endorsed to the computer user', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Kevin Roy Marero', '2024-07-15 09:31:14', '2024-07-15 14:23:57', '2024-07-15 14:23:57', NULL, '2024-07-21 00:00:01'),
(1061, '2024-07-15', 'Done', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'Repair of gpi-1 canteen sink.', '', '', '', '105', 'Monzon, Rio', '2024-07-15', '', NULL, '', '2024-07-17', '2024-07-26', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-26', 'for request materials ', 'Waiting for the delivery of items', NULL, 'July 17, 2024', 'July 23, 2024', NULL, 'we recieve the materials on july 29, and we fabricate and repair the canteen sink strainer in GPI-1 canteen.\r\nalready done.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1062, '2024-07-15', 'Done', 0, 'GP-10-246', 'Bernal, Fernaliza', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Software Issues', 'Check of GStarM application. Not running.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-15', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking, the computer is one of the new units deployed this year. GStar M application is not yet installed.\r\nPerform installation of GStarM application', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Vivo, Felmhar', '2024-07-15 12:15:53', '2024-07-15 12:15:53', '2024-07-15 12:15:53', NULL, '2024-07-21 00:00:01'),
(1063, '2024-07-15', 'Done', 0, 'GP-10-246', 'Bernal, Fernaliza', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Software Issues', 'GPSS Application on Google Chrome not working properly.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-15', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Fixed GPSS Application through reinstalling Google Chrome.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-15 12:59:04', '2024-07-15 12:59:04', '2024-07-15 12:59:04', '2024-07-15 12:59:28', NULL),
(1064, '2024-07-15', 'Done', 0, 'GP-06-190', 'Alcantara, Filipina', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'System Issues', 'Assistance in checking lot on GLR that is not appearing on GPMS. (Operator Account)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-15', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-07-15', NULL, NULL, NULL, NULL, NULL, NULL, 'Checking the actual encoding of Lot.\r\nFound out that although lot has been recorded by requestor, it is not appearing on operator's tablet.\r\nIn-active the existing lot.\r\nTry re-encoding the lot.\r\n\r\nIssue was fixed.', 'Double check the entry. Avoid blank spaces during copying from excel and pasting to the system', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-07-15 15:48:18', '2024-07-15 15:48:18', '2024-07-15 15:48:18', NULL, '2024-07-21 00:00:01'),
(1065, '2024-07-16', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', '6(SIX) Pc cannot printer in (192.168.5.55) printer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-16', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-16', NULL, NULL, NULL, NULL, NULL, NULL, 'The ICT team changed the configuration (config>accounting) to ppic-wh, and it works.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-16 09:25:14', '2024-07-16 09:25:14', '2024-07-16 09:25:14', NULL, '2024-07-23 00:00:05'),
(1066, '2024-07-16', 'Done', 0, 'GP-11-308', 'Irene Olaes', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Network Connectivity', 'Need access to Google Translate. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'already provided access to google translate. done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Mark Ely Aragon', '2024-07-17 07:17:27', '2024-07-17 15:11:22', '2024-07-17 15:11:22', NULL, '2024-07-25 00:00:03'),
(1067, '2024-07-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check loose thread sink faucet at gpi-1 new female cr', '', '', '', '105', 'Monzon, Rio', '2024-07-17', '', NULL, '', '2024-07-17', '2024-07-26', 'CG-2298', 'Mark Jhace Buenavides', NULL, '2024-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon checking of faucet at GPI-1 New female CR is for replacement, and we replace the garden faucet. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-01', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1068, '2024-07-16', 'rated', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'Repair of driver's quarter table.', '', '', '', '105', 'Monzon, Rio', '2024-07-17', '', NULL, '', '2024-07-17', '2024-07-26', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'fabricate table using angle bar, provide 3/4 inch fly wood then conduct painting\r\nred oxide primer and international red at GPI 1. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-17', 'Dulce, Rinalyn', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1069, '2024-07-16', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check leak at lavatory #7 near agency coordinator's office at gpi-1', '', '', '', '105', 'Monzon, Rio', '2024-07-17', '', NULL, '', '2024-07-17', '2024-07-26', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Replacement of faucet at lavatory #7 near agency coordinator's office at gpi-1', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-01', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1070, '2024-07-16', 'Done', 0, 'GP-10-246', 'Bernal, Fernaliza', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Network Connectivity', 'No connection (PC of Ms. Bernal and Ms. Evangelista)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-16', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-16', NULL, NULL, NULL, NULL, NULL, NULL, 'Upon investigation, ICT staff checked the switch where they were connected and found out the said switch was off. ICT staff restarted the switch, and it works again. Also, the PCs of Ms. Bernal and Ms. Evangelista have a connection now and are ready to use again.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Network Connectivity', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-16 10:53:55', '2024-07-16 10:53:55', '2024-07-16 10:53:55', NULL, '2024-07-23 00:00:05'),
(1071, '2024-07-16', 'Done', 0, 'GP-07-210', 'Mojica, Jonar', '[email protected]', 'Production 1', 'Job Order', 'fem', 'Electrical', 'Lights and electric fan transfer due to relay out of line out machine', '', '', '', '519', 'Lemuel Semillano', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'CG-1420', 'Jenmark Rondero', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect the lights and electric fan (ceiling) 7-22-2024', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1072, '2024-07-16', 'Done', 0, 'GP-01-132', 'Cortez, Chona', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Hardware Issues', 'Mic not functioning during meeting ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-17', 'ICT staff checked the microphone configuration and found that the app (Microsoft Teams) has no access. ', NULL, NULL, 'July 17, 2024', NULL, NULL, 'ICT staff enabled the microphone for the app (Microsoft Teams), and it is now working.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Hardware Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-17 07:17:23', '2024-07-17 07:35:19', '2024-07-17 07:36:32', NULL, '2024-07-25 00:00:03'),
(1073, '2024-07-16', 'Done', 0, 'GP-16-473', 'Nacor Jr., Lorie', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Uneven flooring at gpi3 for repair (5s findings)', '', '', '', '381', 'Sheryll Ramirez', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'GP-12-356', 'Ramirez, Francisco', NULL, '2024-07-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Put epoxy in the flooring of GPI3.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1074, '2024-07-16', 'Done', 0, 'GP-17-548', 'Dela Vega, Mary Jane', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'GstarM cannot print.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-16', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-16', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff reinstalled GstarM, and now it can print it.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-16 15:13:31', '2024-07-16 15:13:31', '2024-07-16 15:13:31', NULL, '2024-07-23 00:00:05'),
(1075, '2024-07-16', 'Done', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', '6(SIX) Pc cannot scan in (192.168.5.55) printer', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-16', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-16', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff created a new contact in the address book for the six users, and it is ready to be use.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-16 15:19:11', '2024-07-16 15:19:11', '2024-07-16 15:19:11', NULL, '2024-07-23 00:00:05'),
(1076, '2024-07-17', 'Done', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'Others TS', 'Installation of Printer from GPI-9 to Mr. Jayson Torres Computer. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully installed printer and scanner on Mr. Jayson Torres.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-17 10:35:29', '2024-07-17 10:59:58', '2024-07-17 10:59:58', NULL, '2024-07-25 00:00:03'),
(1077, '2024-07-17', 'Done', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Others TS', 'Attend Kaizen Guts Slideshow checking in Conference 5 with President', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Attended checking of powerpoint in Conference 5. Take note and create schedule for the revision of graphics in Presentation slides', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-07-17 12:16:42', '2024-07-17 12:16:42', '2024-07-17 12:16:42', NULL, '2024-07-25 00:00:03'),
(1078, '2024-07-17', 'Done', 0, 'GP-08-222', 'Odasco, Jesper', '[email protected]', 'Parts Inspection', 'Technical Support', 'mis', 'Email Support', 'Folder in outlook cannot find.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff restarted Outlook, and it solved the problem.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Email Support', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-17 14:13:17', '2024-07-17 14:13:17', '2024-07-17 14:13:17', NULL, '2024-07-25 00:00:03'),
(1079, '2024-07-17', 'Done', 0, 'GP-00-098', 'Mendoza, Elarde', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Software Issues', 'Local print service is not Running. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-18', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Reformat the PC because of a service error and its printer spooler is not working properly; printer service is now running.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-18 07:14:28', '2024-07-18 16:14:52', '2024-07-18 16:14:52', NULL, '2024-07-26 00:00:22'),
(1080, '2024-07-17', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Software Issues', 'Excel file wasn't running (Having Debug error) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-17', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-17', NULL, NULL, NULL, NULL, NULL, NULL, 'Redownload the file and add file location as trusted location ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-18', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-17 15:33:17', '2024-07-17 15:33:17', '2024-07-17 15:33:17', '2024-07-17 15:43:27', NULL),
(1081, '2024-07-18', 'rated', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check bowl cover at gpi-1 japanese cr', '', '', '', '105', 'Calalo, Gemma', '2024-07-23', '', NULL, '', '2024-07-23', '2024-08-01', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Fix using sealant then wait to dry at gpi-1 Japanese cr.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-01', 'Sangalang, Elaine', NULL, NULL, '', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1082, '2024-07-18', 'rated', 0, 'GP-23-781', 'JANELLA MAE FRANCISCO', '[email protected]', 'Administration', 'Technical Support', 'mis', 'Setup Audio / Video', 'Setup Projector on Conference 1 at 8:00 AM for Pregnancy Symposium. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-18', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'Done Set up Projector and teams', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-19', 'JANELLA MAE FRANCISCO', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Setup Audio / Video', 'Low Priority', 'Mark Ely Aragon', '2024-07-18 08:35:57', '2024-07-18 16:20:19', '2024-07-18 16:20:19', NULL, NULL),
(1083, '2024-07-18', 'Done', 0, 'GP-12-335', 'Alisangco, Ronel', '[email protected]', 'Production 1', 'Job Order', 'fem', 'Electrical', 'Electrical dis-connection of BRM-10 line due to line transfer (from BRM-10 to RBW-200 reworked area)', '', '', '', '511', 'Lemuel Semillano', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'disconnect and transfer inspection table then relay-out inspection table according to plan.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1084, '2024-07-18', 'Done', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'System Issues', 'ContentsCreater2 is cannot download.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-18', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-18', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT personnel discovered that the user's inability to download a file is due to a lack of credentials (192.168.5.108). ICT inputs a credential and is now able to download.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'System Issues', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-18 15:29:26', '2024-07-18 15:29:26', '2024-07-18 15:29:26', '2024-07-19 14:52:18', NULL),
(1085, '2024-07-19', 'rated', 0, 'GP-10-247', 'Gonzales, Digna', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Software Issues', 'Macros on excel problem on their staff computer. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-22', '2024-07-27', 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Changed region and language to Japan. Added the folder Download and its sub-folders to the Trusted Location. Excel is now working; already tested for its stability.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-25', 'Gonzales, Digna', NULL, NULL, 'VERY GOOD', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Software Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-22 12:57:46', '2024-07-25 08:01:40', '2024-07-25 08:01:40', NULL, NULL),
(1086, '2024-07-19', 'Done', 0, 'GP-12-335', 'Alisangco, Ronel', '[email protected]', 'Production 1', 'Job Order', 'mis', 'Additional and Network Relayout', 'Production 1 BRM-10 Network transfer.', '', '', '', '', 'Lemuel Semillano', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-22', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully relayout Mr. Alisangco's PC in Production 1 BRM-10.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Abraham Kristopher Alexander Orqueza', '2024-07-22 09:59:15', '2024-07-22 15:14:27', '2024-07-22 15:14:27', NULL, '2024-07-28 00:00:08'),
(1087, '2024-07-22', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Electrical', 'Dis connect of electrical wiring to screw preparation area on gpi-7 due to need to transfer to gpi-5', '', '', '', '211', 'Bautista, Elmer', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'GP-17-516', 'Natuel, Jonathan Jr.', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Dis-connect the electrical wirings into the tables of screw preparation at GPI-7 to transfer at GPI-5 building.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-23', 'Manny Herrera', NULL, NULL, 'ok noted good job.', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `request` (`id`, `date_filled`, `status2`, `late`, `requestorUsername`, `requestor`, `email`, `department`, `request_type`, `request_to`, `request_category`, `request_details`, `computerName`, `reqstart_date`, `reqfinish_date`, `telephone`, `approving_head`, `head_approval_date`, `head_remarks`, `approving_admin`, `admin_remarks`, `admin_approved_date`, `expectedFinishDate`, `assignedPersonnel`, `assignedPersonnelName`, `approved_finish_date`, `actual_finish_date`, `action1`, `action2`, `action3`, `action1Date`, `action2Date`, `action3Date`, `action`, `recommendation`, `approved_reco`, `icthead_reco_remarks`, `confirm_finish_date`, `rating_delivery`, `rating_quality`, `rating_final`, `rateDate`, `ratedBy`, `perform_by`, `technical_remarks`, `requestor_remarks`, `month`, `year`, `attachment`, `reasonOfCancellation`, `dateOfCancellation`, `cancelledBy`, `accept_termsandconddition`, `onthespot_ticket`, `ticket_category`, `category_level`, `ticket_filer`, `ict_approval_date`, `first_responded_date`, `completed_date`, `requestor_approval_date`, `ticket_close_date`) VALUES
(1088, '2024-07-22', 'Done', 0, 'GP-22-720', 'Jayson Torres', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Connection in printer(192.168.5.55) and printer (EPSON L15150).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-22', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff created a permission account for him to connect to the printer (Apeos 2560). And in EPSON L15150, ICT staff connected him by installing the driver for the said printer.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-22 08:19:11', '2024-07-22 08:19:11', '2024-07-22 08:19:11', NULL, '2024-07-28 00:00:08'),
(1089, '2024-07-22', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Electrical', 'To check or replace the 1 unit of led exit signage at canteen area (es-1-033) and repair of door closer at near capacitor bank exit door(previous vmi area)', '', '', '', '120', 'Reyes, Raymond', '2024-07-22', '', NULL, '', '2024-07-22', '2024-07-31', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'Pull out the exit signage then replace new one.( 7-23-2024)\r\nRepair the door closer near capacitor bank. ( 7-23-2024)', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-23', 'Joya, Renan', NULL, NULL, 'Thank you for immediate response and action', 'Jul', '2024', '../upload_files/2407-2209-1920.LED Exit signage and Door Closer.pdf', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1090, '2024-07-22', 'rated', 0, 'GP-23-761', 'Jamie Domol', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Installation of Canon printer. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-22', '2024-07-27', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Done Installation of Canon LBP 6000 on Jamie's Computer. ', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-23', 'Jamie Domol', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Mark Ely Aragon', '2024-07-22 12:57:14', '2024-07-22 15:50:17', '2024-07-22 15:50:30', NULL, NULL),
(1091, '2024-07-22', 'Done', 0, 'GP-20-702', 'Jordan, Carmela', '[email protected]', 'Quality Assurance', 'Job Order', 'fem', 'Electrical', 'Minor works - transfer of electrical wires such as extension cord for pc of eohs staff. Due to transfer of designated table.', '', '', '', '981-212', 'Reyes, Raymond', '2024-07-23', '', NULL, '', '2024-07-23', '2024-08-01', 'CG-2387', 'Alcala, Jansel', NULL, '2024-07-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Request to FEM in GPI1 the materials needed.\r\nAssemble two sets of two gang outlet then installed in QA and PPD Office.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1092, '2024-07-22', 'Done', 0, 'GP-18-576', 'Abueni, Leonardo', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Problem in scanning. User profiles went missing.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-23', '2024-07-30', 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-23', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staffs are successfully installed the scanner on Part Receiving Member on GPI 5 ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Printer Connectivity Issues', 'Medium Priority', 'Bobby John Solomon', '2024-07-23 07:04:27', '2024-07-23 07:50:27', '2024-07-23 07:50:27', NULL, '2024-07-30 00:00:25'),
(1093, '2024-07-22', 'Done', 0, 'GP-20-701', 'Tagle, John Yori ', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Data Issues (Loss, Corrupted)', 'Files (Reports) on 192.168.5.250 has been deleted. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-22', '2024-07-27', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Files has been restored on 250 ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Data Issues (Loss, Corrupted)', 'High Priority', 'Mark Ely Aragon', '2024-07-22 15:53:31', '2024-07-22 15:57:02', '2024-07-22 15:57:02', NULL, '2024-07-28 00:00:08'),
(1094, '2024-07-22', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'System Issues', 'Problem in updating attachments in GRPIS.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-22', NULL, 'GP-22-740', 'Bobby John Solomon', NULL, '2024-07-22', NULL, NULL, NULL, NULL, NULL, NULL, 'Clearing browser cache and history.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-07-22 15:01:29', '2024-07-22 15:01:29', '2024-07-22 15:01:29', NULL, '2024-07-28 00:00:08'),
(1095, '2024-07-22', 'inprogress', 0, 'GP-08-215', 'Asuelo, Oscar Jr.', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Others TS', 'Modify the access for checksheet inside 192.168.5.250.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-29', '2024-08-03', 'GP-22-729', 'Kevin Roy Marero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-29 12:00:05', NULL, NULL, NULL, NULL),
(1096, '2024-07-22', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'NDR / EDR Detection', 'A highly privileged credential is being used for the first time on a client device.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-29', '2024-07-31', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-29', NULL, NULL, NULL, NULL, NULL, NULL, 'already responded to the detection. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'NDR / EDR Detection', 'Critical', 'Marlyn Ilagan', '2024-07-29 12:00:20', '2024-07-29 15:29:53', '2024-07-29 15:29:53', NULL, NULL),
(1097, '2024-07-22', 'Done', 0, 'CG-2758', 'Marlyn Ilagan', '[email protected]', 'ICT', 'Technical Support', 'mis', 'NDR / EDR Detection', 'A highly privileged credential is being used for the first time on a client device.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-30', '2024-08-01', 'GP-22-729', 'Kevin Roy Marero', NULL, '2024-07-30', NULL, NULL, NULL, NULL, NULL, NULL, 'already responded to the detection. Done', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'NDR / EDR Detection', 'Critical', 'Marlyn Ilagan', '2024-07-30 07:20:46', '2024-07-30 15:40:17', '2024-07-30 15:40:17', NULL, NULL),
(1098, '2024-07-23', 'rated', 0, 'GP-23-778', 'Caela Ericka Manansala', '[email protected]', 'Accounting', 'Technical Support', 'mis', 'Account Issues', 'The account has been locked base on the error message on the computer', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-25', '2024-08-01', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Done unlock the account', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-25', 'Caela Ericka Manansala', NULL, NULL, 'Thank you for a wonderful service! :)', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Account Issues', 'High Priority', 'Mark Ely Aragon', '2024-07-25 08:06:39', '2024-07-25 10:26:41', '2024-07-25 10:26:41', NULL, NULL),
(1099, '2024-07-23', 'admin', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', 'Job Order', 'mis', 'Additional Printer/ Telephone', 'Extension of their telephone for parts preparation. ', NULL, NULL, NULL, NULL, 'Pinpin, Cherry', '2024-08-01', '', NULL, NULL, NULL, NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', NULL, NULL, NULL, NULL, NULL),
(1100, '2024-07-23', 'inprogress', 0, 'GP-11-303', 'Malubay, Michelle', '[email protected]', 'Parts Production', 'Technical Support', 'mis', 'Others TS', 'Laptop needs connection in shared folder.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-25', '2024-08-01', 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-25 08:08:56', NULL, NULL, NULL, NULL),
(1101, '2024-07-23', 'inprogress', 0, 'GP-11-303', 'Malubay, Michelle', '[email protected]', 'Parts Production', 'Technical Support', 'mis', 'Others TS', 'Connecting laptop to prism checker.', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-25', '2024-08-01', 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-25 08:08:43', NULL, NULL, NULL, NULL),
(1102, '2024-07-23', 'rated', 1, 'GP-11-303', 'Malubay, Michelle', '[email protected]', 'Parts Production', 'Technical Support', 'mis', 'Others TS', 'Installing digital microscope (Dino-Lite).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-25', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-08-01', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully installed the application.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-02', 'Malubay, Michelle', NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Yoshiyuki John Daganta', '2024-07-25 10:49:22', '2024-08-01 15:27:44', '2024-08-01 15:27:44', NULL, NULL),
(1103, '2024-07-23', 'Done', 0, 'GP-17-523', 'Dulce, Rinalyn', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'No water supply in gpi-1 old female cr cubicle#3.', '', '', '', '105', 'Monzon, Rio', '2024-07-23', '', NULL, '', '2024-07-23', '2024-08-01', 'CG-0676', 'Edvir Lumagui', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'upon checking gate valve was unintentionally close that's why no water supply in cubicle #3 at GPI 1 old female CR. when we open the gate valve water flows.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1104, '2024-07-23', 'inprogress', 0, 'GP-14-393', 'Nazareno, Bernadette', '[email protected]', 'PPIC', 'Technical Support', 'mis', 'Others TS', 'Telephone earpiece malfunction on GPI Parts Control. ', NULL, '', '', NULL, NULL, NULL, NULL, NULL, '', '2024-07-25', '2024-08-01', 'CG-2696', 'Mark Ely Aragon', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-07-25 08:09:45', NULL, NULL, NULL, NULL),
(1105, '2024-07-23', 'Done', 0, 'GP-12-347', 'Florindo, Eric', '[email protected]', 'PPIC', 'Job Order', 'fem', 'Facilities', 'Water drop from the aircon at GPI1 VMI area.', '', '', '', '413', 'Sheryll Ramirez', '2024-07-25', '', NULL, '', '2024-07-29', '2024-08-07', 'GP-12-356', 'Ramirez, Francisco', NULL, '2024-07-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Set the aircon in Medium setting.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1106, '2024-07-23', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Electrical', 'Request electrical connection on screw preparation to gpi-5', '', '', '', '211', 'Bautista, Elmer', '2024-07-23', '', NULL, '', '2024-07-25', '2024-08-03', 'CG-1420', 'Jenmark Rondero', NULL, '2024-07-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Wiring additional 4 tables at parts preparation area GPI-5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-30', 'Manny Herrera', NULL, NULL, 'Good Job.', 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1107, '2024-07-23', 'Done', 0, 'GP-14-408', 'Jose, Aris', '[email protected]', 'Production 1', 'Job Order', 'fem', 'Facilities', 'Requests to cover the aircon hole in gpi10 in prod.1 technician storage, to prevent the production tools and jigs from getting wet in case of heavy rain', '', '', '', 'Local 519', 'Lemuel Semillano', '2024-07-23', '', NULL, '', '2024-07-25', '2024-08-03', 'GP-24-831', 'John Jhayce Mejia', NULL, '2024-07-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabricate fiber glass then installed in GPI10 hole.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1108, '2024-07-25', 'Done', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'User can't access GPI-Standard Manual.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-25', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully given access to GPI-Standard Manual.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-25 10:49:15', '2024-07-25 10:56:40', '2024-07-25 10:56:40', '2024-07-25 16:51:23', NULL),
(1109, '2024-07-25', 'Done', 0, 'GP-06-193', 'Villasanta, Michael', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'User can't access GPI-Standard Manual.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-25', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully given access to GPI-Standard Manual.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-25 10:22:59', '2024-07-25 10:22:59', '2024-07-25 10:22:59', NULL, '2024-08-02 00:00:14'),
(1110, '2024-07-25', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', 'Job Order', 'mis', 'Add/Delete Email Account', 'request of email address replacement from Arnold Raganit [email protected] to Reshel Rojas [email protected]', NULL, '', '', NULL, 'Gelle, Nerio', '2024-07-25', 'OK', NULL, '', '2024-07-29', '2024-07-29', 'CG-2696', 'Mark Ely Aragon', NULL, '2024-07-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Done implementation on the new email and also change the domain user. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Mark Ely Aragon', '2024-07-29 11:58:29', '2024-07-29 15:45:36', '2024-07-29 15:45:36', NULL, NULL),
(1111, '2024-07-25', 'Done', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Others TS', 'Excel file from GPSS Macro not working.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-25', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-25', NULL, NULL, NULL, NULL, NULL, NULL, 'Added the location of the file to the trusted location in Excel.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Others TS', 'Low Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-25 10:59:35', '2024-07-25 10:59:35', '2024-07-25 10:59:35', '2024-07-25 16:51:12', NULL),
(1112, '2024-07-25', 'Done', 0, 'GP-01-115', 'Wilma, Logrono', '[email protected]', 'Quality Control', 'Job Order', 'mis', 'Others', 'Provide assistance in revision and enhancement of Powerpoint for GPI Kaizen GUTS entry', NULL, NULL, NULL, NULL, 'Wilma, Logrono', '2024-07-25', NULL, NULL, NULL, '2024-07-25', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-31', NULL, NULL, NULL, NULL, NULL, NULL, 'Applied requested revision for the presentation based upon review by Japanese officers.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', NULL, NULL, NULL, NULL, 'True', 0, NULL, NULL, 'Vivo, Felmhar', '2024-07-25 15:55:50', '2024-07-31 10:03:43', '2024-07-31 10:03:43', NULL, NULL),
(1113, '2024-07-26', 'Done', 0, 'GP-14-405', 'Dolores Castro', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Others', 'Additional (1) ground strap wire on final assy of glr line', '', '', '', '211', 'Bautista, Elmer', '2024-07-26', '', NULL, '', '2024-07-29', '2024-08-07', 'GP-22-730', 'Parma, Ralph Gabriel', NULL, '2024-08-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Additional (1) ground strap wire on final assy of glr line. all ready done. ', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Jul', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1114, '2024-07-26', 'Done', 0, 'GP-16-463', 'Melanie Bagon', '[email protected]', 'Production 2', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Registration of IC Card ID in printer Apeos 4570 (192.168.5.111).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-26', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-26', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff changed the old IC Card ID number to a new one, and it is now ready to use.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-26 10:07:50', '2024-07-26 10:07:50', '2024-07-26 10:07:50', NULL, '2024-08-03 00:00:11'),
(1115, '2024-07-26', 'rated', 0, 'GP-23-760', 'Joya, Renan', '[email protected]', 'Quality Assurance', 'Technical Support', 'mis', 'Network Connectivity', 'Set up network connections for two PCs and a telephone connection in the Quality Assurance department.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-26', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-26', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff successfully set up network connections for two PCs and a telephone connection.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-07-30', 'Joya, Renan', NULL, NULL, 'Thank for immediate action and response', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-26 15:25:48', '2024-07-26 15:27:49', '2024-07-26 15:27:49', NULL, NULL),
(1116, '2024-07-29', 'Done', 0, 'GP-01-116', 'Ciudad, Nolsan', '[email protected]', 'Quality Control', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Printer Connectivity on 192.168.5.118.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully connected the device.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Abraham Kristopher Alexander Orqueza', '2024-07-29 10:19:02', '2024-07-29 10:19:02', '2024-07-29 10:19:02', NULL, NULL),
(1117, '2024-07-29', 'Done', 0, 'GP-11-308', 'Irene Olaes', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Account Issues', 'No access on Molding and fabrication folder on 172.24.33.2 ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', NULL, 'CG-2774', 'Abraham Kristopher Alexander Orqueza', NULL, '2024-07-29', NULL, NULL, NULL, NULL, NULL, NULL, 'Successfully given access to fabrication and molding Folder on 172.24.33.1.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Account Issues', 'High Priority', 'Mark Ely Aragon', '2024-07-29 15:02:05', '2024-07-29 15:40:51', '2024-07-29 15:40:51', NULL, NULL),
(1118, '2024-07-30', 'Done', 0, 'GP-01-125', 'Desacula, Genny', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Account Issues', 'Unable to log on the account (purchasing staff 3).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-30', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-30', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staff reset the password in AD of the said account.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Account Issues', 'High Priority', 'Yoshiyuki John Daganta', '2024-07-30 07:37:03', '2024-07-30 07:37:03', '2024-07-30 07:37:03', NULL, NULL),
(1119, '2024-07-30', 'Done', 0, 'GP-14-381', 'Gelle, Nerio', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Cannot received SCAN documents', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-30', NULL, 'GP-17-571', 'Vivo, Felmhar', NULL, '2024-07-30', NULL, NULL, NULL, NULL, NULL, NULL, 'Troubleshoot connection error from Printer to requestor's laptop. Update the setup configuration of the user in Printer setup. Properly endorsed to the requestor', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Vivo, Felmhar', '2024-07-30 13:45:39', '2024-07-30 13:45:39', '2024-07-30 13:45:39', NULL, NULL),
(1120, '2024-07-30', 'Done', 0, 'GP-10-248', 'Castuli, Sheila', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'System Issues', 'RPIS- Error in uploading RPIS document.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-30', NULL, 'GP-23-822', 'Christian John Lopez', NULL, '2024-07-30', 'Determine the cause of issue regarding in uploading the documents in the system and the findings I get is networks issue so the corrective action that I take is to delete the corrupted data in the system in able to reuploaded the document without duplicating of files in the system.', NULL, NULL, 'July 30, 2024', NULL, NULL, 'The document has been uploaded successfully without any problem.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'System Issues', 'High Priority', 'Bobby John Solomon', '2024-07-30 14:17:12', '2024-07-30 14:25:44', '2024-07-30 14:26:19', NULL, NULL),
(1121, '2024-07-30', 'cancelled', 0, 'GP-17-550', 'Pagatpat, Annalyn', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Others TS', 'To create extended line of local 112 to Prod Supplies area', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-30', '2024-08-06', 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Already in requested in Job Order.', '2024-07-30', NULL, NULL, 0, 'Others TS', 'Low Priority', 'Vivo, Felmhar', '2024-07-30 14:20:12', NULL, NULL, NULL, NULL),
(1122, '2024-07-31', 'Done', 0, 'GP-23-801', 'Eunice Linde', '[email protected]', 'Purchasing', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Cannot scan in printer(192.168.5.115).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-31', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-07-31', NULL, NULL, NULL, NULL, NULL, NULL, 'It is now operational again after ICT staff updated the user name (192.168.5.115>Address Book>SMB>User Name) from e.linde to gpimis.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-07-31 15:16:57', '2024-07-31 15:16:57', '2024-07-31 15:16:57', NULL, NULL),
(1123, '2024-07-31', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Technical Support', 'mis', 'Network Connectivity', 'Relayout at gpi-5 in RBW-100.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-01', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-08-01', NULL, NULL, NULL, NULL, NULL, NULL, 'ICT staffs successfully relayout at gpi-5 in RBW-100.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-01', 'Manny Herrera', NULL, NULL, 'Noted Good communication and cooperation.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Network Connectivity', 'High Priority', 'Yoshiyuki John Daganta', '2024-08-01 07:46:59', '2024-08-01 08:50:51', '2024-08-01 08:50:51', NULL, NULL),
(1124, '2024-08-01', 'rated', 0, 'GP-07-209', 'Manny Herrera', '[email protected]', 'Direct Operation Kaizen', 'Job Order', 'fem', 'Electrical', 'Disconnect all electrical wiring and air hose to the line of rbw-100, due to the area was transfer to warehouse (need to collect it)', '', '', '', '211', 'Bautista, Elmer', '2024-08-01', '', NULL, '', '2024-08-01', '2024-08-10', 'CG-0676', 'Edvir Lumagui', NULL, '2024-08-01', NULL, NULL, NULL, NULL, NULL, NULL, 'Disconnect all electrical wiring and air hose to the line of rbw-100 as requested at GPI 5.', '', 0, NULL, NULL, '5', '5', 5.00, '2024-08-03', 'Manny Herrera', NULL, NULL, 'Noted..', 'Aug', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1125, '2024-08-01', 'Done', 0, 'GP-12-329', 'Bucayan, Jeany Lynn', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Printer Connectivity Issues', 'Cannot scan in printer(192.168.5.135).', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-01', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, '2024-08-01', NULL, NULL, NULL, NULL, NULL, NULL, 'It is now operational again after ICT staff updated the user name.', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 'Printer Connectivity Issues', 'Medium Priority', 'Yoshiyuki John Daganta', '2024-08-01 08:56:56', '2024-08-01 08:56:56', '2024-08-01 08:56:56', NULL, NULL),
(1126, '2024-08-01', 'head', 0, 'GP-22-736', 'Sangalang, Elaine', '[email protected]', 'Administration', 'Job Order', 'fem', 'Facilities', 'To check cubicle #1 at gpi-1 new male cr', '', '', '', '105', 'Monzon, Rio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Aug', '2024', '', NULL, NULL, NULL, 'True', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(1127, '2024-08-02', 'inprogress', 0, 'GP-11-289', 'Margie Umali', '[email protected]', 'Production Support', 'Technical Support', 'mis', 'Others TS', 'Requesting to change domain user account of Mr. Ryan, Ms., Margie, Ms. Jiselle and Ms. Erika in their designated computers. ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02', NULL, 'CG-2739', 'Yoshiyuki John Daganta', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Others TS', 'Low Priority', 'Mark Ely Aragon', '2024-08-02 10:40:55', NULL, NULL, NULL, NULL),
(1128, '2024-08-02', 'Done', 0, 'GP-10-250', 'Baldesimo, Deserie', '[email protected]', 'Production 1', 'Technical Support', 'mis', 'Data Issues (Loss, Corrupted)', 'Delete Folder 5.250 Production 1 ( RBW50 ) ', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02', NULL, 'CG-2696', 'Mark Ely Aragon', NULL, '2024-08-02', NULL, NULL, NULL, NULL, NULL, NULL, 'Done Retrieved the deleted folder on 5.250', '', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'Data Issues (Loss, Corrupted)', 'High Priority', 'Mark Ely Aragon', '2024-08-02 10:40:56', '2024-08-02 16:03:25', '2024-08-02 16:03:25', NULL, NULL),