diff --git a/src/config/constant.ts b/src/config/constant.ts index f11019e2..41075983 100644 --- a/src/config/constant.ts +++ b/src/config/constant.ts @@ -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' }, +];