|
@@ -197,7 +197,7 @@ public class OrderOfflineRefundLogic {
|
|
|
}
|
|
|
|
|
|
//本次退货金额
|
|
|
- itemRefundAmount = itemRefundAmount.add(BigDecimal.valueOf(item.getRefundNum()).multiply(item.getRefundAmount()));
|
|
|
+ itemRefundAmount = itemRefundAmount.add(item.getRefundAmount());
|
|
|
}
|
|
|
if(waitRefundAmount.doubleValue() < itemRefundAmount.doubleValue()){
|
|
|
throw new RemoteServiceException("退货总金额超出了本订单的可退金额,请检查");
|