petty_cash
This commit is contained in:
@ -13,5 +13,9 @@ export * from "../entity/finance/finance_purchase_requests";
|
|||||||
export * from "../entity/finance/finance_purchase_request_items";
|
export * from "../entity/finance/finance_purchase_request_items";
|
||||||
export * from "../entity/finance/finance_cpvs";
|
export * from "../entity/finance/finance_cpvs";
|
||||||
export * from "../entity/finance/finance_payment_orders";
|
export * from "../entity/finance/finance_payment_orders";
|
||||||
|
export * from "../entity/finance/finance_petty_cash_pockets";
|
||||||
|
export * from "../entity/finance/finance_petty_cash_credits";
|
||||||
|
export * from "../entity/finance/finance_petty_cash_expenses";
|
||||||
|
export * from "../entity/finance/finance_petty_cash_transactions";
|
||||||
|
|
||||||
export * from "../types/finance";
|
export * from "../types/finance";
|
||||||
|
|||||||
@ -48,3 +48,8 @@ export enum FinancePaymentOrderStatusType {
|
|||||||
approve = "approve",
|
approve = "approve",
|
||||||
reject = "reject",
|
reject = "reject",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum PettyCashTransactionType {
|
||||||
|
credit = "credit", // Topup/Entry
|
||||||
|
expense = "expense", // Deduct/Expense
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user