Invoice template print taxes

Hi,

I am dealing with our new invoice layout, without Print Format Builder.
I found almost all settings and variables, but I am not able to print taxes at all…

I need variables for following (MwST 20%):

thanks in advance
Andreas

Do you have a sample of how you want the print out to be for your taxes? you can print totals out of the box

just uncheck print hide if it is selected in custom form

The POS print format prints VAT (MwSt) standard

Its quite hard to tell how your print format is structured but I use this method to loop through the taxes table

{%- for row in doc.taxes -%}
	{{ row.description }}
	{{ row.rate }}
{%- endfor -%}
1 Like

Thanks!
This is what I was looking for

do you also have have such a code snippet to print page numbers?

BR
Andy