design-system-next 2.13.2 → 2.13.4

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