diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 1b27be1a..1cd3eac1 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -206,6 +206,9 @@ export type Quotation = { vatExcluded: number; status: Status; quotationStatus: + | 'Issued' + | 'Accepted' + | 'Invoice' | 'PaymentPending' | 'PaymentInProcess' | 'PaymentSuccess' @@ -272,6 +275,15 @@ export type QuotationFull = { code: string; statusOrder: number; status: Status; + quotationStatus: + | 'Issued' + | 'Accepted' + | 'Invoice' + | 'PaymentPending' + | 'PaymentInProcess' + | 'PaymentSuccess' + | 'ProcessComplete' + | 'Canceled'; customerBranchId: string; registeredBranchId: string;