微调
This commit is contained in:
@@ -421,7 +421,7 @@ public class CustomReportServiceImpl implements CustomReportService {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CollUtil.isEmpty(endList)) {
|
if (CollUtil.isNotEmpty(endList)) {
|
||||||
//数据单位信息
|
//数据单位信息
|
||||||
Map<String, String> unit = unitMap(reportSearchParam.getLineId());
|
Map<String, String> unit = unitMap(reportSearchParam.getLineId());
|
||||||
//进行反向赋值到模板
|
//进行反向赋值到模板
|
||||||
@@ -431,7 +431,6 @@ public class CustomReportServiceImpl implements CustomReportService {
|
|||||||
jsonArray.forEach(item -> {
|
jsonArray.forEach(item -> {
|
||||||
JSONObject jsonObject = (JSONObject) item;
|
JSONObject jsonObject = (JSONObject) item;
|
||||||
JSONArray itemArr = (JSONArray) jsonObject.get("celldata");
|
JSONArray itemArr = (JSONArray) jsonObject.get("celldata");
|
||||||
String celldata = jsonObject.get("celldata").toString();
|
|
||||||
itemArr.forEach((it) -> {
|
itemArr.forEach((it) -> {
|
||||||
if (Objects.nonNull(it) && !"null".equals(it.toString())) {
|
if (Objects.nonNull(it) && !"null".equals(it.toString())) {
|
||||||
//获取到1列
|
//获取到1列
|
||||||
|
|||||||
Reference in New Issue
Block a user