Move Tax Name on Templates

I use following codefor my Printer Templates. It is working well. I need to show Tax Name % 2.5 MWSt just under MWST (see picture)
I make surely a mistake somewehere, i cannot show this name under MWST.

Can someone help me about this please?

image

<DB>
<L>
<C11>{DEPARTMENT}
<T>Ticket
<L00>Date:{TICKET DATE}
<L>
<L00>Time:{TIME}
<L>
{ENTITIES}
<T8>Ticket No:{TICKET NO}
<F>=
{ORDERS}
<F>=
<EB>
{DISCOUNTS}
{TAXES}
[<J10>Total Gift:|{ORDER STATE TOTAL:Gift}]
<J10>Sub Total:|[=F(TN('{TICKET TOTAL}')-TN('{TAX TOTAL}'))]
<J10>MwSt:|{TAX TOTAL}
<J10>Rechnung Total:|{TICKET TOTAL}
{PAYMENTS}
<DB>
<F>=
<L>
<C10>Danke   Grazie   Thank You    Merci
<F>-
<L00>{NOTE}
<L>
[DISCOUNTS]
<J00>{CALCULATION NAME} %{CALCULATION AMOUNT}|{CALCULATION TOTAL}

[SERVICES]
<J00>{CALCULATION NAME}|{CALCULATION TOTAL}

[PAYMENTS]
<J00>{PAYMENT NAME}|{PAYMENT AMOUNT}

[ORDERS]
-- Default format for orders
<J10>- {QUANTITY} {NAME}|{TOTAL PRICE}
{ORDER TAGS}

[ORDERS:Gift]
-- Format for gifted orders
<J00>- {QUANTITY} {NAME}|**GIFT**
{ORDER TAGS}

[ORDERS:Void]
-- Nothing will print for void lines

[ORDER TAGS]
-- Format for order tags
<J00> * {ORDER TAG NAME} | {ORDER TAG PRICE}

[ENTITIES:Table]
-- Table entity format
<L00>Table: {ENTITY NAME}

[TAXES]
<L>
<L00>Tax Name: {TAX NAME}
<L00>Tax Amount: {TAX AMOUNT}
<L00>Taxable Amount: {TAXABLE AMOUNT}
<F>-
[ENTITIES:Customer]
-- Customer entity format
<F>-
<L>
<C11>{ENTITY DATA:Name}
<C11>{ENTITY DATA:Strasse}
<C11>{ENTITY DATA:PLZ Ort}
<C11>{ENTITY DATA:Phone:}
<C11>T E L : {ENTITY NAME}
<F>
<L>

Please reword your question, unsure exactly what you want to do.

need to remove number 1 into number 2. Just under MWST. If I put in this, it doesnt show any data.

image

Most of the Printer Tags for Taxes are not Global, so they cannot be used everywhere. They are only valid in the [TAXES] section, and nowhere else, which is why they produce output only in one place, and not any other:

[TAXES]
<L>
<L00>Tax Name: {TAX NAME}
<L00>Tax Amount: {TAX AMOUNT}
<L00>Taxable Amount: {TAXABLE AMOUNT}

It’s because it’s outside of the taxes section and you have just used tax amount… You need to specify the tax name if report tax outside the tax section
Try {TAX AMOUNT:MwSt}

1 Like

We use 2 taxes, 2.5 nd 7.7% . In Taxes Section (Number 2), need to show tax percentage in the same place as invoice amount, Tax and payment (cash or card)

Calculation is correct, i see tax amount too. But why i cannot see tax percentage 2,5 or 7,7 % in the same section?

Use {TAX RATE} to show percentage.

You mean like this?

{TAXES}
[Total Gift:|{ORDER STATE TOTAL:Gift}]
Sub Total:|[=F(TN(’{TICKET TOTAL}’)-TN(’{TAX TOTAL}’))]
MwSt:|{TAX TOTAL}
Rechnung Total:|{TICKET TOTAL}
Tax Rate: {TAX RATE}
{PAYMENTS}

No. Read the replies.

Printer Tags for Taxes can only be used in the [TAXES] section, otherwise they will not produce output.

If you have two taxes are you not showing the other one?