Browse Source

no message

FengChaoYu 8 months ago
parent
commit
12c48a86a0

+ 4 - 4
mall-server-api/src/main/java/com/gree/mall/manager/logic/settle/repair/RepairSettleAccountLogic.java

@@ -33,10 +33,7 @@ import org.springframework.transaction.annotation.Transactional;
 import org.springframework.web.multipart.MultipartFile;
 
 import java.math.BigDecimal;
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-import java.util.Map;
+import java.util.*;
 import java.util.function.Function;
 import java.util.stream.Collectors;
 
@@ -319,6 +316,9 @@ public class RepairSettleAccountLogic {
         bankCardInfoBean.setBankOrgCode(bankCardBalance.getOpenBankOrgId());
         list.add(bankCardInfoBean);
         Map<String,Object> response = cmcBankLogic.getAccountBalance(list,bankCardBalance.getSummaryNumber());
+        if (Objects.isNull(response)) {
+            throw new RemoteServiceException("调用银行接口出错, 返回空结果, 请联系管理者查看具体错误日志!");
+        }
         JSONObject head = JSONObject.parseObject(response.get("head").toString());
 
         if(head != null && head.get("resultcode").equals("SUC0000")){