Back to Erpnext

Taxes And Charges

erpnext/templates/print_formats/includes/taxes_and_charges.html

16.25.0839 B
Original Source

{% macro render_row(label, value) %}

{{ label }}

{{ value }}

{% endmacro %} {%- macro render_discount_amount(doc) -%} {%- if doc.discount_amount -%} {{ render_row(_(doc.meta.get_label('discount_amount')), '- ' + doc.get_formatted("discount_amount", doc)) }} {%- endif -%} {%- endmacro -%}

{%- if doc.apply_discount_on == "Net Total" -%} {{ render_discount_amount(doc) }} {%- endif -%} {%- for charge in doc.taxes -%} {%- 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) -%} {{ render_row(charge.get_formatted("description"), charge.get_formatted('tax_amount', doc)) }} {%- endif -%} {%- endfor -%} {%- if doc.apply_discount_on == "Grand Total" -%} {{ render_discount_amount(doc) }} {%- endif -%}