yuzixiang
2020-05-19 e25c689888a0dd80d07ffc4e4a45bd290b3d010c
src/main/java/com/moral/controller/ReportController.java
@@ -4,6 +4,8 @@
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -13,6 +15,8 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.moral.service.*;
import com.moral.util.DatesUtil;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils;
import org.springframework.util.ObjectUtils;
@@ -31,11 +35,6 @@
import com.moral.entity.charts.LineChartCriteria;
import com.moral.security.auth.JwtAuthenticationToken;
import com.moral.security.model.UserContext;
import com.moral.service.AlarmDailyService;
import com.moral.service.HistoryDailyService;
import com.moral.service.HistoryMinutelyService;
import com.moral.service.MonitorPointService;
import com.moral.service.SensorService;
import cn.hutool.core.io.IoUtil;
import cn.hutool.poi.excel.ExcelWriter;
@@ -61,6 +60,9 @@
    @Resource
    private SensorService sensorService;
    @Resource
    private HistoryService historyService;
    @GetMapping("compare")
    public ResultBean<Map<String, List>> getCompareReport(HttpServletRequest request) throws Exception {
        Map<String, Object> parameters = getParametersStartingWith(request, null);
@@ -79,6 +81,7 @@
        List<Map<String, Object>> list = historyMinutelyService.getMonitorPointOrDeviceAvgData(parameters);
        List<String> sensors = (List<String>) parameters.get("sensors");
        String[][] exportColumn = new String[sensors.size() + 1][];
        System.out.println(list.toString());
        exportColumn[0] = new String[]{"时间", "20", "time"};
        for (int index = 0; index < sensors.size(); index++) {
            String[] split = sensors.get(index).split("-");
@@ -95,27 +98,82 @@
        outputStream.close();
        return new ResultBean<Boolean>(true);
    }
//计算臭氧平缓平均值并导出
    @GetMapping("O3Excel")
    public ResultBean<Boolean> getO3ExcelReport(HttpServletRequest request, HttpServletResponse response) throws Exception {
        Map<String, Object> parameters = getParametersStartingWith(request, null);
        String mac= (String) parameters.get("mac");
        String stime= (String) parameters.get("time");
        SimpleDateFormat format=new SimpleDateFormat("yyyy-MM");
        Date time =format.parse(stime);
        List<String> stringListDate = DatesUtil.getAllTheDateOftheMonth(time);
        List<Map<String,Object>> maxList=new ArrayList<Map<String,Object>>();
        for (String sld : stringListDate) {
            Map<String,Object>  avgMap=new HashMap<String,Object>();
            List<String> listavg=new ArrayList<String>();
            String s1="";
            for(int i=0;i<24;i++){
                if (i<10){
                    sld=sld.substring(0,10);
                    sld=sld+" 0"+i+":00:00";
                    s1=DatesUtil.pinDate(sld);
                }else {
                    sld=sld.substring(0,10);
                    sld=sld+" "+i+":00:00";
                    s1=DatesUtil.pinDate(sld);
                }
                System.out.println(sld+"        "+s1);
                Map<String, Object> parm = new HashMap<String, Object>();
                parm.put("frontTime", sld);
                parm.put("afterTime", s1);
                parm.put("mac", mac);
                String avg = historyService.getO3AVG(parm);
                if (avg!=null){
                    listavg.add(avg);
                }
                }
            String maxO3="";
            if (listavg.size()!=0){
                String subs=sld.substring(0,10);
                String timef=subs+" 00:00:00";
                String timea=subs+" 23:59:59";
                int num=historyService.getNum(timef,timea);
                if (num==0){
                    maxO3="";
                }else {
                    maxO3= Collections.max(listavg);
                }
            }
            avgMap.put("time",sld.substring(0,10));
            avgMap.put("e15",maxO3);
            maxList.add(avgMap);
        }
        String[][] exportColumn = new String[2][];
        exportColumn[0] = new String[]{"时间", "20", "time"};
        String name = "O3浓度";
        String key = "e15";
        String unit = "ug/m³";
        if (!ObjectUtils.isEmpty(unit) && !"null".equals(unit)) {
            name += "-" + unit;
        }
        exportColumn[1] = new String[]{name, "10", key};
        OutputStream outputStream = exportData(response, "Excel数据", maxList, exportColumn);
        outputStream.flush();
        outputStream.close();
        return new ResultBean<Boolean>(true);
        }
    @GetMapping("newExcel")
    public ResultBean<Boolean> getNExcelReport(HttpServletRequest request, HttpServletResponse response) throws Exception {
        Map<String, Object> parameters = getParametersStartingWith(request, null);
        List<Map<String, Object>> list = historyMinutelyService.getMonitorPointOrDeviceAvgData(parameters);
        ArrayList<String> sensorKeys = (ArrayList<String>) parameters.get("sensorKeys");
        for (Map<String, Object> map : list) {
            for (String sensorKey : sensorKeys) {
                if (map.get(sensorKey) == null) {
                    map.put(sensorKey, "");
                }
            }
        }
        String type = parameters.get("type").toString();
        String time = parameters.get("time").toString();
        String timeb = "";
        String timeb;
        if (parameters.get("timeb") == null) {
            timeb = parameters.get("time").toString();
        } else {
            timeb = parameters.get("timeb").toString();
            timeb = time;
        }else {
            timeb=parameters.get("timeb").toString();
        }
        String[] endTimes = timeb.split("-");
@@ -123,21 +181,12 @@
        String beginTime = "";
        String endTime = "";
        List<String> monthList1 = new ArrayList<>();
        monthList1.add("01");
        monthList1.add("03");
        monthList1.add("05");
        monthList1.add("07");
        monthList1.add("08");
        monthList1.add("10");
        monthList1.add("12");
        Collections.addAll(monthList1,"01","03","05","07","08","10","12");
        List<String> monthList2 = new ArrayList<>();
        monthList2.add("04");
        monthList2.add("06");
        monthList2.add("09");
        monthList2.add("11");
        Collections.addAll(monthList2,"04","06","09","11");
        Integer year = Integer.valueOf(endTimes[0]);
        int i = 0;
        if (type.equals("year")) {
            dateFormat = "yyyy-MM";
            beginTime = time + "-01";
@@ -163,11 +212,11 @@
            beginTime = time + " 00";
            endTime = timeb + " 23";
            i = Calendar.HOUR_OF_DAY;
        } else if (type.equals("hour")) {
            dateFormat = "yyyy-MM-dd HH:mm";
            beginTime = time + ":00:00";
            endTime = timeb + ":59:00";
            i = Calendar.MINUTE;
        }else if(type.equals("hour")){
            dateFormat="yyyy-MM-dd HH:mm";
            beginTime=time+":00:00";
            endTime=timeb+":59:00";
            i=Calendar.MINUTE;
        }
        SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
@@ -180,6 +229,50 @@
            Map<String, Object> map = new HashMap<>();
            map.put("time", format);
            resultList.add(map);
        }
        if(type.equals("year")){
            SimpleDateFormat sd = new SimpleDateFormat("yyyy");
            Date dt = sd.parse(timeb);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(dt);
            calendar.add(Calendar.YEAR, 1);
            Date dt1 = calendar.getTime();
            timeb = sd.format(dt1);
        }else if(type.equals("month")){
            SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM");
            Date dt = sd.parse(timeb);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(dt);
            calendar.add(Calendar.MONTH, 1);
            Date dt1 = calendar.getTime();
            timeb = sd.format(dt1);
        }else if(type.equals("day")){
            SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd");
            Date dt = sd.parse(timeb);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(dt);
            calendar.add(Calendar.DAY_OF_MONTH, 1);
            Date dt1 = calendar.getTime();
            timeb = sd.format(dt1);
        }else if(type.equals("hour")){
            SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH");
            Date dt = sd.parse(timeb);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(dt);
            calendar.add(Calendar.HOUR_OF_DAY, 1);
            Date dt1 = calendar.getTime();
            timeb = sd.format(dt1);
        }
        parameters.put("timeb",timeb);
        List<Map<String, Object>> list = historyMinutelyService.getMonitorPointOrDeviceAvgData(parameters);
        ArrayList<String> sensorKeys = (ArrayList<String>)parameters.get("sensorKeys");
        for (Map<String, Object> map : list) {
            for (String sensorKey : sensorKeys) {
                if(map.get(sensorKey)==null){
                    map.put(sensorKey,"");
                }
            }
        }
        for (Map<String, Object> map : resultList) {
@@ -263,6 +356,7 @@
    @GetMapping("custom-made-excel")
    public ResultBean<Boolean> getCustomMadeExcelReport(HttpServletRequest request, HttpServletResponse response) throws Exception {
        Map<String, Object> parameters = getParametersStartingWith(request, null);
        System.out.println(parameters.toString());
        ParameterUtils.getTimeType4Time(parameters);
        String sensorsInfo = parameters.get("sensors").toString();
        String sensorsInfoNew = StringUtils.strip(sensorsInfo, "[]");