2
0
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:
18alantom 2022-03-17 10:13:03 +05:30
parent 0d52f24df1
commit a3e4a7fc3f
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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') }}

View File

@ -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