Hi,
I am currently processing custom tender payment in the Sale app of a Flex device and always receive the paid amount at 0$ from my tender even if i send statically the amount like in the example below:
Intent returnData = new Intent();
returnData.putExtra(Intents.EXTRA_AMOUNT, 100);
returnData.putExtra(Intents.EXTRA_CLIENT_ID, Utils.nextRandomId());
returnData.putExtra(Intents.EXTRA_NOTE, "Transaction Id: " + Utils.nextRandomId());
setResult(RESULT_OK, returnData);
Is it because i am in a Sandbox environment?
Thank you