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 - Open Source C# Project

Status
Not open for further replies.

Moregelen

Programmer
Sep 10, 2012
1,222
US
I don't know if anyone is interested, but I am starting a github project that I plan to make open with Micros integrations. I plan to work on it in my free time and welcome anyway interested in contributing.

 
Moregelen,
I will be very much interested in this, as you do such a great job helping people like myself. but I am not a programmer like you are. But owning a couple of restaurants, maybe I could contribute some feedback.
I am still working on the project to display customer order items on secondary display. We got the DLL working but still have the challenge to display items. It shows blank screen (attached). My programmer is struggling with ISL file.
Thanks
mxap
customerdisplayerror1_wmutkw.jpg
customerdisplayerror_n8ecze.jpg

 
 http://files.engineering.com/getfile.aspx?folder=588f9343-e833-4ddc-b9db-1277e329dc59&file=customerdisplayerror
Count me in. I'm not a programmer by trade but maybe able to do small tasks.
 
Moregelen,
I am not sure if I should post this here. I am trying to create a secondary display for my customers and have a programmer who is helping. But having some issue.Here is Pms9.ISL file which is not displaying the items properly. every time we choose the item on the menu it keeps asking with a small popup window with "info" title and ask to confirm the price. Then when we choose an additional item, again same pop-up window and adds the same item twice.
Can you please check my ISL file below and advice?
thanks
mxap

retainglobalvar
var dll_handle:N32

event signin
DLLLoad dll_handle, "customerdisplay.dll"
DLLCALL_CDECL dll_handle, cdshowdisplay ()
endevent

event signout
DLLFree dll_handle
endevent


Event MI
var i:N3
var tmpstr:A20

for i = 1 to @NUMDTLT // @NUMDTLR = Number of Detail Entries this Service Round
if @DTL_TYPE = "M" // M = Menu Item; I = Check Information Detail; D = Discount Name; S = Service Charge; T = Tender Media; R = Reference Number; C = CA Detail
tmpstr = "" + @DTL_TTL
//DLLCall_CDECL dll_handle, cdsenddata (0, @DTL_NAME, @DTL_QTY, tmpstr )
endif
endfor

EndEvent

inttest
//event mi_void
//endevent

//event mi_return
//endevent

 
Thanks for starting this Moregelen. I am a C# developer and have already done a couple of Micros 3700 integrations so could help contribute.
 
Yeah - let me know if there is anything you can think of to add, or you see anything that doesn't look quite right.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top