fix: clean and finalproduct installment
This commit is contained in:
parent
e40ac7a30e
commit
85b108a9b2
2 changed files with 10 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
items: any;
|
items: any;
|
||||||
newItems: any;
|
newItems?: any;
|
||||||
color?: string;
|
color?: string;
|
||||||
borderSearchSection?: boolean;
|
borderSearchSection?: boolean;
|
||||||
itemClass?: string;
|
itemClass?: string;
|
||||||
|
|
|
||||||
|
|
@ -283,7 +283,15 @@ watch(
|
||||||
{{ $t('quotation.paySplitCount') }}
|
{{ $t('quotation.paySplitCount') }}
|
||||||
</span>
|
</span>
|
||||||
<span class="app-text-muted text-caption">
|
<span class="app-text-muted text-caption">
|
||||||
({{ $t('quotation.payTotal', { msg: '10,000' }) }})
|
({{
|
||||||
|
$t('quotation.payTotal', {
|
||||||
|
msg:
|
||||||
|
formatNumberDecimal(
|
||||||
|
Math.max(summaryPrice.finalPrice, 0),
|
||||||
|
2,
|
||||||
|
) || 0,
|
||||||
|
})
|
||||||
|
}})
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<q-input
|
<q-input
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue