refactor: edit value default

This commit is contained in:
Thanaphon Frappet 2024-11-07 14:22:13 +07:00
parent f6ccbc530a
commit 125ae9e125

View file

@ -22,12 +22,12 @@ export const useQuotationStore = defineStore('quotation-store', () => {
const pageMax = ref<number>(1); const pageMax = ref<number>(1);
const pageSize = ref<number>(30); const pageSize = ref<number>(30);
const stats = ref<QuotationStats>({ const stats = ref<QuotationStats>({
full: 0, issued: 0,
split: 0, accepted: 0,
splitCustom: 0, expired: 0,
billFull: 0, paymentInProcess: 0,
billSplit: 0, paymentSuccess: 0,
billSplitCustom: 0, processComplete: 0,
}); });
async function getQuotationStats() { async function getQuotationStats() {