From eb83ca5b16ace1c96d800d0483df91fbe38c4c64 Mon Sep 17 00:00:00 2001 From: avicenan Date: Sat, 25 Apr 2026 16:08:27 +0700 Subject: [PATCH] feat(cashier): billing status type/enum --- src/types/billing_status.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/types/billing_status.ts diff --git a/src/types/billing_status.ts b/src/types/billing_status.ts new file mode 100644 index 0000000..32ae66f --- /dev/null +++ b/src/types/billing_status.ts @@ -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", +} \ No newline at end of file