From 6fa61ff91fd61e1ba2cb16caacc157986d686ccd Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Thu, 26 Dec 2024 12:00:25 +0700 Subject: [PATCH] chore: add constants --- src/stores/quotations/index.ts | 1 + src/stores/quotations/types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/stores/quotations/index.ts b/src/stores/quotations/index.ts index 0038e3e0..6668f48b 100644 --- a/src/stores/quotations/index.ts +++ b/src/stores/quotations/index.ts @@ -29,6 +29,7 @@ export const useQuotationStore = defineStore('quotation-store', () => { paymentInProcess: 0, paymentSuccess: 0, processComplete: 0, + canceled: 0, }); async function getQuotationStats() { diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 53ca9c54..fc0ee77d 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -203,6 +203,7 @@ export type QuotationStats = { paymentInProcess: number; paymentSuccess: number; processComplete: number; + canceled: number; }; export type Quotation = {