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