‘linchangsheng’ 11 meses atrás
pai
commit
24dc2f6768

+ 1 - 1
mall-server-api/src/main/java/com/gree/mall/manager/logic/order/OrderOfflineRefundLogic.java

@@ -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("退货总金额超出了本订单的可退金额,请检查");