Need to show unit price

Hello
I need to show unit price of ordered product. I mean: if i ordered 3 x Fanta, Sambapos shows me automatically total price 9.60 .It is corrrect. How can I add unit price between product name and total Price as it is shown in picture?

I use following template

<C11>{DEPARTMENT}
<T>Ticket
<L00>Date:{TICKET DATE}
<L00>Time:{TIME}
{ENTITIES}
<T8>Ticket No:{TICKET NO}
<F>=
{ORDERS}
<F>=
<EB>
{DISCOUNTS}
{TAXES}
[<J10>Total Gift:|{ORDER STATE TOTAL:Gift}]
<J10>Rechnung Total:|{TICKET TOTAL}
<L>
{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
<J9>- {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
<C10>Table: {ENTITY NAME}
<L>
[TAXES]
<L00>Tax Name: {TAX NAME}    Tax Amount: {TAX AMOUNT}
<L00>Taxable Amount: {TAXABLE AMOUNT}
<F>-
[ENTITIES:Customer]
-- Customer entity format
<F>-
<C10>{ENTITY DATA:Name}
<C10>{ENTITY DATA:Strasse}
<C10>{ENTITY DATA:PLZ Ort}
<C10>{ENTITY DATA:Phone:}
<C10>T E L : {ENTITY NAME}
<F>

Is that the way ?

image

image

1 Like

Your ticket template has no impact for onscreen ticket display.
Order lines can be customised using order state display formatting defined in the states section.
You have posted on V4 question… V4 I don’t believe had this option.

Hello mr. Serhatoglu
Yes exactly this i need. How did you this please?

this possible with only V5 do you have ?

1 Like

This only works for v5 there is no way to do it in v4.

Go to Manage > Settings > States and edit the Display Format portion of the State for New and Submitted.

Put this in there:

{NAME} (Unit Price: {PRICE})

image

4 Likes

You can customize that further to add colors, or other formatting to it similar to this:

{PORTION} {PRODUCT NAME} <size 11><color LightBlue>(Unit Price: ${PRICE})</color></size>

And as you see in screenshot you can edit the price format etc.

image

1 Like

All of that is only possible in v5. If you do not have v5 then unfortunately you can not change how the product is displayed on the screen.

Hello Jesse
I didnt mean on the screen displaying items with unit price, but on the ticket. I have added following line in my printer template, now it prints it with unit price and total price.

Like this:

  • 1 Gemischter Salat (9.50)… 9.50
  • 4 Tomaso (18.50)… 74.00

[ORDERS]
– Default format for orders
- {QUANTITY} {NAME} ({PRICE})|{TOTAL PRICE}
{ORDER TAGS}

1 Like

I had a hunch that might be the case. You were kind of confusing so I was not sure but those tags used are printer tags anyway so I am glad you figured it out.