fix: pricePerUnit calc
This commit is contained in:
parent
542a6cebdb
commit
096ac44087
1 changed files with 3 additions and 2 deletions
|
|
@ -286,8 +286,9 @@ watch(
|
|||
<q-td align="right">
|
||||
{{
|
||||
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,
|
||||
)
|
||||
}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue