1a4fc839 张雷

refactor(module-biz): 优化 SQL 查询和报表数据处理

- 在 SQL 查询中使用 JSUtils.quoteEach 方法处理 departIds 参数,提高安全性
- 优化 ReportTargetStatisticsVO 中的年完成比率和月完成比率计算逻辑
- 重构代码,提高可读性和可维护性
1 个父辈 74e261c5
...@@ -60,7 +60,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti ...@@ -60,7 +60,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti
60 sql += " left join( select aaa.depart_id, round(ifnull(sum(aaa.CSL)/10000,0),2) 'CSL' from " + dataViewName2119_month+"aaa group by aaa.depart_id ) ddd on ddd.depart_id = d.id "; 60 sql += " left join( select aaa.depart_id, round(ifnull(sum(aaa.CSL)/10000,0),2) 'CSL' from " + dataViewName2119_month+"aaa group by aaa.depart_id ) ddd on ddd.depart_id = d.id ";
61 sql += " where d.depart_type = 1 "; 61 sql += " where d.depart_type = 1 ";
62 if(StringUtils.isNotEmpty(departIds)){ 62 if(StringUtils.isNotEmpty(departIds)){
63 sql += " and d.id in ("+departIds+") "; 63 sql += " and d.id in ("+JSUtils.quoteEach(departIds,",")+") ";
64 } 64 }
65 sql += "order by ccc.CSL desc "; 65 sql += "order by ccc.CSL desc ";
66 List<ReportTargetStatisticsVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetStatisticsVO.class)); 66 List<ReportTargetStatisticsVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetStatisticsVO.class));
...@@ -94,7 +94,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti ...@@ -94,7 +94,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti
94 sql += " left join ( select aaa.depart_id , round(ifnull(avg(aaa.yyh),0),2) yyh ,round(ifnull(avg(aaa.ydh),0),2) ydh from "+dataViewName4411_month+" aaa group by aaa.depart_id )bbb on bbb.depart_id = d.id"; 94 sql += " left join ( select aaa.depart_id , round(ifnull(avg(aaa.yyh),0),2) yyh ,round(ifnull(avg(aaa.ydh),0),2) ydh from "+dataViewName4411_month+" aaa group by aaa.depart_id )bbb on bbb.depart_id = d.id";
95 sql += " where d.depart_type = 1 "; 95 sql += " where d.depart_type = 1 ";
96 if(StringUtils.isNotEmpty(departIds)){ 96 if(StringUtils.isNotEmpty(departIds)){
97 sql += " and d.id in ("+departIds+") "; 97 sql += " and d.id in ("+JSUtils.quoteEach(departIds,",")+") ";
98 } 98 }
99 List<ReportTargetEnergyVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetEnergyVO.class)); 99 List<ReportTargetEnergyVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetEnergyVO.class));
100 return dataList; 100 return dataList;
...@@ -140,7 +140,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti ...@@ -140,7 +140,7 @@ public class ReportTargetStatisticsServiceImpl implements IReportTargetStatisti
140 sql += " left join( select aaa.depart_id, round(ifnull(sum(aaa.ysjsf)/10000,0),2) 'ysjsf' from " + dataViewName4411_month+"aaa group by aaa.depart_id ) ddd on ddd.depart_id = d.id "; 140 sql += " left join( select aaa.depart_id, round(ifnull(sum(aaa.ysjsf)/10000,0),2) 'ysjsf' from " + dataViewName4411_month+"aaa group by aaa.depart_id ) ddd on ddd.depart_id = d.id ";
141 sql += " where d.depart_type = 1 "; 141 sql += " where d.depart_type = 1 ";
142 if(StringUtils.isNotEmpty(departIds)){ 142 if(StringUtils.isNotEmpty(departIds)){
143 sql += " and d.id in ("+departIds+") "; 143 sql += " and d.id in ("+JSUtils.quoteEach(departIds,",")+") ";
144 } 144 }
145 List<ReportTargetStatisticsVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetStatisticsVO.class)); 145 List<ReportTargetStatisticsVO> dataList = getJdbcTemplate().query(sql,new BeanPropertyRowMapper<>(ReportTargetStatisticsVO.class));
146 return dataList; 146 return dataList;
......
1 package com.skua.modules.statistics.vo; 1 package com.skua.modules.statistics.vo;
2 2
3 import cn.jiguang.common.utils.StringUtils;
3 import com.skua.core.aspect.annotation.Dict; 4 import com.skua.core.aspect.annotation.Dict;
4 import com.skua.tool.util.JSUtils; 5 import com.skua.tool.util.JSUtils;
5 import io.swagger.annotations.ApiModel; 6 import io.swagger.annotations.ApiModel;
...@@ -59,4 +60,20 @@ public class ReportTargetStatisticsVO { ...@@ -59,4 +60,20 @@ public class ReportTargetStatisticsVO {
59 expression = "100 * ( "+monthValue+"/"+monthTarget+" )"; 60 expression = "100 * ( "+monthValue+"/"+monthTarget+" )";
60 this.monthWcBL = JSUtils.executeExpression(expression,"0.00"); 61 this.monthWcBL = JSUtils.executeExpression(expression,"0.00");
61 } 62 }
63
64 public String getYearWcBL() {
65 if(StringUtils.isEmpty(this.yearWcBL) && StringUtils.isNotEmpty(this.yearTarget) && StringUtils.isNotEmpty(this.yearValue)){
66 String expression = "100 * ( "+this.yearValue+"/"+this.yearTarget+" )";
67 this.yearWcBL = JSUtils.executeExpression(expression,"0.00");
68 }
69 return yearWcBL;
70 }
71
72 public String getMonthWcBL() {
73 if(StringUtils.isEmpty(this.monthWcBL) && StringUtils.isNotEmpty(this.monthTarget) && StringUtils.isNotEmpty(this.monthValue)){
74 String expression = "100 * ( "+this.monthValue+"/"+this.monthTarget+" )";
75 this.monthWcBL = JSUtils.executeExpression(expression,"0.00");
76 }
77 return monthWcBL;
78 }
62 } 79 }
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!