Kitchen printout problem

While I am printing the order from the kitchen printer, I can’t see the customers name. Please correct what I’m doing wrong.

Thanks

[LAYOUT]
<T>Adisyon

<L00>Tarih:{TICKET DATE}
<L00>Saat:{TIME}
<L00>Kullanici:{USER NAME}
<L00>Ticket No:{TICKET NO}
{ENTITIES}

<F>-
{ORDERS}

[ORDERS]
<L00>- {QUANTITY} {NAME}
{ORDER TAGS}
<L00> {NOTE}

[ORDERS:iade]
<J00>- {QUANTITY} {NAME}|**iade**
{ORDER TAGS}

You have an {ENTITIES} placeholder tag in your Template, but you have no [ENTITIES] Section to define what to print for the Entities …

[ENTITIES:Customer]
<L00>{ENTITY NAME}

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



##Use Search

Your last 7 questions have all been answered before. Do you not know how to use Search?


##Read ALL Linked Topics from the Welcome Topic:

2 Likes

When I insert what you wrote, I even don’t get the order.

[LAYOUT]
<T>Adisyon
<L00>Tarih:{TICKET DATE}
<L00>Saat:{TIME}
<L00>Kullanici:{USER NAME}
<L00>Ticket No:{TICKET NO}
[ENTITIES:Customer]
{ENTITY NAME}

[ENTITIES:Table]
{ENTITY NAME}
<F>-
{ORDERS}

[ORDERS]
<L00>- {QUANTITY} {NAME}
{ORDER TAGS}
<L00> {NOTE}

[ORDERS:iade]
<J00>- {QUANTITY} {NAME}|**iade**
{ORDER TAGS}

this is what I get

░░░░░░░░░░░░░░ A d i s y o n ░░░░░░░░░░░░░
Tarih:21.06.2017
Saat:21:50
Kullanici:Tolga
Ticket No:2047

What you show is for V4 not V5

It is the same.

You need <Lxx> or <Jxx> for ex <L00> in the front as well. Read the tutorial in the link carefully.

The {ENTITIES} bit was ok, you just didnt define the a format for entities.
Its now not showing orders as your [ENTITIES:Customer] is too high in the template.

THE layout tags like {ORDERS}, {ENTITIES} are like mail merge fields.
Then at the bottom under {ORDERS} and {ENTITIES:X] you define the format for all orders/entities or specific entity types as Q demonstrainted adding the type after in the square brackets.

[LAYOUT]
<T>Adisyon
<L00>Tarih:{TICKET DATE}
<L00>Saat:{TIME}
<L00>Kullanici:{USER NAME}
<L00>Ticket No:{TICKET NO}
{ENTITIES}

<F>-
{ORDERS}

[ORDERS]
<L00>- {QUANTITY} {NAME}
{ORDER TAGS}
<L00> {NOTE}

[ORDERS:iade]
<J00>- {QUANTITY} {NAME}|**iade**
{ORDER TAGS}

[ENTITIES:Customer]
<L00>{ENTITY NAME}

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