diff --git a/src/pages/05_quotation/QuotationForm.vue b/src/pages/05_quotation/QuotationForm.vue index 60e9e8ea..35fa1079 100644 --- a/src/pages/05_quotation/QuotationForm.vue +++ b/src/pages/05_quotation/QuotationForm.vue @@ -1458,13 +1458,14 @@ const view = ref(View.Quotation); - diff --git a/src/pages/05_quotation/QuotationFormReceipt.vue b/src/pages/05_quotation/QuotationFormReceipt.vue index 0f32c267..04d84825 100644 --- a/src/pages/05_quotation/QuotationFormReceipt.vue +++ b/src/pages/05_quotation/QuotationFormReceipt.vue @@ -7,6 +7,8 @@ withDefaults( payType: string; amount: number; date: string | Date; + index: number; + paySplitCount: number; }>(), { payType: 'Full', amount: 0, date: () => new Date() }, ); @@ -22,6 +24,7 @@ withDefaults( {{ $t(`quotation.type.${payType}`) }} + {{ payType !== 'Full' ? `${index + 1} / ${paySplitCount}` : `` }}
{{ $t('quotation.receiptDialog.PaymentSuccess') }}