2015-02-22 19:36:00 +00:00
{%- macro render_discount_amount(doc) -%}
{%- if doc.discount_amount -%}
< div class = "row" >
2019-08-08 10:21:50 +00:00
< div class = "col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}" >
2018-09-17 05:36:49 +00:00
< 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 -%}
2014-07-16 12:48:34 +00:00
< 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 -%}
2014-07-16 12:48:34 +00:00
{%- for charge in data -%}
2020-10-29 08:49:34 +00:00
{%- 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) -%}
2014-07-16 12:48:34 +00:00
< div class = "row" >
2019-08-08 10:21:50 +00:00
< div class = "col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}" >
2020-11-30 10:19:00 +00:00
< label > {{ charge.get_formatted("description") }}< / label >
< / div >
2014-07-28 12:07:52 +00:00
< div class = "col-xs-7 text-right" >
2020-11-30 10:19:00 +00:00
{{ charge.get_formatted('tax_amount', doc) }}
2014-07-16 12:48:34 +00:00
< / div >
< / div >
{%- endif -%}
{%- endfor -%}
2015-02-22 19:36:00 +00:00
{%- if doc.apply_discount_on == "Grand Total" -%}
{{ render_discount_amount(doc) }}
{%- endif -%}
2014-07-16 12:48:34 +00:00
< / div >
< / div >