diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 607f8373..2b6d53c4 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -265,7 +265,7 @@ async function assignToProductServiceList() { } } -async function submitAccepted(id: string) { +async function submitAccepted() { dialog({ color: 'info', icon: 'mdi-account-check', @@ -276,7 +276,7 @@ async function submitAccepted(id: string) { action: async () => { if (!quotationFormData.value.id) return; - const rse = await quotationForm.accepted(quotationFormData.value.id); + await quotationForm.accepted(quotationFormData.value.id); }, cancel: () => {}, });