diff --git a/src/components/05_quotation/ProductItem.vue b/src/components/05_quotation/ProductItem.vue index 8ecda296..9cd13bdd 100644 --- a/src/components/05_quotation/ProductItem.vue +++ b/src/components/05_quotation/ProductItem.vue @@ -286,9 +286,10 @@ watch( {{ formatNumberDecimal( - props.row.pricePerUnit + props.row.product.calcVat - ? props.row.pricePerUnit * (config?.vat || 0.07) - : 0, + props.row.pricePerUnit + + (props.row.product.calcVat + ? props.row.pricePerUnit * (config?.vat || 0.07) + : 0), 2, ) }}