We are developing a Clover App for Clover Station that has a Merchant facing Tender type. When the tender type is selected while payment during Register App our merchant facing App is opened up and payment and member details are taken and finally when the payment is done we would like to add a note to the Order for future reference. Below is how we are adding the note to the Intents.EXTRA_NOTE. But somehow the transaction is processing successfully but the note is not getting populated anywhere in the Clover Order. Can anyone tell us what we are doing wrong? Also where does the Intents.EXTRA_CLIENT_ID get populated on the Clover Order. We don’t see this also anywhere.
public void transferReceiptDoneClick(View view) {
Intent data = new Intent();
data.putExtra(Intents.EXTRA_AMOUNT, (orderTransactionAmount + orderTransactionTaxAmount));
data.putExtra(Intents.EXTRA_CLIENT_ID, getScoinTransactionID());
data.putExtra(Intents.EXTRA_NOTE, "Scoin Sav: " + CloverUtil.longToAmountString(orderTransactionCurrency,customCashSaveAmount) +" #TRX Id: " + getScoinTransactionID());
setResult(RESULT_OK, data);
finish();
}