tangzy
2021-11-18 7fdbd58861055cd48f56cab99bfbd2f81ad658c7
1.统计
2 files modified
96 ■■■■■ changed files
src/main/java/org/springblade/modules/information/controller/InformationController.java 92 ●●●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml 4 ●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/information/controller/InformationController.java
@@ -483,6 +483,7 @@
        Integer khb = 0;
        Integer pqa = 0;
        Integer pqb = 0;
        Integer integer = 0;
        String deptname = null;
        String jurname = null;
        //保安员数量
@@ -503,10 +504,12 @@
            b += Integer.valueOf(lastnum);
            String nums = maps.get(i).get("num").toString();
            num += Integer.valueOf(nums);
            String fznums = maps.get(i).get("fznum").toString();
            integer += Integer.valueOf(fznums);
        }
        map.put("thisnum", a);
        map.put("lastnum", b);
        map.put("num", num);
        map.put("num", num-integer);
        map.put("List", maps);
        mapC.put("baoan", map);
        //正常保安员数量
@@ -1339,93 +1342,6 @@
        lists.add(map);
        return R.data(lists);
    }
    /*    *//**
     * 分局预警统计
     *//*
    @PostMapping("/selectFj")
    public R selectFj() {
        //辖区信息
        List<Map<Object, Object>> list = informationService.selectJur();
        List<Map<String, Object>> lists = new ArrayList<>();
        for (int i = 0; i < list.size(); i++) {
            Integer count = 0;
            Map<String, Object> map = new HashMap<String, Object>();
            //辖区id
            String id = list.get(i).get("id").toString();
            //辖区名称
            String jurname = list.get(i).get("dept_name").toString();
            String childer = informationService.selJurchilder(id);
            String[] split = childer.split(",");
            String strArrays = "";
            for (int j = 0; j < split.length; j++) {
                strArrays += "'" + split[j] + "',";
            }
            String jurisdiction = strArrays.substring(0, strArrays.length() - 1);
            //保安员表现差预警数量
            List<Map<Object, Object>> mapbx = informationService.selectBx(jurisdiction, "", "");
            for (int ibx = 0; ibx < mapbx.size(); ibx++) {
                String num = mapbx.get(ibx).get("num").toString();
                count += Integer.valueOf(num);
            }
            //保安员资格异常的数量
            List<Map<Object, Object>> mapEx = informationService.selectExtype(jurisdiction, "", "");
            for (int iex = 0; iex < mapEx.size(); iex++) {
                String num = mapEx.get(iex).get("num").toString();
                count += Integer.valueOf(num);
            }
            //违规经营
            List<Map<Object, Object>> listwg = informationService.selectWg(jurisdiction);
            int countwg = 0;
            for (int ic = 0; ic < listwg.size(); ic++) {
                //总数
                String znums = listwg.get(ic).get("znum").toString();
                int znum = Integer.parseInt(znums);
                //持证人数
                String cznums = listwg.get(ic).get("cznum").toString();
                int cznum = Integer.parseInt(cznums);
                //缴纳社保人数
                String sbnums = listwg.get(ic).get("sbnum").toString();
                int sbnum = Integer.parseInt(sbnums);
                //保安总人数为0
                if (znum == 0) {
                    continue;
                } else {
                    int a = znum / 2;
                    if (cznum <= a || sbnum <= a) {
                        countwg++;
                    }
                }
            }
            //经营不善
            List<Map<Object, Object>> listjy = informationService.selectJy(jurisdiction);
            int countjy = 0;
            for (int iyc = 0; iyc < listjy.size(); iyc++) {
                String num = listjy.get(iyc).get("fwnum").toString();
                int a = Integer.parseInt(num);
                if (a == 0) {
                    countjy++;
                }
            }
            //有实无名
            List<Map<Object, Object>> listwm = informationService.selectYs(jurisdiction);
            int countwm = 0;
            for (int iwm = 0; iwm < listwm.size(); iwm++) {
                String num = listwm.get(iwm).get("znum").toString();
                int a = Integer.parseInt(num);
                if (a == 0) {
                    countwm++;
                }
            }
            //处罚
            List<Map<Object, Object>> maps = informationService.selectCf(jurisdiction);
            int size = maps.size();
            map.put("Count", count+countjy+countwg+countwm+size);
            map.put("jurname", jurname);
            lists.add(map);
        }
        return R.data(lists);
    }*/
    /**
     * 分局预警统计
src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
@@ -498,9 +498,10 @@
        SELECT IFNULL(A.thisnum, 0) AS thisnum,
        IFNULL(B.lastnum, 0) AS lastnum,
        IFNULL( C.num, 0 ) AS num,
        IFNULL( C.fznum, 0 ) AS fznum,
        H.departmentid,
        H.jurisdiction
        FROM (SELECT departmentid, jurisdiction FROM sys_information GROUP BY departmentid, jurisdiction) H
        FROM (SELECT departmentid, jurisdiction FROM sys_information WHERE stats!=1 GROUP BY departmentid, jurisdiction) H
        LEFT JOIN (
        SELECT COUNT(*) AS thisnum,
        dept_id
@@ -523,6 +524,7 @@
        ) B ON B.dept_id = H.departmentid
        LEFT JOIN (
        SELECT
        J.fznum,
        J.znum+J.fznum as num,
        J.dept_id
        FROM