Printing TAX for item where Tax is included in Basic Rate

I have set up a Tax template where Tax is included in basic rate. But I want to show the Tax Break up in the invoice print. particularly in the POS invoice. How can I do that?

1 Like

@nayank

Can you please post some screen shots?

Hi @nayank,

You need to create a custom print format because the standard print format does consider only taxes where the field included_in_print_rate is not checked.

@anandhuded2
I want to achieve something similar to following pic.

Thank you @chdecultot ,
I am new to this, could you please suggest me how to do that or point me to some guide/documentation.

@nayank,

You will need to modify the print format used in the POS.

For example you can make a copy of the existing POS print format.

image

In the code, remove the line: {% if not row.included_in_print_rate %}
Don’t forget the {% endif %} at the bottom.

It will display taxes in any case, included or not in the price.

More on print formats can be found here:
https://erpnext.org/docs/user/manual/en/customize-erpnext/print-format

3 Likes

Thank you @chdecultot.
That works.