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!

Micros 9700 Check trailer

Status
Not open for further replies.

ttrain68

IS-IT--Management
Mar 9, 2005
21
US
I am trying to get the suggested tip on my guest checks using the @trailer on the bottom of the checks in RVC Descriptors. I have the below trailer.isl saved in the 9700/etc folder. What other setup steps am I missing?





// Just numbers to help align 12345678901234567890123456789012

format t1 as " For your convenience we are "
format t2 as " providing the following "
format t3 as " gratuity calculations: "
format t4 as " 15% is $",0.16 * (@ttldue - @dsc)
format t5 as " 18% is $",0.18 * (@ttldue - @dsc)
format t6 as " 20% is $",0.20 * (@ttldue - @dsc)
@trailer[1] = " "
@trailer[2] = t1
@trailer[3] = t2
@trailer[4] = t3
@trailer[5] = " "
@trailer[6] = t4
@trailer[7] = t5




 
Looks like you still need to declare variables t1 - t6 (var T1 : a32 ). Also assuming you are referencing the sim event on one of the trailer descriptor lines(@@est_tip_amt) and the sim is named pms###.isl
 
Hi. I have a question. I have been looking everywhere for a script to do this. Would you be able to share your script? or possibly e-mail it? micros charges way too much for programming time and all we want to do is display suggested tips on the bottom of our receipts.

Any help or direction would be appreciated! :)
 
did you add @@trailer in the line for the Credit Card Receipt?
 
It work for me using the script under thread693-1724909
Also at EMC
1. Configurator, System Hardware, Interfaces. Create a new interface, the number for the interface will be the value for the Pms###.isl

2. Choose the Revenue Center, RVC Parameters, interfaces, enable the interface you created

3. under RVC Descriptors, Check trailer, add the @@*** where *** is the name you assigned at the script under EVENT PRINT_TRAILER
for example:
If at the script EVENT PRINT_TRAILER :est_tip_amt add at the check trailer @@est_tip_amt
 
my example is wrong, i used the same name of the interface for the EVENT PRINT_TRAILER
example:
* Name of the intetrface Pms8
* Name of the isl Pms8.isl
* value at the EVENT PRINT_TRAILER, EVENT PRINT_TRAILER Pms8
* Add to Check trailer @@Pms8
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top