I am trying to capture information (such as a ID number, comment, note, etc) and have it appear on the screen with the menu items as they are rung up. I want to capture this input and have it print to receipt and to the journal. I have tried this code:
[tt]
EVENT INQ:90
// gather the information
input UWRFEmplid, "Swipe ID Card"
// display the information on the screen for testing
infomessage "ID:", ( UWRFEmplid )
// print on the receipt the information gathered
StartPrint @chk, @rcpt, @jnl
Printline "Campus ID Number:", UWRFEmplid
endprint
ENDEVENT
[/tt]
The infomessage is working, however the print is not. We don't always print paper receipts, but we always journal.
(We are using the reference feature for menu items, to make comments on those that we need comments on. This is outside of a menu item and we want to make notes on the receipts. Such as issue number in our tracking system, the carrier that was used for shipping, etc.)
[tt]
EVENT INQ:90
// gather the information
input UWRFEmplid, "Swipe ID Card"
// display the information on the screen for testing
infomessage "ID:", ( UWRFEmplid )
// print on the receipt the information gathered
StartPrint @chk, @rcpt, @jnl
Printline "Campus ID Number:", UWRFEmplid
endprint
ENDEVENT
[/tt]
The infomessage is working, however the print is not. We don't always print paper receipts, but we always journal.
(We are using the reference feature for menu items, to make comments on those that we need comments on. This is outside of a menu item and we want to make notes on the receipts. Such as issue number in our tracking system, the carrier that was used for shipping, etc.)