When new order is created we are printing both order and receipt with the code below.
However, we see that:
1. Both Order and Receipt printouts have `Order null` printed out
2. Receipt also has Online: that points to the sandbox URL with null at the end.
`Online: https://sandbox.dev.clover.com/r/null`
How, can we control both (1) Order details (2) URL so that we can put business custom URL
new StaticReceiptPrintJob.Builder().order(o).build().print(context, CloverAccount.getAccount(context)); new StaticOrderPrintJob.Builder().order(o).build().print(context, CloverAccount.getAccount(context));