feat(FE-212): add sales orders link and accepted file types constants

This commit is contained in:
rstubryan
2025-11-18 13:24:34 +07:00
parent 0f9019e7b4
commit 2680d5a24d
+15
View File
@@ -58,6 +58,12 @@ export const MAIN_DRAWER_LINKS: MAIN_DRAWER_MENU[] = [
icon: 'uil:wallet', icon: 'uil:wallet',
}, },
{
title: 'Penjualan',
link: '/marketing/sales-orders',
icon: 'mdi:attach-money',
},
{ {
title: 'Persediaan', title: 'Persediaan',
link: '/inventory', link: '/inventory',
@@ -243,3 +249,12 @@ export const RECORDING_FLAG_OPTIONS = [
{ label: 'Ayam Culling', value: 'Ayam Culling' }, { label: 'Ayam Culling', value: 'Ayam Culling' },
{ label: 'Ayam Mati', value: 'Ayam Mati' }, { label: 'Ayam Mati', value: 'Ayam Mati' },
]; ];
export const ACCEPTED_FILE_TYPE = {
PDF: {
'application/pdf': ['.pdf'],
},
IMAGE: {
'image/*': [],
},
};