@zgreathouse, @Raymond Lee any update on this.
Please let me know if you need any further information.
Can you please help us by enabling closeout for MID:- RCTST0000008099, application id:- com.banktech.ivulotochetu
For the above mentioned MID we are getting closeout not enabled.
@Chanel we are using below mentioned code for closing the batch via our own application public void performCloseout(boolean allowOpenTabs, String batchId) { C13024 closeoutReceiver = new C13024(); IntentFilter filter = new IntentFilter(); filter.addAction(Intents.ACTION_CLOSEOUT_BATCH_SCHEDULED); mActivity.registerReceiver(closeoutReceiver, filter); Intent intent = new Intent(Intents.ACTION_CLOSEOUT_BATCH); intent.putExtra(Intents.EXTRA_CLOSEOUT_ALLOW_OPEN_TABS, allowOpenTabs); intent.putExtra(Intents.EXTRA_CLOSEOUT_BATCHID, batchId); mActivity.sendBroadcast(intent); } Following is our broadcast receiver class class C13024 extends BroadcastReceiver { C13024() { } public void onReceive(Context context, Intent data) { onCloseoutResult(data); if (this != null) { Batch batch = null; if (data.hasExtra(Intents.EXTRA_CLOSEOUT_BATCH)) { batch = (Batch) data.getParcelableExtra(Intents.EXTRA_CLOSEOUT_BATCH); Log.v("closeoutdata", batch.toString()); } } } } After performing the closeout we get the batch data empty in our broadcast receiver. Batch{json='{"totalBatchAmount":0,"state":"OPEN","batchDetails":{"batchTotals":{"refunds":{"count":0,"total":0},"giftCardCashOuts":{"count":0,"total":0},"tips":{"count":0,"total":0},"net":{"count":0,"total":0},"giftCardLoads":{"count":0,"total":0},"tax":{"count":0,"total":0},"sales":{"count":0,"total":0}},"serverTotals":{"elements":[]},"openTabs":0,"cardTotals":{"elements":[]},"openTips":0},"txCount":0}', bundle=null, changeLog=null} can you help on this?
No one has followed this question yet.