Is there any way to get notified on order item exchange.
Is there any way to get notified on order item exchange.
You can implement the OrderConnector.OnOrderUpdateListener2 interface and override the onLineItemExchanged() method.
listen to "com.clover.intent.action.EXCHANGEDPROCESSED" then look for: final String orderId = intent.getStringExtra("com.clover.intent.extra.ORDERID"); final String oldLineItemId = intent.getStringExtra("com.clover.intent.extra.OLDLINEITEMID"); final String newLineItemId = intent.getStringExtra("com.clover.intent.extra.NEWLINEITEMID");
Listen to "com.clover.intent.action.EXCHANGED_PROCESSED" then look for:
final String orderId = intent.getStringExtra("com.clover.intent.extra.ORDER_ID");
final String oldLineItemId = intent.getStringExtra("com.clover.intent.extra.OLD_LINE_ITEM_ID");
final String newLineItemId = intent.getStringExtra("com.clover.intent.extra.NEW_LINE_ITEM_ID");
4 People are following this question.