From a088189ed161982b5b83e27bb75e86c826dd055b Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Mon, 20 Oct 2025 10:14:22 +0700 Subject: [PATCH] chore(FE-140): add Produksi and Transfer ke Laying menu --- src/config/constant.ts | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/config/constant.ts b/src/config/constant.ts index ed68adb5..a623fd9e 100644 --- a/src/config/constant.ts +++ b/src/config/constant.ts @@ -12,6 +12,19 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [ icon: 'gg:chart', }, + { + title: 'Produksi', + link: '/production', + icon: 'ix:machine-a', + submenu: [ + { + title: 'Transfer ke Laying', + link: '/production/transfer-to-laying', + icon: 'streamline:transfer-van', + }, + ], + }, + { title: 'Master Data', link: '/master-data', @@ -88,8 +101,8 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [ title: 'Penyesuaian Persediaan', link: '/inventory/adjustment', icon: 'material-symbols:box-edit-outline-rounded', - } - ] + }, + ], }, ] as const;