Commit d2d8dab1 by zhangxingmin

push

parent 1a5f41e9
......@@ -280,9 +280,9 @@ public class ApiCommissionExpectedController {
if (!CollectionUtils.isEmpty(allExpectedIdList)) {
receivableReportPage = commissionExpectedService.receivableReportPage(reportPage, allExpectedIdList);
}
log.info("receivableReportPage>>>>前{}", JSON.toJSONString(receivableReportPage));
enrichReceivableReportWithCompanyName(receivableReportPage);
log.info("receivableReportPage>>>>{}", JSON.toJSONString(receivableReportPage));
log.info("receivableReportPage>>>>{}", JSON.toJSONString(receivableReportPage));
// 组装返回结果
ReceivableReportResponse response = new ReceivableReportResponse();
response.setStatisticsVO(statisticsVO);
......@@ -301,7 +301,7 @@ public class ApiCommissionExpectedController {
.filter(StringUtils::isNotBlank)
.distinct()
.collect(Collectors.toList());
log.info("bizIdList>>>>{}", JSON.toJSONString(bizIdList));
if (bizIdList.isEmpty()) {
return;
}
......@@ -314,6 +314,7 @@ public class ApiCommissionExpectedController {
Result result = companyFeignClient.page(request);
List<ApiInsuranceReconciliationCompanyPageResponse> companyList = extractCompanyListFromResult(result);
log.info("companyList>>>>{}", JSON.toJSONString(companyList));
if (companyList.isEmpty()) {
return;
}
......@@ -326,7 +327,7 @@ public class ApiCommissionExpectedController {
ApiInsuranceReconciliationCompanyPageResponse::getName,
(v1, v2) -> v1 // 重复时保留第一个
));
log.info("nameMap>>>>{}", JSON.toJSONString(nameMap));
// 回填名称
page.getRecords().forEach(vo -> {
if (StringUtils.isNotBlank(vo.getReconciliationCompanyBizId())) {
......@@ -346,6 +347,7 @@ public class ApiCommissionExpectedController {
if (result == null || result.getCode() != 200 || result.getData() == null) {
return Collections.emptyList();
}
log.info("nameMap>>>>{}", JSON.toJSONString(result));
Object data = result.getData();
if (!(data instanceof IPage<?>)) {
// 可根据需要记录日志
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment