From 1aaaa5f2a6d86a5c3be8bef595fe8c20b17a87aa Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Fri, 8 Nov 2024 11:11:45 +0700 Subject: [PATCH] refactor: add type Expired at quotation status --- src/stores/quotations/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 82134fb0..fcb01194 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -6,6 +6,7 @@ import { Invoice } from '../payment/types'; export type QuotationStatus = | 'Issued' | 'Accepted' + | 'Expired' | 'Invoice' | 'PaymentPending' | 'PaymentInProcess'