Print out split half amount on the ticket

Hello,

The customer wants to split the bill in half amount and asks to print how much the bill would be. so I have tried to print out the half amount of the ticket, but it was not working. it always prints the total amount of the ticket.

How can i fix this issue?

Thank you all.

Create a new template use an expression to half the ticket total and map it to a button on payment screen call it split ticket or something appropriate.

You can use something like [=TN ('{TICKET TOTAL}')/2]

You couldnt print half a ticket but could make a way to print the amount if split…
Take a look at the recent discussion about adding a ‘suggested tip’ section to the ticket. Use the same principle - maybe on a second duplicated template which has a ‘split bill’ section.

Could list split options;
2 way split = [=TN(’{TICKET TOTAL}’)/2]
3 way split = [=TN(’{TICKET TOTAL}’)/3]
etc. etc.

lol - beat me to it :wink:

If you wanted to go nuts could even maybe use a command value list to update a program setting with the split number and try something like;

{SETTING:SplitBill} way split comes to [=TN('{TICKET TOTAL}')/TN('{SETTING:SplitBill}')]

Not tried but should be achiveable.

Well on my way … :stuck_out_tongue_winking_eye:

Could even use that same {SETTING:SplitBill} in the print bill action to print that number of copies if you really wanted to speed up deforestation LOL

Thank you all. :clap: