feat(cashier): billing status type/enum

This commit is contained in:
avicenan
2026-04-25 16:08:27 +07:00
parent 4833b38932
commit eb83ca5b16

View 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",
}