feat(cashier): billing status type/enum
This commit is contained in:
11
src/types/billing_status.ts
Normal file
11
src/types/billing_status.ts
Normal file
@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Workflow status for cashier billing.
|
||||
* Paid: billing has been fully paid
|
||||
* Unpaid: billing has not been paid
|
||||
* Partially paid: billing has been partially paid
|
||||
*/
|
||||
export enum BillingStatus {
|
||||
PAID = "PAID",
|
||||
UNPAID = "UNPAID",
|
||||
PARTIALLY_PAID = "PARTIALLY_PAID",
|
||||
}
|
||||
Reference in New Issue
Block a user