fix: price scope
This commit is contained in:
parent
43c4147eaa
commit
c2848d1005
1 changed files with 4 additions and 3 deletions
|
|
@ -286,9 +286,10 @@ watch(
|
|||
<q-td align="right">
|
||||
{{
|
||||
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,
|
||||
)
|
||||
}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue