I'm wondering when the lineItems in an order marked as printed (printed = true). I tested some orders and print it but the lineItems in the order not marked as printed.
Another problem is some order printed only some items (eg. only 2 items from 5 items in the order)
Here is the Android code I use to print
Account account = CloverAccount.getAccount(getApplicationContext());
PrintJob print_job = new OrderPrintJob.Builder().orderId(order_id).build();
print_job.print(getApplicationContext(), account, printer);