diff --git a/src/components/05_quotation/ProductItem.vue b/src/components/05_quotation/ProductItem.vue index 9c585d3f..5a243d7b 100644 --- a/src/components/05_quotation/ProductItem.vue +++ b/src/components/05_quotation/ProductItem.vue @@ -1,10 +1,15 @@ @@ -177,34 +202,26 @@ const columns = [ @@ -229,20 +246,28 @@ const columns = [ >
{{ $t('quotation.allProductPrice') }} - {{ summary.totalPrice }} ฿ + + {{ formatNumberDecimal(summary.totalPrice, 2) }} ฿ +
{{ $t('general.discount') }} - {{ summary.totalDiscount }} ฿ + + {{ formatNumberDecimal(summary.totalDiscount, 2) }} ฿ +
{{ $t('quotation.tax') }} - {{ summary.vat }} ฿ + + {{ formatNumberDecimal(summary.vat, 2) }} ฿ +
{{ $t('quotation.totalPrice') }} - {{ summary.finalPrice }} ฿ + + {{ formatNumberDecimal(summary.finalPrice, 2) }} ฿ +