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 3700 - "you saved" on receipt

Status
Not open for further replies.

jool54

IS-IT--Management
Aug 5, 2014
7
US
Micros RES 3700, Version 5.2. WS5A workstations. How do I add a "You Saved" line to the receipt that will total the discounts that were applied.
 
You can use an ISL print trailer for custom printing.

In the receipt print trailer you can define an ISL print by prefixing two '@' symbols. I.e. @@YouSaved

Set the ISL file up in POSCfg 'Interfaces'

Then in the ISL file define the print event like this:

Event Print_Trailer : YouSaved
Var line : A24
Var amountSaved : $8

// Calculate amount saved here

Format line As "You saved: $", amountSaved
@TRAILER[1] = line​
EndEvent
 
Hi KiwiNoob

If i understand correctly, the above ISL always shows $8 saved in all transactions.
How can this be linked to all availed discounted amount in the transaction.

Also i don't need this to be printed if a discount is not in the transaction.

Sorry if i understand this wrongly.

Thanks
Deepu
 
The $8 is actually just defining the maximum length, not the value. Nothing over 8 digits will work - the SIM will error out. As this script stands it will always display 0.00 as he didn't put in code in to actually add up the total discount amount.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top