diff --git a/src/pages/05_quotation/QuotationFormInfo.vue b/src/pages/05_quotation/QuotationFormInfo.vue index 5abecd19..31389b30 100644 --- a/src/pages/05_quotation/QuotationFormInfo.vue +++ b/src/pages/05_quotation/QuotationFormInfo.vue @@ -58,7 +58,7 @@ const summaryPrice = defineModel<{ totalPrice: number; totalDiscount: number; vat: number; - vatExlucded: number; + vatExcluded: number; finalPrice: number; }>('summaryPrice', { required: true, @@ -66,6 +66,7 @@ const summaryPrice = defineModel<{ totalPrice: 0, totalDiscount: 0, vat: 0, + vatExcluded: 0, finalPrice: 0, }, });