Documentation for POS PSIM 1.0.1.

Previous page Appendix 7. How to integrate a new POS terminal into POS PSIM  Operator's Guide Next page

It is possible to add information on the Axxon PSIM embedded programming language or on the JScript language to the receipt body using script. 

Note

More information about operation with scripts, see in the Axxon PSIM software package. Programmer’s Guide (JScript) document. Current version of this document is available in the AxxonSoft documentation repository.

To add information to the receipt body use the ADD_TAG reaction of the POS object. Information which is to be added is sending in the tag<> parameter of this reaction. At executing of this command the specified string is written to the receipt before the receipt end. If command is executed during pause between receipts, the specified string will be written to the next receipt.

Example of command to add information to the receipt body using macro 1 on the JScript language is follows:

if (Event.SourceType=="MACRO" && Event.SourceId=="1" && Event.Action=="RUN"") {
    DoReactStr("POS","1","ADD_TAG","tag<info to be added>");
}
  • No labels