mirror of
https://github.com/frappe/books.git
synced 2025-03-16 16:12:22 +00:00
fix(ui): remove tax breakdown from print view
This commit is contained in:
parent
0d52f24df1
commit
a3e4a7fc3f
@ -104,7 +104,7 @@
|
||||
v-for="tax in doc.taxes"
|
||||
:key="tax.name"
|
||||
>
|
||||
<div>{{ tax.account }} ({{ tax.rate }}%)</div>
|
||||
<div>{{ tax.account }}</div>
|
||||
<div>{{ frappe.format(tax.amount, 'Currency') }}</div>
|
||||
</div>
|
||||
<div
|
||||
|
@ -93,7 +93,7 @@
|
||||
:key="tax.name"
|
||||
>
|
||||
<div class="text-gray-800">
|
||||
{{ tax.account }} ({{ tax.rate }}%)
|
||||
{{ tax.account }}
|
||||
</div>
|
||||
<div class="text-xl mt-2">
|
||||
{{ frappe.format(tax.amount, 'Currency') }}
|
||||
|
@ -111,7 +111,7 @@
|
||||
v-for="tax in doc.taxes"
|
||||
:key="tax.name"
|
||||
>
|
||||
<div>{{ tax.account }} ({{ tax.rate }}%)</div>
|
||||
<div>{{ tax.account }}</div>
|
||||
<div>{{ frappe.format(tax.amount, 'Currency') }}</div>
|
||||
</div>
|
||||
<div
|
||||
|
Loading…
x
Reference in New Issue
Block a user