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!

Menu/Price Level change based on SLU

Status
Not open for further replies.

colinmcleod

IS-IT--Management
May 30, 2016
32
CA
Is it possible to change the menu/price level based on SLU or in a SIM? I found "Function: Transaction" that lets you change it on demand but I can't use it in a Macro.
 
Figured this out, using a SIM to call the SLU and Menu Level, unfortunately it seems RES3700 only allows Menu levels (and sub menu levels) 1-4 to be manipulated through SIM. My SIM came out looking like so:

Code:
//201 Monday Drink Specials
//202 Tuesday Drink Specials
//203 Wednesday Drink Specials
//204 Thursday Drink Specials
//205 Friday Drink Specials
//206 Saturday Drink Specials
//207 Sunday Drink Specials
//
//301 Monday Food Specials
//302 Tuesday Food Specials
//303 Wednesday Food Specials
//304 Thursday Food Specials
//305 Friday Food Specials
//306 Saturday Food Specials
//307 Sunday Food Specials
//
//458757 = Menu Level 1
//458758 = Menu Level 2
//458759 = Menu Level 3
//458760 = Menu Level 4
//458761 = Sub-menu level 1
//458762 = Sub-menu level 2
//458763 = Sub-menu level 3
//458764 = Sub-menu level 4
///////////////////////////////////

// Start event for Drink Specials
Event Inq : 1

IF @WEEKDAY = 0
	LoadKybdMacro key(11, 207), @KEY_ENTER
	LoadKybdMacro key(1, 458760), @KEY_ENTER
	ELSE
	LoadKybdMacro key(17, 200 + @WEEKDAY), @KEY_ENTER
	LoadKybdMacro key(1, 458760), @KEY_ENTER
ENDIF

ENDEVENT

////////////////////////////////////

//Start Event for Food Specials
Event Inq : 2

IF @WEEKDAY = 0
	LoadKybdMacro key(17, 307)
	LoadKybdMacro key(1, 458760), @KEY_ENTER
ELSE
	LoadKybdMacro key(17, 300 + @WEEKDAY)
	LoadKybdMacro key(1, 458760), @KEY_ENTER
ENDIF

ENDEVENT

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top