What I want to do is: I add an item to an order in the Clover Register App. As I have a broadcast receiver listening for "com.clover.intent.action.LINEITEMADDED", I check some properties of this item and if it matches my criteria, I will add a new line item(via the REST API) to represent an extra tax. My expectation is that once the API call returns with success, the list of items displayed on the screen would auto update to show the new item added via API.
I tried the above on an emulator and what happens is that although the tax line item is added successfully, the Clover Register app doesn't auto update the screen with the new item. In order to see the new item, I have to click on Order, on the left menu, then click on the Order I was adding items to, and finally click on Re-open.
Is there any way I can force the list of items displayed to auto update when an item is added to that order via API?