diff --git a/src/components/shared/SelectZone.vue b/src/components/shared/SelectZone.vue index 3e5715a0..095967ee 100644 --- a/src/components/shared/SelectZone.vue +++ b/src/components/shared/SelectZone.vue @@ -6,7 +6,7 @@ const props = withDefaults( defineProps<{ // eslint-disable-next-line @typescript-eslint/no-explicit-any items: any; - newItems: any; + newItems?: any; color?: string; borderSearchSection?: boolean; itemClass?: string; diff --git a/src/pages/05_quotation/QuotationFormInfo.vue b/src/pages/05_quotation/QuotationFormInfo.vue index 9008f34b..9b665130 100644 --- a/src/pages/05_quotation/QuotationFormInfo.vue +++ b/src/pages/05_quotation/QuotationFormInfo.vue @@ -283,7 +283,15 @@ watch( {{ $t('quotation.paySplitCount') }} - ({{ $t('quotation.payTotal', { msg: '10,000' }) }}) + ({{ + $t('quotation.payTotal', { + msg: + formatNumberDecimal( + Math.max(summaryPrice.finalPrice, 0), + 2, + ) || 0, + }) + }})