Is there any intent to simply open the orders app?
I don't want to open any specific order, just the orders app, preferably only showing the orders from one specific employee.
Is there any intent to simply open the orders app?
I don't want to open any specific order, just the orders app, preferably only showing the orders from one specific employee.
I am also facing same issue ..Once place order I want to open order application...I am using following code Intent intent = new Intent("com.clover.intent.action.START_ORDER_MANAGE"); intent.putExtra("com.clover.intent.extra.ORDER_ID", orderId); startActivityForResult(intent, CloverConfig.CLOVER_ORDER_ACTIVTY_STATUS); .... but not able to open.... Plz Help....
The intent is
com.clover.intent.action.START_ORDER_MANAGE
You can use it with the extra
com.clover.intent.extra.ORDER_ID
to open a specific order.
Those intents are not part of the public Clover Android SDK. You may not depend on them working in the future. I'll file an internal issue to publicize these in the Clover Android SDK.
There are several intents listed here that are not part of the public Clover Android SDK.
That's also wrong. I'll file another issue to get it fixed.
Thank You! Unfortunately, this does not work WITHOUT the extra. I don't want to open any specific order, I just want to open the orders app, and show only the orders from the currently logged in employee.
You can use com.clover.intent.action.START_ORDERS
to start the orders list screen. Again, this is not technically public and is subject to change.
4 People are following this question.