mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat: add laporan menu, FILTER_TYPE_OPTIONS, and MARKETING_TYPE_OPTIONS
This commit is contained in:
@@ -45,6 +45,17 @@ export const MAIN_DRAWER_LINKS: SidebarMenuItem[] = [
|
|||||||
link: '/closing',
|
link: '/closing',
|
||||||
icon: 'heroicons-outline:presentation-chart-bar',
|
icon: 'heroicons-outline:presentation-chart-bar',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: 'Laporan',
|
||||||
|
link: '/report',
|
||||||
|
icon: 'heroicons-outline:document-text',
|
||||||
|
submenu: [
|
||||||
|
{
|
||||||
|
text: 'Penjualan',
|
||||||
|
link: '/report/marketing',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: 'Persediaan',
|
text: 'Persediaan',
|
||||||
link: '/inventory',
|
link: '/inventory',
|
||||||
@@ -251,3 +262,29 @@ export const ACCEPTED_FILE_TYPE = {
|
|||||||
'image/*': [],
|
'image/*': [],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const FILTER_TYPE_OPTIONS = [
|
||||||
|
{
|
||||||
|
label: 'Tanggal Realisasi',
|
||||||
|
value: 'REALIZATION_DATE',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Tanggal DO',
|
||||||
|
value: 'DO_DATE',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const MARKETING_TYPE_OPTIONS = [
|
||||||
|
{
|
||||||
|
label: 'Ayam',
|
||||||
|
value: 'ayam',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Telur',
|
||||||
|
value: 'telur',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Trading',
|
||||||
|
value: 'trading',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user