PO Print in HTML

We have created PO print format in HTML, but how do i fetch all taxes ??

ex,{{doc.name}}

Hi @dineshpanchal432,
try this
{%- for row in doc.other_charges -%}
{%- if not row.included_in_print_rate -%}
{%- if row.tax_amount -%}



{{ row.description }}

{{ row.get_formatted(“tax_amount”, doc) }}


{%- endif -%}
{%- endif -%}
{%- endfor -%}

Thanks

Thank you @sagar i will try and let you know if am facing any issues.

1 Like