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">
|
<q-td align="right">
|
||||||
{{
|
{{
|
||||||
formatNumberDecimal(
|
formatNumberDecimal(
|
||||||
props.row.pricePerUnit + props.row.product.calcVat
|
props.row.pricePerUnit +
|
||||||
? props.row.pricePerUnit * (config?.vat || 0.07)
|
(props.row.product.calcVat
|
||||||
: 0,
|
? props.row.pricePerUnit * (config?.vat || 0.07)
|
||||||
|
: 0),
|
||||||
2,
|
2,
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue