chore: add constants

This commit is contained in:
Methapon2001 2024-12-26 12:00:25 +07:00
parent 7faef797cc
commit 6fa61ff91f
2 changed files with 2 additions and 0 deletions

View file

@ -29,6 +29,7 @@ export const useQuotationStore = defineStore('quotation-store', () => {
paymentInProcess: 0,
paymentSuccess: 0,
processComplete: 0,
canceled: 0,
});
async function getQuotationStats() {

View file

@ -203,6 +203,7 @@ export type QuotationStats = {
paymentInProcess: number;
paymentSuccess: number;
processComplete: number;
canceled: number;
};
export type Quotation = {