Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suggested Gratuity in Micros 3700 2

Status
Not open for further replies.

Buster6801

Vendor
Dec 10, 2011
1
US
I need some help programming a Micros 3700 to show suggested gratuity on the receipt. If anyone can give me the step by step on this or give me a link to the info I would appreciate it.
Thanks
 
Do you want a generic "Suggested gratuity is 15%"?
If so add it to the trailer of your reciepts and credit card reciepts.
If you are looking for the exact number "Suggest gratuity is $4.25" you will need to make a custom trailer sim and add it to your reciepts and and credit card reciepts.
 
Right out of my sim file......
Had a few of the stores where customers thought
this was offensive so we disabled this at most locations



// "@@tip_trailer"

//The above Line goes in the Guest Check Trailer in
//in pos configurator
//without the Quotes



//This goes in your sim file

var check_amount : $12

var ten : $12
var fifteen : $12
var seventeen : $12
var twenty : $12
var twentyfive : $12

var line1 : a30
var line2 : a30
var line3 : a30
var line4 : a30
var line5 : a30


event print_trailer : tip_trailer

check_amount = @TTLDUE

ten = check_amount * .1
fifteen = check_amount * .15
seventeen = check_amount * .17
twenty = check_amount * .20
twentyfive = check_amount * .25

format line1 as "10% of Total = $",ten
format line2 as "15% of Total = $",fifteen
format line3 as "17% of Total = $",seventeen
format line4 as "20% of Total = $",twenty
format line5 as "25% of Total = $",twentyfive


@trailer[1] = ""
@trailer[2] = ""
@trailer[3] = "---------------------"
@trailer[4] = "For Your Convenience,"
@trailer[4] = "Suggested Gratuity,"
@trailer[5] = "---------------------"
@trailer[6] = line1
@trailer[7] = line2
@trailer[8] = line3
@trailer[9] = line4
@trailer[10] = Line5


endevent
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top