Hello, We are using clover platform to develop our own POS application . We need custom receipt to print. Is it possible to do so ?
Hello, We are using clover platform to develop our own POS application . We need custom receipt to print. Is it possible to do so ?
You can print order receipts. When printing order receipts, you can choose which line items are printed.
Based on my understanding, you can do in following ways
1)static receipt content by using smart receipt. Here is the link: https://docs.clover.com/build/smart-r... But smart receipt does not work at this time. Reference: https://devask.clover.com/question/58...
2) Or you can do dynamic receipt content, here is code example: https://github.com/clover/android-exa...
Using ViewPrintJob
or ImagePrintJob
you can send arbitrary data to the printer. It's up to you to format the data to your liking. ViewPrintJob
might make that a little easier as you can Android View
s to formulate the receipt layout.
If you just need plain text, you can use TextPrintJob. You can only send lines of plain text to the printer here though.
3 People are following this question.