Details
Description
Issue reported while performing Refund & Void (java.lang.ClassCastException: java.lang.String cannot be cast to java.math.BigDecimal)
Change needs to be done in AIMPaymentServices.java. Please look at the following small patch:-
//BigDecimal amount = (BigDecimal) request.get("x_Amount");
String newAmt = request.get("x_Amount").toString();
BigDecimal amount = new BigDecimal(newAmt);