Order Tag Quantity on Kitchen Template

Hi,

I use set lunch menu choices as order tags. If a table orders 2 x Lunch Menu, it will print as it should (2) Hummus Starter, (1) Burger Main, (1) Steak Main…
But because I’ve enabled {Order Tag Quantity} on kitchen template, this will now show quantity for every single order tag. Is it possible to only show quantity when it is more than 1?

Example
Steak

  • (1) Rare

I don’t need to see (1) for the ‘Rare’ order tag.

Thanks!

You can use a ternary expression in the template.

You can use this codes in the kitchen template.

[ORDER TAGS]

<tr>
<td width=240> 
 <div style="font-size:12;font-family:Calibri">  
 -»{ORDER TAG NAME} [=TN('{ORDER TAG QUANTITY}') > 1 ? ' x{ORDER TAG QUANTITY}' : '   ']
  </div>   
</td>
</tr>
1 Like