Hi team,
I am using ACTION_LINE_ITEM_ADDED intent to for item added to register application.
and by using the below method I am able to get ordered, lineItemId and ItemId
- orderId = intent.getStringExtra("com.clover.intent.extra.ORDER_ID")
- lineItemId = intent.getStringExtra("com.clover.intent.extra.LINE_ITEM_ID")
- val itemId: String? = intent.getStringExtra("com.clover.intent.extra.ITEM_ID")
I need a current lineItem created details like weight and price into the register app.
how do I get that using orderId LineItemId or itemId.
thank you,