Order Tag Total doesnt match POS screen

The Order Tag total doesnt match the POS screen. On the screen its 6$ and on the template it shows up as 1x 3$.

There doesn’t seem to be any printer template tags to account for this case.

-- ---------------------------------
-- Output format for Order Tags 
-- ---------------------------------
[SORTED ORDER TAGS]
-- Format for order tags
<div style="padding:0 0 0 10;font-size:11px;text-align:left;font-family:'Calibri'">
<table>
<tr>
<td width=90 align=left>{ORDER TAG NAME}</td>
<td width=40 align=center>{ORDER TAG QUANTITY}</td>
<td width=55 align=center>{ORDER TAG PRICE}</td>
<td width=55 align=right>{ORDER TAG TOTAL PRICE}</td>
</tr>
</table>
</div>

image

image

Am I missing something? Can I account for separate cases?
A) Where order tag total is managed by order quantity
B) Where order tag total is managed by order tag quantity

I had to do this to get the tag total for the line item:

[=F(TN('{QUANTITY}')*TN('{ORDER TAG TOTAL PRICE}'),'0.00;-0.00;#.##')]

2 Likes

Yes, I managed to go around the problem using a ternary expression. Though having a flag or having the Order Tag printer tag account for this would be very useful

-- ---------------------------------
-- Output format for Order Tags 
-- ---------------------------------
[SORTED ORDER TAGS]
-- Format for order tags
<div style="padding:0 0 0 10;font-size:10px;text-align:left;font-family:'Calibri'">
<table>
<tr>
<td width=90 align=left>{ORDER TAG NAME}</td>
<td width=40 align=center>[= F({ORDER TAG PRICE}*{ORDER TAG QUANTITY}) ==  '{ORDER TAG TOTAL}' ? '{ORDER TAG QUANTITY}' 						: '‎{QUANTITY}']</td>
<td width=55 align=center>[= F({ORDER TAG PRICE}*{ORDER TAG QUANTITY}) ==  '{ORDER TAG TOTAL}' ? '{ORDER TAG PRICE}' 							: F(TN('{ORDER TAG TOTAL}')/TN('{QUANTITY}'))]</td>
<td width=55 align=right >[= F({ORDER TAG PRICE}*{ORDER TAG QUANTITY}) ==  '{ORDER TAG TOTAL}' ? F({ORDER TAG PRICE}*{ORDER TAG QUANTITY})		: '{ORDER TAG TOTAL}']</td>
</tr>
</table>
</div>

1 Like

@Posflow You can use {ORDER TAG TOTAL} to get the total price correct. For QTY i agree it seems we need something here.

1 Like