@finema/finework-layer 1.0.79 → 1.0.81
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.81](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.80...1.0.81) (2026-06-23)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add Report module to management apps with check-in summary dashboard ([589949f](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/589949fd6f30d7cc8615a60b36ddec2aed16606e))
|
|
8
|
+
|
|
9
|
+
## [1.0.80](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.79...1.0.80) (2026-06-16)
|
|
10
|
+
|
|
3
11
|
## [1.0.79](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.78...1.0.79) (2026-06-16)
|
|
4
12
|
|
|
5
13
|
## [1.0.78](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/1.0.77...1.0.78) (2026-06-12)
|
|
@@ -154,13 +154,13 @@ const getLink = (item: INotificationItem) => {
|
|
|
154
154
|
{
|
|
155
155
|
switch (item.action_type) {
|
|
156
156
|
case 'EVALUATION_GENERAL_REMINDER':
|
|
157
|
-
return `/evaluation/evaluator/${item.
|
|
157
|
+
return `/evaluation/evaluator/${item.source_id}`
|
|
158
158
|
|
|
159
159
|
case 'EVALUATION_PROBATION_REMINDER':
|
|
160
|
-
return `/evaluation/probation/${item.
|
|
160
|
+
return `/evaluation/probation/${item.source_id}`
|
|
161
161
|
|
|
162
162
|
case 'EVALUATION_ANNUAL_REMINDER':
|
|
163
|
-
return `/evaluation/annuals/${item.
|
|
163
|
+
return `/evaluation/annuals/${item.source_id}/submission`
|
|
164
164
|
default:
|
|
165
165
|
return '#'
|
|
166
166
|
}
|
|
@@ -380,6 +380,18 @@ const managementApps = computed(() => [
|
|
|
380
380
|
},
|
|
381
381
|
]
|
|
382
382
|
: []),
|
|
383
|
+
...(auth.hasPermission(UserModule.SETTING, Permission.USER, Permission.ADMIN, Permission.SUPER)
|
|
384
|
+
? [
|
|
385
|
+
{
|
|
386
|
+
name: 'report',
|
|
387
|
+
logo: '/admin/report.svg',
|
|
388
|
+
label: 'Report',
|
|
389
|
+
description: 'รายงานภาพรวมบริษัท',
|
|
390
|
+
to: routes.report.checkinSummaryDashboard.to,
|
|
391
|
+
status: StatusPortal.ACTIVE,
|
|
392
|
+
},
|
|
393
|
+
]
|
|
394
|
+
: []),
|
|
383
395
|
|
|
384
396
|
])
|
|
385
397
|
|
package/app/constants/routes.ts
CHANGED
|
@@ -231,6 +231,14 @@ export const routes = {
|
|
|
231
231
|
},
|
|
232
232
|
},
|
|
233
233
|
},
|
|
234
|
+
report: {
|
|
235
|
+
checkinSummaryDashboard: {
|
|
236
|
+
label: 'สรุปการเข้างาน',
|
|
237
|
+
icon: 'material-symbols:dashboard',
|
|
238
|
+
to: '/report/summary-dashboard',
|
|
239
|
+
permissions: ['setting:USER', 'setting:ADMIN', 'setting:SUPER'],
|
|
240
|
+
},
|
|
241
|
+
},
|
|
234
242
|
|
|
235
243
|
} as const
|
|
236
244
|
|