I have used the code Entry.SalesRep,Number instead of Cashier.Number so it can display SalesRep info on the receipt but it does not display anything on the receipt. If I just use SalesRep.Number it gives the error " complier error, Token SalesRep.Number cannot be found "
I can certainly use Entry.SalesRep.Number and display the SalesRep info by adding extra column before itemdescription info but customer don't want that he want to display SalesRep on cashier place. Any Suggestion please ???
<!-- show transaction date/time/number --> <TABLE> <BORDER> tbNone </BORDER> <FONT> "Small" </FONT> <COLUMNHEADER> <ALIGNMENT> "<~" </ALIGNMENT> <WIDTH> PageWidth * 0.50 </WIDTH> <TEXT> "" </TEXT> </COLUMNHEADER> <COLUMNHEADER> <ALIGNMENT> "<~" </ALIGNMENT> <WIDTH> PageWidth * 0.50 </WIDTH> <TEXT> "" </TEXT> </COLUMNHEADER> <IF> <CONDITION> Transaction.ReceiptReferenceNumber </CONDITION> <THEN> <ROW> Transaction.ReceiptReferenceNumberCaption ":|" Transaction.ReceiptReferenceNumber </ROW> </THEN> </IF> <ROW> Transaction.ReceiptTransactionNumberCaption ":|" Transaction.ReceiptTransactionNumber </ROW> <IF> <CONDITION> Len(Customer.AccountNumber) </CONDITION> <THEN> <ROW> "Account #:|" Customer.AccountNumber </ROW> </THEN> </IF> <ROW> "Date: " Transaction.Date "|Time: " Transaction.Time </ROW> <ROW> "SalesRep: " Entry.SalesRep.Number "|Register #: " Register.Number </ROW> <ROW/> </TABLE>
*This post is locked for comments
In first line Entry.SalesRep,Number ( , ) is just typo error I meant Entry.SalesRep.Number
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,902 Super User 2024 Season 2
Martin Dráb 229,297 Most Valuable Professional
nmaenpaa 101,156