diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index c73a7526..34f0e61e 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -2116,8 +2116,11 @@ watch( :pay-split-count="quotationFormData.paySplitCount || 0" @view=" () => { - selectedInstallmentNo = [v.invoice.installments[0].no]; - installmentAmount = v.invoice.amount; + if (quotationFormData.payCondition !== 'Full') { + selectedInstallmentNo = [v.invoice.installments[0].no]; + installmentAmount = v.invoice.amount; + } + view = View.Quotation; } "