design-system-next 2.15.4 → 2.15.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/App.vue CHANGED
@@ -1,3 +1,1637 @@
1
1
  <template>
2
- <div>Test Component Here</div>
2
+ <spr-sidenav :nav-links="navLinks" :user-menu="userMenu" is-nav-api>
3
+ <template #logo-image>
4
+ <img src="https://t3-fullsync.hrtest.ph/Images/2025/sprout-logo.svg" alt="logo" />
5
+ </template>
6
+ </spr-sidenav>
3
7
  </template>
8
+
9
+ <script setup>
10
+ import { ref } from 'vue';
11
+
12
+ import SprSidenav from './components/sidenav/sidenav.vue';
13
+
14
+ const navLinks = ref({
15
+ top: [
16
+ {
17
+ id: '135c50eb-3dbb-4e4a-b45a-9f58b4c0921f',
18
+ code: null,
19
+ label: 'Dashboard',
20
+ url: 'https://nova-eco-sso.ecoapp-qa.sprout.ph/dashboard',
21
+ icon: 'ph:house-simple',
22
+ children: [],
23
+ position: 'top',
24
+ order: 1,
25
+ attributes: null,
26
+ groupId: '1',
27
+ groupName: null,
28
+ parentMenuId: null,
29
+ isNewTab: false,
30
+ },
31
+ {
32
+ id: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
33
+ code: null,
34
+ label: 'HR',
35
+ url: null,
36
+ icon: 'https://eco-cdn-prod.azureedge.net/hr.svg',
37
+ children: [
38
+ {
39
+ id: null,
40
+ code: null,
41
+ label: 'My Employee Profile',
42
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/employee-profile/10257',
43
+ icon: '',
44
+ children: [],
45
+ position: 'top',
46
+ order: 1,
47
+ attributes: [],
48
+ groupId: null,
49
+ groupName: '',
50
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
51
+ isNewTab: false,
52
+ },
53
+ {
54
+ id: null,
55
+ code: null,
56
+ label: 'Employee Directory',
57
+ url: 'https://nova-eco-sso.hrtest.ph/EmployeeSearch.aspx',
58
+ icon: '',
59
+ children: [],
60
+ position: 'top',
61
+ order: 2,
62
+ attributes: [],
63
+ groupId: null,
64
+ groupName: '',
65
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
66
+ isNewTab: false,
67
+ },
68
+ {
69
+ id: null,
70
+ code: null,
71
+ label: 'My Requests',
72
+ url: null,
73
+ icon: '',
74
+ children: [
75
+ {
76
+ id: null,
77
+ code: null,
78
+ label: 'Apply Certificate of Attendance',
79
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/certificate-of-attendance',
80
+ icon: '',
81
+ children: [],
82
+ position: 'top',
83
+ order: 1,
84
+ attributes: [],
85
+ groupId: null,
86
+ groupName: '',
87
+ parentMenuId: null,
88
+ isNewTab: false,
89
+ },
90
+ ],
91
+ position: 'top',
92
+ order: 3,
93
+ attributes: [],
94
+ groupId: null,
95
+ groupName: null,
96
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
97
+ isNewTab: false,
98
+ },
99
+ {
100
+ id: null,
101
+ code: null,
102
+ label: 'Administration Tools',
103
+ url: null,
104
+ icon: '',
105
+ children: [
106
+ {
107
+ id: null,
108
+ code: null,
109
+ label: 'Add Employee',
110
+ url: 'https://nova-eco-sso.hrtest.ph/Employee.aspx?method=new',
111
+ icon: '',
112
+ children: [],
113
+ position: 'top',
114
+ order: 1,
115
+ attributes: [],
116
+ groupId: null,
117
+ groupName: '',
118
+ parentMenuId: null,
119
+ isNewTab: false,
120
+ },
121
+ {
122
+ id: null,
123
+ code: null,
124
+ label: 'Leave Report',
125
+ url: 'https://nova-eco-sso.hrtest.ph/LeaveSearch.aspx',
126
+ icon: '',
127
+ children: [],
128
+ position: 'top',
129
+ order: 2,
130
+ attributes: [],
131
+ groupId: null,
132
+ groupName: 'Reports',
133
+ parentMenuId: null,
134
+ isNewTab: false,
135
+ },
136
+ {
137
+ id: null,
138
+ code: null,
139
+ label: 'Overtime Report',
140
+ url: 'https://nova-eco-sso.hrtest.ph/Reports/Overtime.aspx',
141
+ icon: '',
142
+ children: [],
143
+ position: 'top',
144
+ order: 3,
145
+ attributes: [],
146
+ groupId: null,
147
+ groupName: 'Reports',
148
+ parentMenuId: null,
149
+ isNewTab: false,
150
+ },
151
+ {
152
+ id: null,
153
+ code: null,
154
+ label: 'Employee List Report',
155
+ url: 'https://nova-eco-sso.hrtest.ph/EmployeeListReport.aspx',
156
+ icon: '',
157
+ children: [],
158
+ position: 'top',
159
+ order: 4,
160
+ attributes: [],
161
+ groupId: null,
162
+ groupName: 'Reports',
163
+ parentMenuId: null,
164
+ isNewTab: false,
165
+ },
166
+ {
167
+ id: null,
168
+ code: null,
169
+ label: 'Bulk Upload',
170
+ url: 'https://nova-eco-sso.hrtest.ph/ApplicationMassUploadPage.aspx',
171
+ icon: '',
172
+ children: [],
173
+ position: 'top',
174
+ order: 5,
175
+ attributes: [],
176
+ groupId: null,
177
+ groupName: 'Tools',
178
+ parentMenuId: null,
179
+ isNewTab: false,
180
+ },
181
+ {
182
+ id: null,
183
+ code: null,
184
+ label: 'Audit Trail',
185
+ url: 'https://nova-eco-sso.hrtest.ph/AuditTrailPage.aspx',
186
+ icon: '',
187
+ children: [],
188
+ position: 'top',
189
+ order: 6,
190
+ attributes: [],
191
+ groupId: null,
192
+ groupName: 'Tools',
193
+ parentMenuId: null,
194
+ isNewTab: false,
195
+ },
196
+ {
197
+ id: null,
198
+ code: null,
199
+ label: 'Feature Management Page',
200
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/feature-management-page',
201
+ icon: '',
202
+ children: [],
203
+ position: 'top',
204
+ order: 7,
205
+ attributes: [],
206
+ groupId: null,
207
+ groupName: 'Tools',
208
+ parentMenuId: null,
209
+ isNewTab: false,
210
+ },
211
+ ],
212
+ position: 'top',
213
+ order: 4,
214
+ attributes: [],
215
+ groupId: null,
216
+ groupName: null,
217
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
218
+ isNewTab: false,
219
+ },
220
+ {
221
+ id: null,
222
+ code: null,
223
+ label: 'Maintenance',
224
+ url: null,
225
+ icon: '',
226
+ children: [
227
+ {
228
+ id: null,
229
+ code: null,
230
+ label: 'Work Location',
231
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/work-location',
232
+ icon: '',
233
+ children: [],
234
+ position: 'top',
235
+ order: 1,
236
+ attributes: [],
237
+ groupId: null,
238
+ groupName: '',
239
+ parentMenuId: null,
240
+ isNewTab: false,
241
+ },
242
+ {
243
+ id: null,
244
+ code: null,
245
+ label: 'Global Profile Attributes',
246
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/global-profile-attributes',
247
+ icon: '',
248
+ children: [],
249
+ position: 'top',
250
+ order: 2,
251
+ attributes: [],
252
+ groupId: null,
253
+ groupName: '',
254
+ parentMenuId: null,
255
+ isNewTab: false,
256
+ },
257
+ {
258
+ id: null,
259
+ code: null,
260
+ label: 'Assets',
261
+ url: 'https://nova-eco-sso.hrtest.ph/FieldMaintenance.aspx?title=assetscategory',
262
+ icon: '',
263
+ children: [],
264
+ position: 'top',
265
+ order: 3,
266
+ attributes: [],
267
+ groupId: null,
268
+ groupName: '',
269
+ parentMenuId: null,
270
+ isNewTab: false,
271
+ },
272
+ {
273
+ id: null,
274
+ code: null,
275
+ label: 'Visa',
276
+ url: 'https://nova-eco-sso.hrtest.ph/FieldMaintenance.aspx?title=visatype',
277
+ icon: '',
278
+ children: [],
279
+ position: 'top',
280
+ order: 4,
281
+ attributes: [],
282
+ groupId: null,
283
+ groupName: '',
284
+ parentMenuId: null,
285
+ isNewTab: false,
286
+ },
287
+ {
288
+ id: null,
289
+ code: null,
290
+ label: 'Benefits Type',
291
+ url: 'https://nova-eco-sso.hrtest.ph/FieldMaintenance.aspx?title=benefitstype',
292
+ icon: '',
293
+ children: [],
294
+ position: 'top',
295
+ order: 5,
296
+ attributes: [],
297
+ groupId: null,
298
+ groupName: '',
299
+ parentMenuId: null,
300
+ isNewTab: false,
301
+ },
302
+ {
303
+ id: null,
304
+ code: null,
305
+ label: 'Profile Template Settings',
306
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/profile-template-settings?employee=10257',
307
+ icon: '',
308
+ children: [],
309
+ position: 'top',
310
+ order: 6,
311
+ attributes: [],
312
+ groupId: null,
313
+ groupName: '',
314
+ parentMenuId: null,
315
+ isNewTab: false,
316
+ },
317
+ {
318
+ id: null,
319
+ code: null,
320
+ label: 'Access Levels',
321
+ url: 'https://nova-eco-sso.hrtest.ph/AccessLevels.aspx',
322
+ icon: '',
323
+ children: [],
324
+ position: 'top',
325
+ order: 7,
326
+ attributes: [],
327
+ groupId: null,
328
+ groupName: '',
329
+ parentMenuId: null,
330
+ isNewTab: false,
331
+ },
332
+ {
333
+ id: null,
334
+ code: null,
335
+ label: 'Email Template',
336
+ url: 'https://nova-eco-sso.hrtest.ph/EmailTemplates.aspx',
337
+ icon: '',
338
+ children: [],
339
+ position: 'top',
340
+ order: 8,
341
+ attributes: [],
342
+ groupId: null,
343
+ groupName: '',
344
+ parentMenuId: null,
345
+ isNewTab: false,
346
+ },
347
+ ],
348
+ position: 'top',
349
+ order: 5,
350
+ attributes: [],
351
+ groupId: null,
352
+ groupName: null,
353
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
354
+ isNewTab: false,
355
+ },
356
+ {
357
+ id: null,
358
+ code: null,
359
+ label: 'Workforce Hub',
360
+ url: null,
361
+ icon: '',
362
+ children: [
363
+ {
364
+ id: null,
365
+ code: null,
366
+ label: 'Calendar',
367
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/calendar',
368
+ icon: '',
369
+ children: [],
370
+ position: 'top',
371
+ order: 2,
372
+ attributes: [],
373
+ groupId: null,
374
+ groupName: '',
375
+ parentMenuId: null,
376
+ isNewTab: false,
377
+ },
378
+ ],
379
+ position: 'top',
380
+ order: 6,
381
+ attributes: [
382
+ {
383
+ name: 'lozenge',
384
+ value: '{tone: "success", label: "New"}',
385
+ },
386
+ ],
387
+ groupId: null,
388
+ groupName: null,
389
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
390
+ isNewTab: false,
391
+ },
392
+ {
393
+ id: null,
394
+ code: null,
395
+ label: 'Attendance Hub',
396
+ url: null,
397
+ icon: '',
398
+ children: [
399
+ {
400
+ id: null,
401
+ code: null,
402
+ label: 'Attendance Manager',
403
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/attendance-manager',
404
+ icon: '',
405
+ children: [],
406
+ position: 'top',
407
+ order: 1,
408
+ attributes: [],
409
+ groupId: null,
410
+ groupName: '',
411
+ parentMenuId: null,
412
+ isNewTab: false,
413
+ },
414
+ {
415
+ id: null,
416
+ code: null,
417
+ label: 'Attendance Report',
418
+ url: 'https://nova-eco-sso-v2.hrtest.ph/#/attendance-report',
419
+ icon: '',
420
+ children: [],
421
+ position: 'top',
422
+ order: 2,
423
+ attributes: [],
424
+ groupId: null,
425
+ groupName: '',
426
+ parentMenuId: null,
427
+ isNewTab: false,
428
+ },
429
+ ],
430
+ position: 'top',
431
+ order: 7,
432
+ attributes: [
433
+ {
434
+ name: 'lozenge',
435
+ value: { tone: 'success', label: 'New' },
436
+ },
437
+ ],
438
+ groupId: null,
439
+ groupName: null,
440
+ parentMenuId: 'e7d777f6-da1b-4329-8f2a-cdd7691ecf64',
441
+ isNewTab: false,
442
+ },
443
+ ],
444
+ position: 'top',
445
+ order: 4,
446
+ attributes: null,
447
+ groupId: '2',
448
+ groupName: null,
449
+ parentMenuId: null,
450
+ isNewTab: false,
451
+ },
452
+ {
453
+ id: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
454
+ code: null,
455
+ label: 'Payroll',
456
+ url: null,
457
+ icon: 'https://eco-cdn-prod.azureedge.net/payroll.svg',
458
+ children: [
459
+ {
460
+ id: null,
461
+ code: null,
462
+ label: 'Payroll Runs',
463
+ url: 'https:///Client/Payrolls.aspx',
464
+ icon: null,
465
+ children: [],
466
+ position: null,
467
+ order: 1,
468
+ attributes: [],
469
+ groupId: null,
470
+ groupName: null,
471
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
472
+ isNewTab: null,
473
+ },
474
+ {
475
+ id: null,
476
+ code: null,
477
+ label: 'Setup',
478
+ url: '',
479
+ icon: null,
480
+ children: [
481
+ {
482
+ id: null,
483
+ code: null,
484
+ label: 'Company Profile',
485
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph/#/global/company-profile',
486
+ icon: null,
487
+ children: [],
488
+ position: null,
489
+ order: 1,
490
+ attributes: [],
491
+ groupId: null,
492
+ groupName: 'COMPANY',
493
+ parentMenuId: null,
494
+ isNewTab: null,
495
+ },
496
+ {
497
+ id: null,
498
+ code: null,
499
+ label: 'Department',
500
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph/#/global/department',
501
+ icon: null,
502
+ children: [],
503
+ position: null,
504
+ order: 2,
505
+ attributes: [],
506
+ groupId: null,
507
+ groupName: 'COMPANY',
508
+ parentMenuId: null,
509
+ isNewTab: null,
510
+ },
511
+ {
512
+ id: null,
513
+ code: 'cost-center',
514
+ label: 'Cost Center',
515
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph/#/global/cost-center',
516
+ icon: null,
517
+ children: [],
518
+ position: null,
519
+ order: 3,
520
+ attributes: [],
521
+ groupId: null,
522
+ groupName: 'COMPANY',
523
+ parentMenuId: null,
524
+ isNewTab: null,
525
+ },
526
+ {
527
+ id: null,
528
+ code: 'paygroup',
529
+ label: 'Pay Group',
530
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph/#/global/pay-group',
531
+ icon: null,
532
+ children: [],
533
+ position: null,
534
+ order: 4,
535
+ attributes: [],
536
+ groupId: null,
537
+ groupName: 'COMPANY',
538
+ parentMenuId: null,
539
+ isNewTab: null,
540
+ },
541
+ {
542
+ id: null,
543
+ code: null,
544
+ label: 'General Ledger',
545
+ url: 'https:///Client/GeneralLedger.aspx',
546
+ icon: null,
547
+ children: [],
548
+ position: null,
549
+ order: 5,
550
+ attributes: [],
551
+ groupId: null,
552
+ groupName: 'COMPANY',
553
+ parentMenuId: null,
554
+ isNewTab: null,
555
+ },
556
+ {
557
+ id: null,
558
+ code: null,
559
+ label: 'Banks',
560
+ url: 'https:///Client/Banks.aspx',
561
+ icon: null,
562
+ children: [],
563
+ position: null,
564
+ order: 6,
565
+ attributes: [],
566
+ groupId: null,
567
+ groupName: 'COMPANY',
568
+ parentMenuId: null,
569
+ isNewTab: null,
570
+ },
571
+ {
572
+ id: null,
573
+ code: null,
574
+ label: 'Payroll Rules',
575
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph/#/payroll/payroll-rules',
576
+ icon: null,
577
+ children: [],
578
+ position: null,
579
+ order: 7,
580
+ attributes: [],
581
+ groupId: null,
582
+ groupName: 'COMPANY',
583
+ parentMenuId: null,
584
+ isNewTab: null,
585
+ },
586
+ {
587
+ id: null,
588
+ code: null,
589
+ label: 'Report Settings',
590
+ url: 'https://nova-eco-sso-payroll-next-qa.sprout.ph#/setup/report-settings',
591
+ icon: null,
592
+ children: [],
593
+ position: null,
594
+ order: 8,
595
+ attributes: [],
596
+ groupId: null,
597
+ groupName: 'COMPANY',
598
+ parentMenuId: null,
599
+ isNewTab: null,
600
+ },
601
+ {
602
+ id: null,
603
+ code: null,
604
+ label: 'Adjustment Templates',
605
+ url: 'https:///Client/Adjustments.aspx',
606
+ icon: null,
607
+ children: [],
608
+ position: null,
609
+ order: 9,
610
+ attributes: [],
611
+ groupId: null,
612
+ groupName: 'PAYROLL',
613
+ parentMenuId: null,
614
+ isNewTab: null,
615
+ },
616
+ {
617
+ id: null,
618
+ code: null,
619
+ label: 'Company Adjustment',
620
+ url: 'https:///Client/CompanyAdjustments.aspx',
621
+ icon: null,
622
+ children: [],
623
+ position: null,
624
+ order: 10,
625
+ attributes: [],
626
+ groupId: null,
627
+ groupName: 'PAYROLL',
628
+ parentMenuId: null,
629
+ isNewTab: null,
630
+ },
631
+ {
632
+ id: null,
633
+ code: null,
634
+ label: 'Tax Table',
635
+ url: 'https:///Client/Tax.aspx',
636
+ icon: null,
637
+ children: [],
638
+ position: null,
639
+ order: 11,
640
+ attributes: [],
641
+ groupId: null,
642
+ groupName: 'REFERENCES',
643
+ parentMenuId: null,
644
+ isNewTab: null,
645
+ },
646
+ {
647
+ id: null,
648
+ code: null,
649
+ label: 'Tax Table - Annual',
650
+ url: 'https:///Client/TaxAnnual.aspx',
651
+ icon: null,
652
+ children: [],
653
+ position: null,
654
+ order: 12,
655
+ attributes: [],
656
+ groupId: null,
657
+ groupName: 'REFERENCES',
658
+ parentMenuId: null,
659
+ isNewTab: null,
660
+ },
661
+ {
662
+ id: null,
663
+ code: null,
664
+ label: 'Philhealth',
665
+ url: 'https:///Client/PhilHealth.aspx',
666
+ icon: null,
667
+ children: [],
668
+ position: null,
669
+ order: 13,
670
+ attributes: [],
671
+ groupId: null,
672
+ groupName: 'REFERENCES',
673
+ parentMenuId: null,
674
+ isNewTab: null,
675
+ },
676
+ {
677
+ id: null,
678
+ code: null,
679
+ label: 'Pag - IBIG',
680
+ url: 'https:///Client/HDMF.aspx',
681
+ icon: null,
682
+ children: [],
683
+ position: null,
684
+ order: 14,
685
+ attributes: [],
686
+ groupId: null,
687
+ groupName: 'REFERENCES',
688
+ parentMenuId: null,
689
+ isNewTab: null,
690
+ },
691
+ {
692
+ id: null,
693
+ code: null,
694
+ label: 'SSS',
695
+ url: 'https:///Client/SSS.aspx',
696
+ icon: null,
697
+ children: [],
698
+ position: null,
699
+ order: 15,
700
+ attributes: [],
701
+ groupId: null,
702
+ groupName: 'REFERENCES',
703
+ parentMenuId: null,
704
+ isNewTab: null,
705
+ },
706
+ {
707
+ id: null,
708
+ code: null,
709
+ label: 'Govt. OR Records',
710
+ url: 'https:///Client/GovtORRec.aspx',
711
+ icon: null,
712
+ children: [],
713
+ position: null,
714
+ order: 16,
715
+ attributes: [],
716
+ groupId: null,
717
+ groupName: 'REFERENCES',
718
+ parentMenuId: null,
719
+ isNewTab: null,
720
+ },
721
+ {
722
+ id: null,
723
+ code: null,
724
+ label: 'Access Control',
725
+ url: 'https:///Client/AccessAccountRole.aspx',
726
+ icon: null,
727
+ children: [],
728
+ position: null,
729
+ order: 17,
730
+ attributes: [],
731
+ groupId: null,
732
+ groupName: 'OTHERS',
733
+ parentMenuId: null,
734
+ isNewTab: null,
735
+ },
736
+ ],
737
+ position: null,
738
+ order: 2,
739
+ attributes: [],
740
+ groupId: null,
741
+ groupName: null,
742
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
743
+ isNewTab: null,
744
+ },
745
+ {
746
+ id: null,
747
+ code: null,
748
+ label: 'Users',
749
+ url: 'https:///Client/Accounts.aspx',
750
+ icon: null,
751
+ children: [],
752
+ position: null,
753
+ order: 3,
754
+ attributes: [],
755
+ groupId: null,
756
+ groupName: null,
757
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
758
+ isNewTab: null,
759
+ },
760
+ {
761
+ id: null,
762
+ code: null,
763
+ label: 'Payroll',
764
+ url: '',
765
+ icon: null,
766
+ children: [
767
+ {
768
+ id: null,
769
+ code: null,
770
+ label: 'Payroll Summary',
771
+ url: 'https:///Client/PayrollSummaryReport.aspx',
772
+ icon: null,
773
+ children: [],
774
+ position: null,
775
+ order: 1,
776
+ attributes: [],
777
+ groupId: null,
778
+ groupName: null,
779
+ parentMenuId: null,
780
+ isNewTab: null,
781
+ },
782
+ {
783
+ id: null,
784
+ code: null,
785
+ label: 'Monthly Summary',
786
+ url: 'https:///Client/MonthlySummaryReport.aspx',
787
+ icon: null,
788
+ children: [],
789
+ position: null,
790
+ order: 2,
791
+ attributes: [],
792
+ groupId: null,
793
+ groupName: null,
794
+ parentMenuId: null,
795
+ isNewTab: null,
796
+ },
797
+ {
798
+ id: null,
799
+ code: null,
800
+ label: 'Variance Report',
801
+ url: 'https:///Client/VarianceReport.aspx',
802
+ icon: null,
803
+ children: [],
804
+ position: null,
805
+ order: 3,
806
+ attributes: [],
807
+ groupId: null,
808
+ groupName: null,
809
+ parentMenuId: null,
810
+ isNewTab: null,
811
+ },
812
+ {
813
+ id: null,
814
+ code: null,
815
+ label: 'General Ledger Report',
816
+ url: 'https:///Client/GeneralLedgerReport.aspx',
817
+ icon: null,
818
+ children: [],
819
+ position: null,
820
+ order: 4,
821
+ attributes: [],
822
+ groupId: null,
823
+ groupName: null,
824
+ parentMenuId: null,
825
+ isNewTab: null,
826
+ },
827
+ {
828
+ id: null,
829
+ code: null,
830
+ label: 'Payslip',
831
+ url: 'https:///Client/PayslipReport.aspx',
832
+ icon: null,
833
+ children: [],
834
+ position: null,
835
+ order: 5,
836
+ attributes: [],
837
+ groupId: null,
838
+ groupName: null,
839
+ parentMenuId: null,
840
+ isNewTab: null,
841
+ },
842
+ {
843
+ id: null,
844
+ code: null,
845
+ label: 'Final Pay Report',
846
+ url: 'https:///Client/FinalPayReport.aspx',
847
+ icon: null,
848
+ children: [],
849
+ position: null,
850
+ order: 6,
851
+ attributes: [],
852
+ groupId: null,
853
+ groupName: null,
854
+ parentMenuId: null,
855
+ isNewTab: null,
856
+ },
857
+ {
858
+ id: null,
859
+ code: null,
860
+ label: 'Adjustment Report',
861
+ url: 'https:///Client/AdjustmentReport.aspx',
862
+ icon: null,
863
+ children: [],
864
+ position: null,
865
+ order: 7,
866
+ attributes: [],
867
+ groupId: null,
868
+ groupName: null,
869
+ parentMenuId: null,
870
+ isNewTab: null,
871
+ },
872
+ {
873
+ id: null,
874
+ code: null,
875
+ label: 'YTD Report',
876
+ url: 'https:///Client/YTDReport.aspx',
877
+ icon: null,
878
+ children: [],
879
+ position: null,
880
+ order: 8,
881
+ attributes: [],
882
+ groupId: null,
883
+ groupName: null,
884
+ parentMenuId: null,
885
+ isNewTab: null,
886
+ },
887
+ {
888
+ id: null,
889
+ code: null,
890
+ label: 'YTD Report - Adjustments',
891
+ url: 'https:///Client/PayrollAdjustmentsYTDReport.aspx',
892
+ icon: null,
893
+ children: [],
894
+ position: null,
895
+ order: 9,
896
+ attributes: [],
897
+ groupId: null,
898
+ groupName: null,
899
+ parentMenuId: null,
900
+ isNewTab: null,
901
+ },
902
+ ],
903
+ position: null,
904
+ order: 4,
905
+ attributes: [],
906
+ groupId: null,
907
+ groupName: 'REPORTS',
908
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
909
+ isNewTab: null,
910
+ },
911
+ {
912
+ id: null,
913
+ code: null,
914
+ label: 'SSS',
915
+ url: '',
916
+ icon: null,
917
+ children: [
918
+ {
919
+ id: null,
920
+ code: null,
921
+ label: 'R-3',
922
+ url: 'https:///Client/R3Report.aspx',
923
+ icon: null,
924
+ children: [],
925
+ position: null,
926
+ order: 1,
927
+ attributes: [],
928
+ groupId: null,
929
+ groupName: null,
930
+ parentMenuId: null,
931
+ isNewTab: null,
932
+ },
933
+ {
934
+ id: null,
935
+ code: null,
936
+ label: 'R-5',
937
+ url: 'https:///Client/R5Report.aspx',
938
+ icon: null,
939
+ children: [],
940
+ position: null,
941
+ order: 2,
942
+ attributes: [],
943
+ groupId: null,
944
+ groupName: null,
945
+ parentMenuId: null,
946
+ isNewTab: null,
947
+ },
948
+ {
949
+ id: null,
950
+ code: null,
951
+ label: 'SSS-LMS',
952
+ url: 'https:///Client/LMS.aspx',
953
+ icon: null,
954
+ children: [],
955
+ position: null,
956
+ order: 3,
957
+ attributes: [],
958
+ groupId: null,
959
+ groupName: null,
960
+ parentMenuId: null,
961
+ isNewTab: null,
962
+ },
963
+ {
964
+ id: null,
965
+ code: null,
966
+ label: 'SSS AMSCCL',
967
+ url: 'https:///Client/AMSCCL.aspx',
968
+ icon: null,
969
+ children: [],
970
+ position: null,
971
+ order: 4,
972
+ attributes: [],
973
+ groupId: null,
974
+ groupName: null,
975
+ parentMenuId: null,
976
+ isNewTab: null,
977
+ },
978
+ {
979
+ id: null,
980
+ code: null,
981
+ label: 'ML-1',
982
+ url: 'https:///Client/ML1.aspx',
983
+ icon: null,
984
+ children: [],
985
+ position: null,
986
+ order: 5,
987
+ attributes: [],
988
+ groupId: null,
989
+ groupName: null,
990
+ parentMenuId: null,
991
+ isNewTab: null,
992
+ },
993
+ {
994
+ id: null,
995
+ code: null,
996
+ label: 'R1-A',
997
+ url: 'https:///Client/R1A.aspx',
998
+ icon: null,
999
+ children: [],
1000
+ position: null,
1001
+ order: 6,
1002
+ attributes: [],
1003
+ groupId: null,
1004
+ groupName: null,
1005
+ parentMenuId: null,
1006
+ isNewTab: null,
1007
+ },
1008
+ ],
1009
+ position: null,
1010
+ order: 5,
1011
+ attributes: [],
1012
+ groupId: null,
1013
+ groupName: 'REPORTS',
1014
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1015
+ isNewTab: null,
1016
+ },
1017
+ {
1018
+ id: null,
1019
+ code: null,
1020
+ label: 'Philhealth',
1021
+ url: '',
1022
+ icon: null,
1023
+ children: [
1024
+ {
1025
+ id: null,
1026
+ code: null,
1027
+ label: 'ER-2',
1028
+ url: 'https:///Client/ER2.aspx',
1029
+ icon: null,
1030
+ children: [],
1031
+ position: null,
1032
+ order: 1,
1033
+ attributes: [],
1034
+ groupId: null,
1035
+ groupName: null,
1036
+ parentMenuId: null,
1037
+ isNewTab: null,
1038
+ },
1039
+ {
1040
+ id: null,
1041
+ code: null,
1042
+ label: 'RF-1 Data',
1043
+ url: 'https:///Client/RF1Data.aspx',
1044
+ icon: null,
1045
+ children: [],
1046
+ position: null,
1047
+ order: 2,
1048
+ attributes: [],
1049
+ groupId: null,
1050
+ groupName: null,
1051
+ parentMenuId: null,
1052
+ isNewTab: null,
1053
+ },
1054
+ {
1055
+ id: null,
1056
+ code: null,
1057
+ label: 'RF-1 PDF',
1058
+ url: 'https:///Client/RF1Pdf.aspx',
1059
+ icon: null,
1060
+ children: [],
1061
+ position: null,
1062
+ order: 3,
1063
+ attributes: [],
1064
+ groupId: null,
1065
+ groupName: null,
1066
+ parentMenuId: null,
1067
+ isNewTab: null,
1068
+ },
1069
+ ],
1070
+ position: null,
1071
+ order: 6,
1072
+ attributes: [],
1073
+ groupId: null,
1074
+ groupName: 'REPORTS',
1075
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1076
+ isNewTab: null,
1077
+ },
1078
+ {
1079
+ id: null,
1080
+ code: null,
1081
+ label: 'Pag-Ibig',
1082
+ url: '',
1083
+ icon: null,
1084
+ children: [
1085
+ {
1086
+ id: null,
1087
+ code: null,
1088
+ label: 'M1-1 (MCRF)',
1089
+ url: 'https:///Client/MCRF.aspx',
1090
+ icon: null,
1091
+ children: [],
1092
+ position: null,
1093
+ order: 1,
1094
+ attributes: [],
1095
+ groupId: null,
1096
+ groupName: null,
1097
+ parentMenuId: null,
1098
+ isNewTab: null,
1099
+ },
1100
+ {
1101
+ id: null,
1102
+ code: null,
1103
+ label: 'M1-1 Excel',
1104
+ url: 'https:///Client/M1Excel.aspx',
1105
+ icon: null,
1106
+ children: [],
1107
+ position: null,
1108
+ order: 2,
1109
+ attributes: [],
1110
+ groupId: null,
1111
+ groupName: null,
1112
+ parentMenuId: null,
1113
+ isNewTab: null,
1114
+ },
1115
+ {
1116
+ id: null,
1117
+ code: null,
1118
+ label: 'Pag-Ibig STLRF',
1119
+ url: 'https:///Client/STLRF.aspx',
1120
+ icon: null,
1121
+ children: [],
1122
+ position: null,
1123
+ order: 3,
1124
+ attributes: [],
1125
+ groupId: null,
1126
+ groupName: null,
1127
+ parentMenuId: null,
1128
+ isNewTab: null,
1129
+ },
1130
+ {
1131
+ id: null,
1132
+ code: null,
1133
+ label: 'Pag-Ibig STLRF Excel',
1134
+ url: 'https:///Client/STLRFExcel.aspx',
1135
+ icon: null,
1136
+ children: [],
1137
+ position: null,
1138
+ order: 4,
1139
+ attributes: [],
1140
+ groupId: null,
1141
+ groupName: null,
1142
+ parentMenuId: null,
1143
+ isNewTab: null,
1144
+ },
1145
+ ],
1146
+ position: null,
1147
+ order: 7,
1148
+ attributes: [],
1149
+ groupId: null,
1150
+ groupName: 'REPORTS',
1151
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1152
+ isNewTab: null,
1153
+ },
1154
+ {
1155
+ id: null,
1156
+ code: null,
1157
+ label: 'BIR',
1158
+ url: '',
1159
+ icon: null,
1160
+ children: [
1161
+ {
1162
+ id: null,
1163
+ code: null,
1164
+ label: '1601-C',
1165
+ url: 'https:///Client/1601C.aspx',
1166
+ icon: null,
1167
+ children: [],
1168
+ position: null,
1169
+ order: 1,
1170
+ attributes: [],
1171
+ groupId: null,
1172
+ groupName: null,
1173
+ parentMenuId: null,
1174
+ isNewTab: null,
1175
+ },
1176
+ {
1177
+ id: null,
1178
+ code: null,
1179
+ label: '1601-EQ',
1180
+ url: 'https:///Client/1601EQ.aspx',
1181
+ icon: null,
1182
+ children: [],
1183
+ position: null,
1184
+ order: 2,
1185
+ attributes: [],
1186
+ groupId: null,
1187
+ groupName: null,
1188
+ parentMenuId: null,
1189
+ isNewTab: null,
1190
+ },
1191
+ {
1192
+ id: null,
1193
+ code: null,
1194
+ label: '1604-C',
1195
+ url: 'https:///Client/1604C.aspx',
1196
+ icon: null,
1197
+ children: [],
1198
+ position: null,
1199
+ order: 3,
1200
+ attributes: [],
1201
+ groupId: null,
1202
+ groupName: null,
1203
+ parentMenuId: null,
1204
+ isNewTab: null,
1205
+ },
1206
+ {
1207
+ id: null,
1208
+ code: null,
1209
+ label: '1604-CF',
1210
+ url: 'https:///Client/1604CF.aspx',
1211
+ icon: null,
1212
+ children: [],
1213
+ position: null,
1214
+ order: 4,
1215
+ attributes: [],
1216
+ groupId: null,
1217
+ groupName: null,
1218
+ parentMenuId: null,
1219
+ isNewTab: null,
1220
+ },
1221
+ {
1222
+ id: null,
1223
+ code: null,
1224
+ label: '2316',
1225
+ url: 'https:///Client/2316.aspx',
1226
+ icon: null,
1227
+ children: [],
1228
+ position: null,
1229
+ order: 5,
1230
+ attributes: [],
1231
+ groupId: null,
1232
+ groupName: null,
1233
+ parentMenuId: null,
1234
+ isNewTab: null,
1235
+ },
1236
+ {
1237
+ id: null,
1238
+ code: null,
1239
+ label: '2306',
1240
+ url: 'https:///Client/2306.aspx',
1241
+ icon: null,
1242
+ children: [],
1243
+ position: null,
1244
+ order: 6,
1245
+ attributes: [],
1246
+ groupId: null,
1247
+ groupName: null,
1248
+ parentMenuId: null,
1249
+ isNewTab: null,
1250
+ },
1251
+ {
1252
+ id: null,
1253
+ code: null,
1254
+ label: '2307',
1255
+ url: 'https:///Client/2307.aspx',
1256
+ icon: null,
1257
+ children: [],
1258
+ position: null,
1259
+ order: 7,
1260
+ attributes: [],
1261
+ groupId: null,
1262
+ groupName: null,
1263
+ parentMenuId: null,
1264
+ isNewTab: null,
1265
+ },
1266
+ {
1267
+ id: null,
1268
+ code: null,
1269
+ label: 'Annualization',
1270
+ url: 'https:///Client/Annualization.aspx',
1271
+ icon: null,
1272
+ children: [],
1273
+ position: null,
1274
+ order: 8,
1275
+ attributes: [],
1276
+ groupId: null,
1277
+ groupName: null,
1278
+ parentMenuId: null,
1279
+ isNewTab: null,
1280
+ },
1281
+ {
1282
+ id: null,
1283
+ code: null,
1284
+ label: 'Alphalist 7.4',
1285
+ url: 'https:///Client/AlphaListVersion7v4.aspx',
1286
+ icon: null,
1287
+ children: [],
1288
+ position: null,
1289
+ order: 9,
1290
+ attributes: [],
1291
+ groupId: null,
1292
+ groupName: null,
1293
+ parentMenuId: null,
1294
+ isNewTab: null,
1295
+ },
1296
+ ],
1297
+ position: null,
1298
+ order: 8,
1299
+ attributes: [],
1300
+ groupId: null,
1301
+ groupName: 'REPORTS',
1302
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1303
+ isNewTab: null,
1304
+ },
1305
+ {
1306
+ id: null,
1307
+ code: null,
1308
+ label: 'ONEHUB DAT Files',
1309
+ url: '',
1310
+ icon: null,
1311
+ children: [
1312
+ {
1313
+ id: null,
1314
+ code: null,
1315
+ label: 'SSS EPF',
1316
+ url: 'https:///Client/SSSEPF.aspx',
1317
+ icon: null,
1318
+ children: [],
1319
+ position: null,
1320
+ order: 1,
1321
+ attributes: [],
1322
+ groupId: null,
1323
+ groupName: null,
1324
+ parentMenuId: null,
1325
+ isNewTab: null,
1326
+ },
1327
+ {
1328
+ id: null,
1329
+ code: null,
1330
+ label: 'SSS Contributions',
1331
+ url: 'https:///Client/SSSContri.aspx',
1332
+ icon: null,
1333
+ children: [],
1334
+ position: null,
1335
+ order: 2,
1336
+ attributes: [],
1337
+ groupId: null,
1338
+ groupName: null,
1339
+ parentMenuId: null,
1340
+ isNewTab: null,
1341
+ },
1342
+ {
1343
+ id: null,
1344
+ code: null,
1345
+ label: 'Pag-Ibig',
1346
+ url: 'https:///Client/PagIbigDATRpt.aspx',
1347
+ icon: null,
1348
+ children: [],
1349
+ position: null,
1350
+ order: 3,
1351
+ attributes: [],
1352
+ groupId: null,
1353
+ groupName: null,
1354
+ parentMenuId: null,
1355
+ isNewTab: null,
1356
+ },
1357
+ {
1358
+ id: null,
1359
+ code: null,
1360
+ label: 'Philhealth Contributions',
1361
+ url: 'https:///Client/ReportPhilhealthRemittanceRpt.aspx',
1362
+ icon: null,
1363
+ children: [],
1364
+ position: null,
1365
+ order: 4,
1366
+ attributes: [],
1367
+ groupId: null,
1368
+ groupName: null,
1369
+ parentMenuId: null,
1370
+ isNewTab: null,
1371
+ },
1372
+ ],
1373
+ position: null,
1374
+ order: 9,
1375
+ attributes: [],
1376
+ groupId: null,
1377
+ groupName: 'REPORTS',
1378
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1379
+ isNewTab: null,
1380
+ },
1381
+ {
1382
+ id: null,
1383
+ code: null,
1384
+ label: 'BPI',
1385
+ url: '',
1386
+ icon: null,
1387
+ children: [
1388
+ {
1389
+ id: null,
1390
+ code: null,
1391
+ label: 'PAG-IBIG',
1392
+ url: 'https:///Client/BPIHDMF.aspx',
1393
+ icon: null,
1394
+ children: [],
1395
+ position: null,
1396
+ order: 1,
1397
+ attributes: [],
1398
+ groupId: null,
1399
+ groupName: null,
1400
+ parentMenuId: null,
1401
+ isNewTab: null,
1402
+ },
1403
+ {
1404
+ id: null,
1405
+ code: null,
1406
+ label: 'SSS Contribution',
1407
+ url: 'https:///Client/BPISSSContri.aspx',
1408
+ icon: null,
1409
+ children: [],
1410
+ position: null,
1411
+ order: 2,
1412
+ attributes: [],
1413
+ groupId: null,
1414
+ groupName: null,
1415
+ parentMenuId: null,
1416
+ isNewTab: null,
1417
+ },
1418
+ {
1419
+ id: null,
1420
+ code: null,
1421
+ label: 'SSS Loan',
1422
+ url: 'https:///Client/BPISSSLoan.aspx',
1423
+ icon: null,
1424
+ children: [],
1425
+ position: null,
1426
+ order: 3,
1427
+ attributes: [],
1428
+ groupId: null,
1429
+ groupName: null,
1430
+ parentMenuId: null,
1431
+ isNewTab: null,
1432
+ },
1433
+ {
1434
+ id: null,
1435
+ code: null,
1436
+ label: 'SSS MCL Converter',
1437
+ url: 'https:///Client/SSSMCLBPI.aspx',
1438
+ icon: null,
1439
+ children: [],
1440
+ position: null,
1441
+ order: 4,
1442
+ attributes: [],
1443
+ groupId: null,
1444
+ groupName: null,
1445
+ parentMenuId: null,
1446
+ isNewTab: null,
1447
+ },
1448
+ {
1449
+ id: null,
1450
+ code: null,
1451
+ label: 'Philhealth',
1452
+ url: 'https:///Client/BPIPhilhealth.aspx',
1453
+ icon: null,
1454
+ children: [],
1455
+ position: null,
1456
+ order: 5,
1457
+ attributes: [],
1458
+ groupId: null,
1459
+ groupName: null,
1460
+ parentMenuId: null,
1461
+ isNewTab: null,
1462
+ },
1463
+ ],
1464
+ position: null,
1465
+ order: 10,
1466
+ attributes: [],
1467
+ groupId: null,
1468
+ groupName: 'REPORTS',
1469
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1470
+ isNewTab: null,
1471
+ },
1472
+ {
1473
+ id: null,
1474
+ code: null,
1475
+ label: 'Security Bank',
1476
+ url: '',
1477
+ icon: null,
1478
+ children: [
1479
+ {
1480
+ id: null,
1481
+ code: null,
1482
+ label: 'PAG-IBIG',
1483
+ url: 'https:///Client/SecurityBankHDMF.aspx',
1484
+ icon: null,
1485
+ children: [],
1486
+ position: null,
1487
+ order: 1,
1488
+ attributes: [],
1489
+ groupId: null,
1490
+ groupName: null,
1491
+ parentMenuId: null,
1492
+ isNewTab: null,
1493
+ },
1494
+ {
1495
+ id: null,
1496
+ code: null,
1497
+ label: 'SSS Contribution',
1498
+ url: 'https:///Client/SecurityBankSSSContri.aspx',
1499
+ icon: null,
1500
+ children: [],
1501
+ position: null,
1502
+ order: 2,
1503
+ attributes: [],
1504
+ groupId: null,
1505
+ groupName: null,
1506
+ parentMenuId: null,
1507
+ isNewTab: null,
1508
+ },
1509
+ ],
1510
+ position: null,
1511
+ order: 11,
1512
+ attributes: [],
1513
+ groupId: null,
1514
+ groupName: 'REPORTS',
1515
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1516
+ isNewTab: null,
1517
+ },
1518
+ {
1519
+ id: null,
1520
+ code: null,
1521
+ label: 'Others',
1522
+ url: '',
1523
+ icon: null,
1524
+ children: [
1525
+ {
1526
+ id: null,
1527
+ code: null,
1528
+ label: 'Certificate of Contribution',
1529
+ url: 'https:///Client/CertificateOfContribution.aspx',
1530
+ icon: null,
1531
+ children: [],
1532
+ position: null,
1533
+ order: 1,
1534
+ attributes: [],
1535
+ groupId: null,
1536
+ groupName: null,
1537
+ parentMenuId: null,
1538
+ isNewTab: null,
1539
+ },
1540
+ {
1541
+ id: null,
1542
+ code: null,
1543
+ label: 'Certificate of Loan',
1544
+ url: 'https:///Client/CertificateOfLoan.aspx',
1545
+ icon: null,
1546
+ children: [],
1547
+ position: null,
1548
+ order: 2,
1549
+ attributes: [],
1550
+ groupId: null,
1551
+ groupName: null,
1552
+ parentMenuId: null,
1553
+ isNewTab: null,
1554
+ },
1555
+ {
1556
+ id: null,
1557
+ code: null,
1558
+ label: 'Statutory Report',
1559
+ url: 'https:///Client/StatutoryReport.aspx',
1560
+ icon: null,
1561
+ children: [],
1562
+ position: null,
1563
+ order: 3,
1564
+ attributes: [],
1565
+ groupId: null,
1566
+ groupName: null,
1567
+ parentMenuId: null,
1568
+ isNewTab: null,
1569
+ },
1570
+ {
1571
+ id: null,
1572
+ code: null,
1573
+ label: 'Demographic',
1574
+ url: 'https:///Client/Chart.aspx',
1575
+ icon: null,
1576
+ children: [],
1577
+ position: null,
1578
+ order: 4,
1579
+ attributes: [],
1580
+ groupId: null,
1581
+ groupName: null,
1582
+ parentMenuId: null,
1583
+ isNewTab: null,
1584
+ },
1585
+ ],
1586
+ position: null,
1587
+ order: 12,
1588
+ attributes: [],
1589
+ groupId: null,
1590
+ groupName: 'REPORTS',
1591
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1592
+ isNewTab: null,
1593
+ },
1594
+ {
1595
+ id: null,
1596
+ code: null,
1597
+ label: 'Report Logs',
1598
+ url: 'https:///Client/ReportsLogs.aspx',
1599
+ icon: null,
1600
+ children: [],
1601
+ position: null,
1602
+ order: 13,
1603
+ attributes: [],
1604
+ groupId: null,
1605
+ groupName: 'REPORTS',
1606
+ parentMenuId: 'e9a88315-ecf7-49ea-82d9-0c6a5fd2a9e2',
1607
+ isNewTab: null,
1608
+ },
1609
+ ],
1610
+ position: 'top',
1611
+ order: 6,
1612
+ attributes: null,
1613
+ groupId: '2',
1614
+ groupName: null,
1615
+ parentMenuId: null,
1616
+ isNewTab: false,
1617
+ },
1618
+ ],
1619
+ });
1620
+
1621
+ const userMenu = ref({
1622
+ name: '',
1623
+ email: '',
1624
+ profileImage: '',
1625
+ items: [
1626
+ {
1627
+ title: 'Logout',
1628
+ icon: '',
1629
+ redirect: {
1630
+ openInNewTab: false,
1631
+ isAbsoluteURL: true,
1632
+ link: '/Login.aspx',
1633
+ },
1634
+ },
1635
+ ],
1636
+ });
1637
+ </script>