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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros Alternate Credit Card Auth Slip

Status
Not open for further replies.

zwiebelspaetzle

IS-IT--Management
Dec 28, 2010
19
US
Hello,

I need a different trailer on credit card authorizations for banquets than for normal restaurant orders. Short of setting up a new revenue center, is there a way to tell micros to use a different trailer for certain orders?

Thanks,
--Chris
 
Assuming you are using order types ...

Put this in a ISL/SIM file,

Code:
Event Print_Trailer: otTrailer
If (@Ordertype = 6) Then //this will print if it's order type 6
   @Trailer[1] = "This will print out"
   @Trailer[2] = "if your order type is"
   @Trailer[3] = "order type number 6 "
Else //this will print if it's anything else
   @Trailer[1] = "This will print out"
   @Trailer[2] = "for all other order types"
EndIf
EndEvent

Then put this in your trailer definition instead of (or in addition to) what you already have ...

@@otTrailer

Play around with it a bit and you will probably be able to make it do what you need. Or let us know if we can demonstrate it differently.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top