From 7fdbd58861055cd48f56cab99bfbd2f81ad658c7 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Thu, 18 Nov 2021 16:16:30 +0800
Subject: [PATCH] 1.统计

---
 src/main/java/org/springblade/modules/information/controller/InformationController.java |   92 ++--------------------------------------------
 1 files changed, 4 insertions(+), 88 deletions(-)

diff --git a/src/main/java/org/springblade/modules/information/controller/InformationController.java b/src/main/java/org/springblade/modules/information/controller/InformationController.java
index 9e23a47..f83eb31 100644
--- a/src/main/java/org/springblade/modules/information/controller/InformationController.java
+++ b/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);
-	}*/
 
 	/**
 	 * 分局预警统计

--
Gitblit v1.9.3