fix(shopping cart): UX Improvements (#21035)

* fix: nontype error for resolved and moved place order button at bottom left

* fix: removed inline style

* fix: Request for quotation move to lower right

* fix: move buttons

Co-authored-by: Naren <patilnarendra3@gmail.com>
Co-authored-by: Saqib <nextchamp.saqib@gmail.com>
This commit is contained in:
Vishal Dhayagude
2020-04-07 12:19:40 +05:30
committed by GitHub
parent a5fb07e475
commit d2da8bd6e2
3 changed files with 28 additions and 20 deletions

View File

@@ -10,16 +10,16 @@
{% endif %}
{% for d in doc.taxes %}
{% if d.base_tax_amount > 0 %}
<tr>
<td class="text-right" colspan="2">
{{ d.description }}
</td>
<td class="text-right">
{{ d.get_formatted("base_tax_amount") }}
</td>
</tr>
{% endif %}
{% if d.base_tax_amount %}
<tr>
<td class="text-right" colspan="2">
{{ d.description }}
</td>
<td class="text-right">
{{ d.get_formatted("base_tax_amount") }}
</td>
</tr>
{% endif %}
{% endfor %}
{% if doc.doctype == 'Quotation' %}