PaymentConnector is indeed available on 215.
If you're unable to capture the data, where are you getting the data you've posted?
Please provide a code example of what you're trying to accomplish as well as what you've previously tried.
Hi @Chanel
We are now able to get the payment connector SDK, for this we need to integrate additional dependency for it in gradle file.
Can you please enable closeout for MID:- RCTST0000008099, application id:- com.banktech.ivulotochetu
For the above mentioned MID we are getting closeout not enabled.
@zgreathouse, @Raymond Lee any update on this.
Please let me know if you need any further information.
@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.