Hi,
We are using ACTION_SECURE_PAY For Payments in all devices.
For Mini its working fine but for Station 2018 we are getting below issue
Added a Tip, however, it did not show on credit card receipt and when we checked Order in Orders App, in that page also we are unable to see Tip.
We are using below code
Intent intent = new Intent(Intents.ACTION_SECURE_PAY);
intent.putExtra(Intents.EXTRA_AMOUNT, amount);
intent.putExtra(Intents.EXTRA_TIP_AMOUNT, tip);
intent.putExtra(Intents.EXTRA_TAX_AMOUNT, tax);
intent.putExtra(Intents.EXTRA_SERVICE_CHARGE_AMOUNT, service_charge);
intent.putExtra(Intents.EXTRA_ORDER_ID, orderId);
intent.putExtra(Intents.EXTRA_CARD_ENTRY_METHODS, cardEntryMethodsAllowed);
intent.putExtra(Intents.EXTRA_REMOTE_PRINT,false);
startActivityForResult(intent, SECURE_PAY_REQUEST_CODE);
Is ACTION_SECURE_PAY works same in Mini and Station 2018?Can we use ACTION_STATION_SECURE_PAY instead of ACTION_SECURE_PAY for Station 2018? Does it work same as ACTION_SECURE_PAY?But the pay doesn't have any Extras passed and result.
Any suggestions will help us
Thanks