fix(FE): adding select injection type for positive and negative value

This commit is contained in:
randy-ar
2026-01-26 16:08:23 +07:00
parent 40eaa729ef
commit 85f4a5deaa
4 changed files with 53 additions and 3 deletions
+5
View File
@@ -389,6 +389,11 @@ export const FINANCE_INITIAL_BALANCE_TYPE_OPTIONS = [
{ label: 'Saldo Awal Negatif', value: 'NEGATIVE' },
];
export const FINANCE_INJECTION_TYPE_OPTIONS = [
{ label: 'Saldo Injection Positif', value: 'POSITIVE' },
{ label: 'Saldo Injection Negatif', value: 'NEGATIVE' },
];
export const FINANCE_TRANSACTION_TYPE_OPTIONS = [
{ label: 'Pembelian', value: 'PEMBELIAN' },
{ label: 'Penjualan', value: 'PENJUALAN' },