@finema/finework-layer 1.0.24 → 1.0.25
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/CHANGELOG.md +6 -0
- package/app/components/PortalApp.vue +10 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.25](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.24...1.0.25) (2026-03-27)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* update naming and status for Request and Request Admin in PortalApp ([a584944](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/a58494411ee4dc8de6bfd6c5e7eaec20c9185625))
|
|
8
|
+
|
|
3
9
|
## [1.0.24](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.23...1.0.24) (2026-03-26)
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
@@ -328,12 +328,12 @@ const dailyApps = computed(() => [
|
|
|
328
328
|
status: StatusPortal.ACTIVE,
|
|
329
329
|
},
|
|
330
330
|
{
|
|
331
|
-
name: '
|
|
331
|
+
name: 'Request',
|
|
332
332
|
logo: '/admin/request.png',
|
|
333
|
-
label: '
|
|
333
|
+
label: 'Request',
|
|
334
334
|
description: 'ระบบขอ ลา เบิก อนุมัติรายการต่างๆ',
|
|
335
335
|
to: '/',
|
|
336
|
-
status: StatusPortal.
|
|
336
|
+
status: StatusPortal.ACTIVE,
|
|
337
337
|
},
|
|
338
338
|
])
|
|
339
339
|
|
|
@@ -509,7 +509,7 @@ const peopleApps = computed(() => [
|
|
|
509
509
|
},
|
|
510
510
|
]
|
|
511
511
|
: []),
|
|
512
|
-
...(auth.hasPermission(UserModule.
|
|
512
|
+
...(auth.hasPermission(UserModule.RESOURCE, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
513
513
|
? [
|
|
514
514
|
{
|
|
515
515
|
name: 'Resource',
|
|
@@ -517,19 +517,19 @@ const peopleApps = computed(() => [
|
|
|
517
517
|
label: 'Resource',
|
|
518
518
|
description: 'ระบบจัดการทรัพยากรบุคคล',
|
|
519
519
|
to: '/',
|
|
520
|
-
status: StatusPortal.
|
|
520
|
+
status: StatusPortal.ACTIVE,
|
|
521
521
|
},
|
|
522
522
|
]
|
|
523
523
|
: []),
|
|
524
|
-
...(auth.hasPermission(UserModule.
|
|
524
|
+
...(auth.hasPermission(UserModule.REQUEST, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
525
525
|
? [
|
|
526
526
|
{
|
|
527
|
-
name: '
|
|
527
|
+
name: 'Request Admin',
|
|
528
528
|
logo: '/admin/request-admin.svg',
|
|
529
|
-
label: '
|
|
529
|
+
label: 'Request Admin',
|
|
530
530
|
description: 'ระบบจัดการคำขออนุมัติต่างๆ',
|
|
531
531
|
to: '/',
|
|
532
|
-
status: StatusPortal.
|
|
532
|
+
status: StatusPortal.ACTIVE,
|
|
533
533
|
},
|
|
534
534
|
]
|
|
535
535
|
: []),
|
|
@@ -537,7 +537,7 @@ const peopleApps = computed(() => [
|
|
|
537
537
|
])
|
|
538
538
|
|
|
539
539
|
const legalApps = computed(() => [
|
|
540
|
-
...(auth.hasPermission(UserModule.CONTRACT, Permission.USER, Permission.ADMIN)
|
|
540
|
+
...(auth.hasPermission(UserModule.CONTRACT, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
541
541
|
? [
|
|
542
542
|
{
|
|
543
543
|
name: 'Contract',
|