Part of the problem I observed was caused by the “if (amount != null)” change. For single page checkout, no change is needed. I haven’t looked at the multi-page checkout with split payments whether the following change is needed or not.
Vinay
String amountStr = null;
if ("EXT_BILLACT".equals(paymentMethods[i])) {
amountStr = request.getParameter("amount_" +
request.getParameter("billingAccountId"));
} else {
amountStr = request.getParameter("amount_" + paymentMethods[i]);
}
Free forum by Nabble | Edit this page |