Tax on Receipt not showing

Hey guys, I’m having trouble setting up the Receipt Printing Template. Whenever I print a receipt, it prints this out:


Note:

  • 1 Coffee.Small (10 oz.) 1.20
    ================================================
    Tax ${TAX AMOUNT}
    Total $1.20
    Tendered Total $1.20
    Cash 1.20
    ================================================
    T H A N K Y O U

Obviously, this line in the Printer Template needs to be changed:

Tax| ${TAX AMOUNT}

How do I make it so that it shows the tax amount?
Also, how do I make the receipt show the pre-tax total?

Show your whole template please…don’t forget to use the < / > button to protect the code

Also show a screenshot of your payment screen… You have mapped your tax to products right?

Yes, certain products have tax mapped to them.

[LAYOUT]

-- General layout

<ec>
<L00>Date: {TICKET DATE}
<L00>Time: {TIME}
{ENTITIES}
<L01>Order:{ENTITY NAME:Order}
<L00>Ticket No: {TICKET NO}
<L00>Cashier: {USER NAME}
<F>-
<L01>{ENTITY DATA:Customer}
<F>-
<L01>Note:{NOTE}
{ORDERS}
<F>=
<EB>
{DISCOUNTS}
[<J10>Total Gift:|{ORDER STATE TOTAL:Gift}]
<J10>Subtotal| ${TAXABLE AMOUNT:x}
<J10>Tax| ${TAX AMOUNT}
<J10>Total| ${TICKET TOTAL}
<J10>Tendered Total| ${TENDERED TOTAL}

{PAYMENTS}
<DB>
<F>=
<C10>T H A N K   Y O U

[DISCOUNTS]
<J00>{CALCULATION NAME} %{CALCULATION AMOUNT}|{CALCULATION TOTAL}

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

[ORDERS]
-- Default format for orders
<J00>- {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:Order]
-- Table entity format
<L00>Order: {ENTITY NAME}

[ENTITIES:Customer]
-- Customer entity format
<J00>Customer: {ENTITY NAME} | {ENTITY DATA:Phone}

Looking at printer templates {TAX AMOUNT} without an expression (:x) is within the Tax section (the buts where you put {ORDERS} in top part of template and have [TAXES] definition later in the template.

Also your template shows a subtotal line which isn’t in your typed print output???
Even if you did it wouldn’t work as you have not specified anything for expression.

When a template tag ends :x in the list it means there are required expressions.

Firstly I would try {PLAIN TOTAL} for subtotal.

And for tax amount try {TAX TOTAL} or {TAX AMOUNT:x} where you replace the X with the name of your tax (which will be case sensitive)

Here you can find a sample.

http://sambapos.org/en/content/how-configure-multiple-taxes

Thank you. Both solutions helped me.