Hi @
I am using Clover android SDK. I want to implement the functionality to print the receipt (merchant copy and customer copy both) on the click of the print button. We are using the following code to print the receipt:
For Card payment:
printJob = new StaticPaymentPrintJob.Builder().paymentId(mPayment.getId()).order(mOrder).build
printJob.print(mApplicationContext, account);
For Cash payment:
printJob = new StaticPaymentPrintJob.Builder().order(mOrder).build();
printJob.print(mApplicationContext, account);
When we clicked on the "Print" button, only one receipt got printed. While we have required to print two copies (Merchant copy and customer copy) on a single click. Please suggest a way to achieve it. Is there any configuration from the clover side to achieve that?
Thanks.