Hello,
I would like to know how to add the Gratuity Suggestion that list on bill.
Like
Gratuity Suggestion
15%Tip = (15% of Amount of the bill)
18%Tip = (18% of Amount of the bill)
Can anyone hope me with this?
Thank you so much for your help and support.
Just do a calculation using ticket total;
15% = [=F(TN('{TICKET TOTAL}') / 100 * 15)]
18% = [=F(TN('{TICKET TOTAL}') / 100 * 18)]
Thank you JTRTech;
Please show me the steps how to setup please.
I tried to do that, but it was not showing up on the customer’s bill.
Thank you.
RickH
4
Just copy the expression given above and paste it into your ticket template. It will then show when you print
Hello RickH and JTRTech.
Thank you for your helps.
how do you do this in an html template?
thanks!
Memo
7
a simple table would do - something like this:
<div style="font-size:15px;font-family:'Segoe UI';border:1 1 1 1;border-color:black">
<table>
<tr>
<td>10%</td>
<td>$[=F((TN('{TICKET TOTAL}')-TN('{TAX TOTAL}')) * 0.1)]</td>
</tr>
<tr>
<td>15%</td>
<td>$[=F((TN('{TICKET TOTAL}')-TN('{TAX TOTAL}')) * 0.15)]</td>
</tr>
<tr>
<td>18%</td>
<td>$[=F((TN('{TICKET TOTAL}')-TN('{TAX TOTAL}')) * 0.18)]</td>
</tr>
<tr>
<td>20%</td>
<td>$[=F((TN('{TICKET TOTAL}')-TN('{TAX TOTAL}')) * 0.20)]</td>
</tr>
</table>
</div>
Thank you very much, Sir!
i was not adding the $ string character…