Merge branch 'development' into feat/FE/US-77/TASK-113-slicing-transfer-to-laying-create-form

This commit is contained in:
ValdiANS
2025-10-21 15:29:10 +07:00
32 changed files with 2428 additions and 12 deletions
+31 -5
View File
@@ -13,14 +13,24 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [
},
{
title: 'Produksi',
title: 'Production',
link: '/production',
icon: 'ix:machine-a',
icon: 'material-symbols:conveyor-belt-outline-rounded',
submenu: [
{
title: 'Transfer ke Laying',
link: '/production/transfer-to-laying',
icon: 'streamline:transfer-van',
title: 'List Flock',
link: '/production/project-flock',
icon: 'material-symbols:list-alt-add-outline-rounded',
},
{
title: 'Chick In',
link: '/production/chick-in',
icon: 'mdi:home-import-outline',
},
{
title: 'Recording',
link: '/production/recording',
icon: 'mdi:clipboard-text',
},
],
},
@@ -113,6 +123,11 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [
link: '/master-data/supplier',
icon: 'material-symbols:add-business-outline-rounded',
},
{
title: 'Flock',
link: '/master-data/flock',
icon: 'material-symbols:raven-outline-rounded',
},
],
},
] as const;
@@ -173,6 +188,17 @@ export const CATEGORY_OPTIONS = [
},
];
export const FLOCK_CATEGORY_OPTIONS = [
{
label: 'GROWING',
value: 'GROWING',
},
{
label: 'LAYING',
value: 'LAYING',
},
];
export const PRODUCT_FLAG_OPTIONS = [
{ label: 'DOC', value: 'DOC' },
{ label: 'PAKAN', value: 'PAKAN' },