diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 60c471ee..82134fb0 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -184,12 +184,12 @@ type ServiceRelation = { }; export type QuotationStats = { - full: number; - split: number; - splitCustom: number; - billFull: number; - billSplit: number; - billSplitCustom: number; + issued: number; + accepted: number; + expired: number; + paymentInProcess: number; + paymentSuccess: number; + processComplete: number; }; export type Quotation = { @@ -228,14 +228,14 @@ export type Quotation = { vatExcluded: number; status: Status; quotationStatus: - | 'Issued' - | 'Accepted' - | 'Invoice' - | 'PaymentPending' - | 'PaymentInProcess' - | 'PaymentSuccess' - | 'ProcessComplete' - | 'Canceled'; + | 'issued' + | 'accepted' + | 'invoice' + | 'paymentPending' + | 'paymentInProcess' + | 'paymentSuccess' + | 'processComplete' + | 'canceled'; registeredBranchId: string;