Login  Register

Re: Users - Ecommerce:Using BillingAccountfor checkoutreturns "Please select a method of payment"

Posted by Vinay Agarwal on Apr 13, 2006; 4:26pm
URL: http://ofbiz.116.s1.nabble.com/Re-Users-Ecommerce-Using-BillingAccountfor-checkoutreturns-Please-select-a-method-of-payment-tp138538p138539.html

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]);
  }

 

 

 


 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users