1- There are 4 current order in clover Register app which I have selected.
2- Suppose 2 order Beer and Tissue paper I have paid through the custom third party app.
private fun initPayment() { GlobalScope.launch(IO) { GlobalScope.launch(Main) { val intent = Intent() intent.action = Intents.ACTION_CLOVER_PAY intent.putExtra(Intents.TRANSACTION_TYPE_PAYMENT, Intents.TRANSACTION_TYPE_PAYMENT) intent.putExtra(Intents.EXTRA_ORDER_ID, mOrder?.id) intent.putExtra(Intents.EXTRA_AMOUNT, totalPrice) startActivityForResult(intent, REQUEST_CODE_FOR_PAYMENT) // dismissProgressDialog() } } }
So i want that item (Beer, Tissue paper) not show in clover Register app, which i have paid from custom third party app.