2015-02-23 01:06:00 +05:30
{%- macro render_discount_amount(doc) -%}
{%- if doc.discount_amount -%}
< div class = "row" >
2019-08-08 15:51:50 +05:30
< div class = "col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}" >
2018-09-17 11:06:49 +05:30
< label > {{ _(doc.meta.get_label('discount_amount')) }}< / label > < / div >
2015-02-23 01:06:00 +05:30
< div class = "col-xs-7 text-right" >
2016-02-19 11:14:29 +05:30
- {{ doc.get_formatted("discount_amount", doc) }}
2015-02-23 01:06:00 +05:30
< / div >
< / div >
{%- endif -%}
{%- endmacro -%}
2014-07-16 18:18:34 +05:30
< div class = "row" >
2014-07-28 17:37:52 +05:30
< div class = "col-xs-6" > < / div >
< div class = "col-xs-6" >
2015-02-23 01:06:00 +05:30
{%- if doc.apply_discount_on == "Net Total" -%}
{{ render_discount_amount(doc) }}
{%- endif -%}
2014-07-16 18:18:34 +05:30
{%- for charge in data -%}
2020-10-29 14:19:34 +05:30
{%- 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 18:18:34 +05:30
< div class = "row" >
2019-08-08 15:51:50 +05:30
< div class = "col-xs-5 {%- if doc.align_labels_right %} text-right{%- endif -%}" >
2020-11-30 15:49:00 +05:30
< label > {{ charge.get_formatted("description") }}< / label >
< / div >
2014-07-28 17:37:52 +05:30
< div class = "col-xs-7 text-right" >
2020-11-30 15:49:00 +05:30
{{ charge.get_formatted('tax_amount', doc) }}
2014-07-16 18:18:34 +05:30
< / div >
< / div >
{%- endif -%}
{%- endfor -%}
2015-02-23 01:06:00 +05:30
{%- if doc.apply_discount_on == "Grand Total" -%}
{{ render_discount_amount(doc) }}
{%- endif -%}
2014-07-16 18:18:34 +05:30
< / div >
< / div >