fix(FE): skeleton for input skenario sales order

This commit is contained in:
randy-ar
2026-02-04 15:38:03 +07:00
parent e123ca9b13
commit 09cd6395e6
5 changed files with 525 additions and 168 deletions
+24 -5
View File
@@ -495,16 +495,35 @@ export const FILTER_TYPE_OPTIONS = [
export const MARKETING_TYPE_OPTIONS = [
{
label: 'Ayam',
value: 'ayam',
label: 'Ayam Pullet',
value: 'AYAM_PULLET',
},
{
label: 'Telur',
value: 'telur',
label: 'Ayam',
value: 'AYAM',
},
{
label: 'Trading',
value: 'trading',
value: 'TRADING',
},
{
label: 'Telur',
value: 'TELUR',
},
];
export const MARKETING_CONVERTION_UNIT_OPTIONS = [
{
label: 'Kg',
value: 'kg',
},
{
label: 'Qty',
value: 'qty',
},
{
label: 'Peti',
value: 'peti',
},
];