@finema/finework-layer 0.2.91 → 0.2.92
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 +24 -26
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.92](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.91...0.2.92) (2025-12-22)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* sort portal app ([052e8f7](https://gitlab.finema.co/finema/finework/finework-frontend-layer/commit/052e8f7b782e18a4e6ab4c1ab25fddece28c0d4d))
|
|
8
|
+
|
|
3
9
|
## [0.2.91](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.90...0.2.91) (2025-12-19)
|
|
4
10
|
|
|
5
11
|
## [0.2.90](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/0.2.89...0.2.90) (2025-12-18)
|
|
@@ -213,14 +213,6 @@ const managementApps = computed(() => [
|
|
|
213
213
|
},
|
|
214
214
|
]
|
|
215
215
|
: []),
|
|
216
|
-
{
|
|
217
|
-
name: 'Requests',
|
|
218
|
-
logo: '/admin/request-admin.png',
|
|
219
|
-
label: 'Requests',
|
|
220
|
-
description: 'จัดการคำขอ',
|
|
221
|
-
to: '/',
|
|
222
|
-
status: StatusPortal.DEVELOPING,
|
|
223
|
-
},
|
|
224
216
|
...(auth.hasPermission(UserModule.CHECKIN, Permission.ADMIN)
|
|
225
217
|
? [
|
|
226
218
|
{
|
|
@@ -258,19 +250,17 @@ const managementApps = computed(() => [
|
|
|
258
250
|
},
|
|
259
251
|
]
|
|
260
252
|
: []),
|
|
261
|
-
|
|
262
|
-
])
|
|
263
|
-
|
|
264
|
-
const financeApps = computed(() => [
|
|
265
|
-
|
|
266
253
|
{
|
|
267
|
-
name: '
|
|
268
|
-
logo: '/admin/
|
|
269
|
-
label: '
|
|
270
|
-
description: '
|
|
254
|
+
name: 'Requests',
|
|
255
|
+
logo: '/admin/request-admin.png',
|
|
256
|
+
label: 'Requests',
|
|
257
|
+
description: 'จัดการคำขอ',
|
|
271
258
|
to: '/',
|
|
272
259
|
status: StatusPortal.DEVELOPING,
|
|
273
260
|
},
|
|
261
|
+
])
|
|
262
|
+
|
|
263
|
+
const financeApps = computed(() => [
|
|
274
264
|
|
|
275
265
|
...(auth.hasPermission(UserModule.COSTSHEET, Permission.USER, Permission.ADMIN)
|
|
276
266
|
? [
|
|
@@ -285,15 +275,6 @@ const financeApps = computed(() => [
|
|
|
285
275
|
]
|
|
286
276
|
: []),
|
|
287
277
|
|
|
288
|
-
{
|
|
289
|
-
name: 'Guarantee',
|
|
290
|
-
logo: '/admin/cost-sheet.png',
|
|
291
|
-
label: 'งบค้ำประกัน',
|
|
292
|
-
description: 'การเบิกเงินค้ำซองและค้ำสัญญากับธนาคาร',
|
|
293
|
-
to: '/',
|
|
294
|
-
status: StatusPortal.DEVELOPING,
|
|
295
|
-
},
|
|
296
|
-
|
|
297
278
|
...(auth.hasPermission(UserModule.QUOTATION, Permission.USER, Permission.ADMIN)
|
|
298
279
|
? [
|
|
299
280
|
{
|
|
@@ -306,6 +287,23 @@ const financeApps = computed(() => [
|
|
|
306
287
|
},
|
|
307
288
|
]
|
|
308
289
|
: []),
|
|
290
|
+
{
|
|
291
|
+
name: 'eFactoring',
|
|
292
|
+
logo: '/admin/efactoring.png',
|
|
293
|
+
label: 'eFactoring',
|
|
294
|
+
description: 'การเบิกเงินหมุนเวียนกับธนาคาร',
|
|
295
|
+
to: '/',
|
|
296
|
+
status: StatusPortal.DEVELOPING,
|
|
297
|
+
},
|
|
298
|
+
|
|
299
|
+
{
|
|
300
|
+
name: 'Guarantee',
|
|
301
|
+
logo: '/admin/cost-sheet.png',
|
|
302
|
+
label: 'งบค้ำประกัน',
|
|
303
|
+
description: 'การเบิกเงินค้ำซองและค้ำสัญญากับธนาคาร',
|
|
304
|
+
to: '/',
|
|
305
|
+
status: StatusPortal.DEVELOPING,
|
|
306
|
+
},
|
|
309
307
|
])
|
|
310
308
|
|
|
311
309
|
const peopleApps = computed(() => [
|