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

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 doc.flags.print_taxes_with_zero_amount) and (not charge.included_in_print_rate or doc.flags.show_inclusive_tax_in_print) -%}
<div class="row">
2017-09-06 06:47:12 +00:00
<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">
2015-02-24 09:13:14 +00:00
{{ frappe.format_value(frappe.utils.flt(charge.tax_amount),
2014-08-04 11:31:01 +00:00
table_meta.get_field("tax_amount"), doc, currency=doc.currency) }}
</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>