I want to take the print by removing some of the Lineitems in Order. Currently I use following code to take print order.
PrintJob pj = new StaticOrderPrintJob.Builder().markPrinted(true).order(order).build();
pj.print(context, CloverAccount.getAccount(context));
It print full list of order items. Can i able to print partial order ( 4 of 5 items ) ?
Please help me with some code samples.