refactor: show total pay split
This commit is contained in:
parent
2264686a34
commit
88d0e1df14
2 changed files with 6 additions and 2 deletions
|
|
@ -1458,13 +1458,14 @@ const view = ref<View>(View.Quotation);
|
|||
</div>
|
||||
</q-expansion-item>
|
||||
</template>
|
||||
|
||||
<QuotationFormReceipt
|
||||
v-if="view === View.Receipt"
|
||||
v-for="v in receiptList"
|
||||
v-for="(v, i) in receiptList"
|
||||
:amount="v.amount"
|
||||
:date="v.date"
|
||||
:pay-type="quotationFormData.payCondition"
|
||||
:index="i"
|
||||
:pay-split-count="quotationFormData.paySplitCount || 0"
|
||||
/>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue