Commit 6eeb23a9 authored by 刘林's avatar 刘林

fix(大屏):解决西安部分数据没有设备类别CODE导致报错问题

parent 50320cab
......@@ -1011,7 +1011,7 @@ public class ComprehensiveStatisticalAnalysisServiceImpl {
String v = j.getString("inspectReportNo");
j.put("inspectReportNo", (v == null || "null".equalsIgnoreCase(v)) ? "" : v);
}));
if (!ValidationUtil.isEmpty(dto.getString("CYLINDER_CATEGORY")) && dto.getString("EQU_CATEGORY_CODE").equals("2300")) {
if (!ValidationUtil.isEmpty(dto.getString("CYLINDER_CATEGORY")) && "2300".equals(dto.getString("EQU_CATEGORY_CODE"))) {
String cylinderCategory = dto.getString("CYLINDER_CATEGORY");
boolean integer = isInteger(cylinderCategory);
if (integer) {
......
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