|
@@ -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")){
|