{% if cart_settings.enable_checkout or cart_settings.show_price_in_quotation %}
{% set total_items = frappe.utils.cstr(frappe.utils.flt(doc.total_qty, 0)) %}
{{ _("Net Total (") + total_items + _(" Items)") }} |
{{ doc.get_formatted("net_total") }} |
{% for d in doc.taxes %}
{% if d.base_tax_amount %}
{{ d.description }}
|
{{ d.get_formatted("base_tax_amount") }}
|
{% endif %}
{% endfor %}
{{ _("Grand Total") }} |
{{ doc.get_formatted("grand_total") }} |
{% endif %}
{% if cart_settings.enable_checkout %}
{% else %}
{% endif %}