mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 05:22:02 +00:00
chore: add FINANCE_TRANSACTION_TYPE_OPTIONS and FINANCE_PAYMENT_METHOD_OPTIONS constant
This commit is contained in:
+12
-1
@@ -36,7 +36,7 @@ export const MAIN_DRAWER_LINKS: SidebarMenuItem[] = [
|
||||
icon: 'heroicons-outline:currency-dollar',
|
||||
},
|
||||
{
|
||||
text: 'Biaya Operasional',
|
||||
text: 'Biaya',
|
||||
link: '/expense',
|
||||
icon: 'heroicons:wallet',
|
||||
},
|
||||
@@ -256,3 +256,14 @@ export const ACCEPTED_FILE_TYPE = {
|
||||
'image/*': [],
|
||||
},
|
||||
};
|
||||
|
||||
export const FINANCE_TRANSACTION_TYPE_OPTIONS = [
|
||||
{ value: 'REVENUE', label: 'Pemasukan' },
|
||||
{ value: 'EXPENSE', label: 'Pengeluaran' },
|
||||
];
|
||||
|
||||
export const FINANCE_PAYMENT_METHOD_OPTIONS = [
|
||||
{ value: 'TRANSFER', label: 'Transfer' },
|
||||
{ value: 'CASH', label: 'Cash' },
|
||||
{ value: 'GIRO', label: 'Giro' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user