diff --git a/src/i18n/eng.ts b/src/i18n/eng.ts index 94405c88..7496b391 100644 --- a/src/i18n/eng.ts +++ b/src/i18n/eng.ts @@ -166,7 +166,6 @@ export default { branch: 'Branch', personnel: 'Personnel', productService: 'Product and Service', - document: 'Documents', workflow: 'Workflow', customer: 'Customer', mainData: 'Main Data', @@ -196,6 +195,11 @@ export default { debitNote: 'Debit Note', }, + managDocumente: { + title: 'Docs', + document: 'Document', + }, + overall: { title: 'Overall', report: 'Report', diff --git a/src/i18n/tha.ts b/src/i18n/tha.ts index 6bcfd50b..49d35d82 100644 --- a/src/i18n/tha.ts +++ b/src/i18n/tha.ts @@ -166,7 +166,6 @@ export default { branch: 'สาขา', personnel: 'บุคลากร', productService: 'สินค้าและบริการ', - document: 'เอกสาร', workflow: 'ขั้นตอนการทำงาน', customer: 'ลูกค้า', mainData: 'ข้อมูลหลัก', @@ -196,6 +195,11 @@ export default { debitNote: 'ใบเพิ่มหนี้', }, + managDocumente: { + title: 'คลังเอกสาร', + document: 'เอกสาร', + }, + overall: { title: 'ภาพรวม', report: 'รายงาน', diff --git a/src/layouts/DrawerComponent.vue b/src/layouts/DrawerComponent.vue index 79a56b4d..c804f4f9 100644 --- a/src/layouts/DrawerComponent.vue +++ b/src/layouts/DrawerComponent.vue @@ -130,7 +130,6 @@ onMounted(async () => { }, { label: 'workflow', route: '/workflow' }, { label: 'productService', route: '/product-service' }, - { label: 'document', route: '/document-management' }, { label: 'customer', route: '/customer-management' }, { label: 'agencies', route: '/agencies-management' }, ], @@ -164,6 +163,18 @@ onMounted(async () => { { label: 'debitNote', route: '' }, ], }, + + { + label: 'menu.managDocumente', + icon: 'mdi-archive', + children: [ + { + label: 'document', + route: '/document-management', + }, + ], + }, + { label: 'menu.overall', icon: 'mdi-monitor-dashboard',