brotherton-erpnext/erpnext/templates/print_formats/includes/taxes.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.2 KiB
HTML
Raw Normal View History

2015-02-22 19:36:00 +00:00
{%- macro render_discount_amount(doc) -%}
{%- if doc.discount_amount -%}
<div class="row">
<div class="col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}">
<label>{{ _(doc.meta.get_label('discount_amount')) }}</label></div>
2015-02-22 19:36:00 +00:00
<div class="col-xs-7 text-right">
2016-02-19 05:44:29 +00:00
- {{ doc.get_formatted("discount_amount", doc) }}
2015-02-22 19:36:00 +00:00
</div>
</div>
{%- endif -%}
{%- endmacro -%}
<div class="row">
2014-07-28 12:07:52 +00:00
<div class="col-xs-6"></div>
<div class="col-xs-6">
2015-02-22 19:36:00 +00:00
{%- if doc.apply_discount_on == "Net Total" -%}
{{ render_discount_amount(doc) }}
{%- endif -%}
{%- for charge in data -%}
{%- if (charge.tax_amount or print_settings.print_taxes_with_zero_amount) and (not charge.included_in_print_rate or doc.flags.show_inclusive_tax_in_print) -%}
<div class="row">
<div class="col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}">
<label>{{ charge.get_formatted("description") }}</label>
</div>
2014-07-28 12:07:52 +00:00
<div class="col-xs-7 text-right">
{{ charge.get_formatted('tax_amount', doc) }}
</div>
</div>
{%- endif -%}
{%- endfor -%}
2015-02-22 19:36:00 +00:00
{%- if doc.apply_discount_on == "Grand Total" -%}
{{ render_discount_amount(doc) }}
{%- endif -%}
</div>
</div>