Commit 53a9cd14 authored by 耿迪迪's avatar 耿迪迪

隐患统计问题修改 gengdidi

parent 65a65910
...@@ -5,7 +5,7 @@ public class HiddenStatVO { ...@@ -5,7 +5,7 @@ public class HiddenStatVO {
/** /**
* 隐患发现月份 * 隐患发现月份
*/ */
private int month; private String month;
/** /**
* 发现隐患数量 * 发现隐患数量
...@@ -17,11 +17,11 @@ public class HiddenStatVO { ...@@ -17,11 +17,11 @@ public class HiddenStatVO {
*/ */
private int rectifiedCount; private int rectifiedCount;
public int getMonth() { public String getMonth() {
return month; return month;
} }
public void setMonth(int month) { public void setMonth(String month) {
this.month = month; this.month = month;
} }
......
package com.zehong.system.service.impl; package com.zehong.system.service.impl;
import java.math.BigDecimal;
import java.util.*;
import com.zehong.common.core.domain.entity.SysDept;
import com.zehong.common.utils.DateUtils; import com.zehong.common.utils.DateUtils;
import com.zehong.system.domain.THiddenTroubleWork; import com.zehong.system.domain.TStaningBook;
import com.zehong.system.domain.vo.HiddenStatVO; import com.zehong.system.domain.vo.HiddenStatVO;
import com.zehong.system.mapper.SysDeptMapper; import com.zehong.system.mapper.SysDeptMapper;
import com.zehong.system.mapper.THiddenTroubleWorkMapper; import com.zehong.system.mapper.THiddenTroubleWorkMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.zehong.system.mapper.TStaningBookMapper; import com.zehong.system.mapper.TStaningBookMapper;
import com.zehong.system.domain.TStaningBook;
import com.zehong.system.service.ITStaningBookService; import com.zehong.system.service.ITStaningBookService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.text.SimpleDateFormat;
import java.util.*;
/** /**
* 隐患台账Service业务层处理 * 隐患台账Service业务层处理
...@@ -24,6 +24,7 @@ import com.zehong.system.service.ITStaningBookService; ...@@ -24,6 +24,7 @@ import com.zehong.system.service.ITStaningBookService;
@Service @Service
public class TStaningBookServiceImpl implements ITStaningBookService public class TStaningBookServiceImpl implements ITStaningBookService
{ {
private static final Logger logger = LoggerFactory.getLogger(TStaningBookServiceImpl.class);
@Autowired @Autowired
private TStaningBookMapper tStaningBookMapper; private TStaningBookMapper tStaningBookMapper;
@Autowired @Autowired
...@@ -124,62 +125,76 @@ public class TStaningBookServiceImpl implements ITStaningBookService ...@@ -124,62 +125,76 @@ public class TStaningBookServiceImpl implements ITStaningBookService
@Override @Override
public Map<String,List> hiddenStat(Integer troubleLevel, Date beginTime, Date endTime){ public Map<String,List> hiddenStat(Integer troubleLevel, Date beginTime, Date endTime){
Map<String,List> result = new HashMap<>(16); Map<String,List> result = new HashMap<>(16);
List<HiddenStatVO> barData = tStaningBookMapper.hiddenBarStat(troubleLevel,beginTime,endTime); try {
//柱状图月份数据 List<HiddenStatVO> barData = tStaningBookMapper.hiddenBarStat(troubleLevel,beginTime,endTime);
List<String> months = new ArrayList<>(); //柱状图月份数据
//柱状图隐患数量 List<String> months = getMonthBetweenDate(beginTime,endTime);
List<Integer> hiddens = new ArrayList<>(); //柱状图隐患数量
//柱状图整改数量 List<Integer> hiddens = new ArrayList<>();
List<Integer> rectifieds = new ArrayList<>(); //柱状图整改数量
for(HiddenStatVO hidden : barData){ List<Integer> rectifieds = new ArrayList<>();
months.add(changeMonth(hidden.getMonth())); for(String month : months){
hiddens.add(hidden.getHiddenCount()); boolean isHas = false;
rectifieds.add(hidden.getRectifiedCount()); for(HiddenStatVO hidden : barData){
if(month.equals(hidden.getMonth())){
isHas = true;
hiddens.add(hidden.getHiddenCount());
rectifieds.add(hidden.getRectifiedCount());
break;
}
}
if(!isHas){
hiddens.add(0);
rectifieds.add(0);
}
}
result.put("months",months);
result.put("hiddens",hiddens);
result.put("rectifieds",rectifieds);
//环状统计图
Map<String,Integer> pieData = tStaningBookMapper.hiddenPieStat(troubleLevel,beginTime,endTime);
List<Map<String,Object>> pieResult = new ArrayList<>();
Map<String,Object> rectifiedMap = new HashMap<>(16);
rectifiedMap.put("name","已整改");
rectifiedMap.put("value",pieData.get("rectifiedCount"));
pieResult.add(rectifiedMap);
Map<String,Object> stayRectifiedMap = new HashMap<>(16);
stayRectifiedMap.put("name","未整改");
stayRectifiedMap.put("value",pieData.get("stayRectifiedCount"));
pieResult.add(stayRectifiedMap);
result.put("pieData",pieResult);
} catch (Exception e) {
logger.error("隐患统计错误:" + e);
} }
result.put("months",months);
result.put("hiddens",hiddens);
result.put("rectifieds",rectifieds);
//环状统计图
Map<String,Integer> pieData = tStaningBookMapper.hiddenPieStat(troubleLevel,beginTime,endTime);
List<Map<String,Object>> pieResult = new ArrayList<>();
Map<String,Object> rectifiedMap = new HashMap<>(16);
rectifiedMap.put("name","已整改");
rectifiedMap.put("value",pieData.get("rectifiedCount"));
pieResult.add(rectifiedMap);
Map<String,Object> stayRectifiedMap = new HashMap<>(16);
stayRectifiedMap.put("name","未整改");
stayRectifiedMap.put("value",pieData.get("stayRectifiedCount"));
pieResult.add(stayRectifiedMap);
result.put("pieData",pieResult);
return result; return result;
} }
private String changeMonth(int month){
switch (month){ /**
case 1: * 获取两个日期之间的所有月份 (年月)
return "一月"; *
case 2: * @param startTime
return "二月"; * @param endTime
case 3: * @return:YYYY-MM
return "三月"; */
case 4: private List<String> getMonthBetweenDate(Date startTime, Date endTime){
return "四月"; SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
case 5: // 声明保存日期集合
return "五月"; List<String> list = new ArrayList<String>();
case 6: //用Calendar 进行日期比较判断
return "六月"; Calendar calendar = Calendar.getInstance();
case 7: while (startTime.getTime()<=endTime.getTime()){
return "七月"; // 把日期添加到集合
case 8: list.add(sdf.format(startTime));
return "八月"; // 设置日期
case 9: calendar.setTime(startTime);
return "九月"; //把日期增加一天
case 10: calendar.add(Calendar.MONTH, 1);
return "十月"; // 获取增加后的日期
case 11: startTime=calendar.getTime();
return "十一月";
default:
return "十二月";
} }
return list;
} }
} }
...@@ -200,7 +200,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -200,7 +200,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="hiddenBarStat" resultType="HiddenStatVO"> <select id="hiddenBarStat" resultType="HiddenStatVO">
SELECT SELECT
IFNULL(MONTH(find_time),0) AS month, IFNULL(DATE_FORMAT(find_time,'%Y-%m'),0) AS month,
IFNULL(count(1),0) hiddenCount, IFNULL(count(1),0) hiddenCount,
IFNULL(sum(CASE state WHEN '2' THEN 1 ELSE 0 END),0) AS rectifiedCount IFNULL(sum(CASE state WHEN '2' THEN 1 ELSE 0 END),0) AS rectifiedCount
FROM FROM
...@@ -213,7 +213,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -213,7 +213,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="troubleLevel != null and troubleLevel != ''"> <if test="troubleLevel != null and troubleLevel != ''">
AND trouble_level = #{troubleLevel} AND trouble_level = #{troubleLevel}
</if> </if>
GROUP BY MONTH(find_time) GROUP BY DATE_FORMAT(find_time,'%Y-%m')
</select> </select>
<select id="hiddenPieStat" resultType="java.util.Map"> <select id="hiddenPieStat" resultType="java.util.Map">
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="hiddenStat"> <div class="hiddenStat">
<el-form :model="queryParams" :inline="true" label-width="100px" style="margin-top: 10px"> <el-form :model="queryParams" :inline="true" label-width="100px" style="margin-top: 10px">
<el-form-item label="隐患级别" prop="hiddenLevel"> <el-form-item label="隐患级别" prop="hiddenLevel">
<el-select v-model="queryParams.troubleLevel" placeholder="请选择隐患级别"> <el-select v-model="queryParams.troubleLevel" placeholder="请选择隐患级别" clearable>
<el-option <el-option
v-for="dict in troubleLevelOptions" v-for="dict in troubleLevelOptions"
:key="dict.dictValue" :key="dict.dictValue"
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
closeHiddenBarData: [], closeHiddenBarData: [],
pieData: [], pieData: [],
troubleLevelOptions: [], troubleLevelOptions: [],
findTime: "" findTime: [new Date().getFullYear() + "-01-01 00:00:00",new Date().getFullYear() + "-12-31 23:59:59"]
} }
}, },
mounted(){ mounted(){
...@@ -75,11 +75,20 @@ ...@@ -75,11 +75,20 @@
}, },
xAxis: { xAxis: {
type: 'category', type: 'category',
//data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] axisLabel: {
//x轴文字的配置
show: true,
interval: 0,//使x轴文字显示全
rotate: -270
},
//data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
data: this.monthData data: this.monthData
}, },
yAxis: { yAxis: {
type: 'value' type: 'value',
axisLabel: {
interval: 0,
},
}, },
series: [ series: [
{ {
...@@ -119,7 +128,7 @@ ...@@ -119,7 +128,7 @@
}, },
series: [ series: [
{ {
name: 'gun', name: '隐患整改率',
type: 'pie', type: 'pie',
radius: ['40%', '70%'], radius: ['40%', '70%'],
/*data: [ /*data: [
...@@ -148,8 +157,14 @@ ...@@ -148,8 +157,14 @@
}) })
}, },
dateFormat(picker){ dateFormat(picker){
this.queryParams.beginTime = picker[0]; if(!picker){
this.queryParams.endTime = picker[1]; this.findTime = [];
this.queryParams.beginTime = null;
this.queryParams.endTime = null;
}else{
this.queryParams.beginTime = picker[0];
this.queryParams.endTime = picker[1];
}
}, },
search(){ search(){
this.getHiddenData(); this.getHiddenData();
......
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