From 60f3b50baef73b3c8d928c7059632f8df892fafc Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Thu, 05 Aug 2021 15:42:54 +0800
Subject: [PATCH] 1.单位信息
---
src/main/java/org/springblade/modules/information/controller/InformationController.java | 161 ++++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 146 insertions(+), 15 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 c279eec..82e2537 100644
--- a/src/main/java/org/springblade/modules/information/controller/InformationController.java
+++ b/src/main/java/org/springblade/modules/information/controller/InformationController.java
@@ -38,6 +38,7 @@
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
+import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -45,8 +46,9 @@
import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
+
/**
- * 控制器
+ * 控制器
*
* @author BladeX
* @since 2021-07-07
@@ -59,7 +61,6 @@
private final IInformationService informationService;
private final IDeptService iDeptService;
-
/**
* 详情
@@ -101,13 +102,43 @@
@ApiOperationSupport(order = 4)
@ApiOperation(value = "新增", notes = "传入information")
public R save(@Valid @RequestBody Information information) throws Exception {
- Dept dept= new Dept();
- Long i = 1413470343230877697L;
- dept.setParentId(i);
- dept.setTenantId("000000");
- dept.setDeptName(information.getEnterprisename());
- dept.setAncestors("0,1413470343230877697");
- dept.setDeptCategory(1);
+ Dept dept = new Dept();
+ //自招保安公司
+ if (information.getStats().equals("0")) {
+ Long i = 1420222768149966850L;
+ dept.setParentId(i);
+ dept.setTenantId("000000");
+ dept.setDeptName(information.getEnterprisename());
+ dept.setAncestors("0,1420222768149966850");
+ dept.setDeptCategory(1);
+ }
+ //保安培训公司
+ if (information.getStats().equals("1")) {
+ Long i = 1418458374477549569L;
+ dept.setParentId(i);
+ dept.setTenantId("000000");
+ dept.setDeptName(information.getEnterprisename());
+ dept.setAncestors("0,1418458374477549569");
+ dept.setDeptCategory(1);
+ }
+ //保安服务公司
+ if (information.getStats().equals("2")) {
+ Long i = 1413470343230877697L;
+ dept.setParentId(i);
+ dept.setTenantId("000000");
+ dept.setDeptName(information.getEnterprisename());
+ dept.setAncestors("0,1413470343230877697");
+ dept.setDeptCategory(1);
+ }
+ //武装守押公司
+ if (information.getStats().equals("3")) {
+ Long i = 1420222961377357825L;
+ dept.setParentId(i);
+ dept.setTenantId("000000");
+ dept.setDeptName(information.getEnterprisename());
+ dept.setAncestors("0,1420222961377357825");
+ dept.setDeptCategory(1);
+ }
if (iDeptService.submit(dept)) {
CacheUtil.clear(SYS_CACHE);
// 返回懒加载树更新节点所需字段
@@ -116,7 +147,7 @@
String id = kv.get("id").toString();
information.setDepartmentid(id);
}
- arg.test01(arg.url+"/information/save",information);
+ //arg.test01(arg.url + "/information/save", information);
return R.status(informationService.save(information));
}
@@ -127,7 +158,7 @@
@ApiOperationSupport(order = 5)
@ApiOperation(value = "修改", notes = "传入information")
public R update(@Valid @RequestBody Information information) throws Exception {
- arg.test01(arg.url+"/information/update",information);
+ arg.test01(arg.url + "/information/update", information);
return R.status(informationService.updateById(information));
}
@@ -148,12 +179,112 @@
@PostMapping("/remove")
@ApiOperationSupport(order = 8)
@ApiOperation(value = "删除", notes = "传入ids")
- public R remove(String creditcode) throws Exception {
- informationService.deleteIn(creditcode);
- informationService.deleteSh(creditcode);
- informationService.deleteMe(creditcode);
+ public R remove(String creditcode, String departmentid) throws Exception {
+ String[] strArray = creditcode.split(",");
+ String[] strArrays = departmentid.split(",");
+ for (int i = 0; i < strArray.length; i++) {
+ informationService.deleteIn(strArray[i]);
+ informationService.deleteSh(strArray[i]);
+ informationService.deleteMe(strArray[i]);
+ arg.sendPostRemoveByIds(arg.url + "/information/remove", strArray[i]);
+
+ }
+ for (int j = 0; j < strArrays.length; j++) {
+ //机构删除
+ informationService.deleteDept(strArrays[j]);
+ arg.sendPostRemoveByIds(arg.url + "/information/deleteDept", strArrays[j]);
+ }
+
return R.success("删除成功");
}
+ /**
+ * 统计保安员资格异常的数量
+ */
+ @PostMapping("/selectExtype")
+ public R selectExtype(String deptid) {
+ List<Map<Object, Object>> lists = informationService.selectExtype(deptid);
+ return R.data(lists);
+ }
+
+ /**
+ * 统计保安员持证的数量
+ */
+ @PostMapping("/selectHold")
+ public R selectHold(String deptid) {
+ List<Map<Object, Object>> lists = informationService.selectHold(deptid);
+ return R.data(lists);
+ }
+
+ /**
+ * 派遣服务单位统计
+ */
+ @PostMapping("/selectDis")
+ public R selectDis(String deptid) {
+ List<Map<Object, Object>> lists = informationService.selectDis(deptid);
+ return R.data(lists);
+ }
+
+ /**
+ * 保安派遣数量统计
+ */
+ @PostMapping("/selectDisp")
+ public R selectDisp(String deptid) {
+ List<Map<Object, Object>> lists = informationService.selectDisp(deptid);
+ return R.data(lists);
+ }
+
+ /**
+ * 社保统计
+ */
+ @PostMapping("/selectSoil")
+ public R selectSoil(String deptid) {
+ List<Map<Object, Object>> lists = informationService.selectSoil(deptid);
+ List<Map<String, Object>> list = new ArrayList<>();
+ for (int i = 0; i < lists.size(); i++) {
+ Map<String, Object> map = new HashMap<String, Object>();
+ String numj = lists.get(i).get("numj").toString();
+ Integer a = Integer.valueOf(numj);
+ String numz = lists.get(i).get("numz").toString();
+ Integer b = Integer.valueOf(numz);
+ Integer c = b - a;
+ map.put("numj", a);
+ map.put("nmuwj", c);
+ list.add(map);
+ }
+ return R.data(list);
+ }
+
+ public static String getJSONStringFromJavaBean(Class<? extends Object> clazz) {
+
+ Field[] fields = clazz.getDeclaredFields();
+
+ StringBuffer stb = new StringBuffer("{");
+
+ for (int i = 0; i < fields.length; i++) {
+
+ try {
+
+ Field field = fields[i];
+
+ field.setAccessible(true);
+
+ String name = field.getName();
+
+ stb.append("\"").append(name).append("\"").append(":\"\"").append(",");
+
+ } catch (Exception e) {
+
+ e.printStackTrace();
+
+ }
+
+ }
+
+ int i = stb.lastIndexOf(",");
+
+ return stb.substring(0, i) + "}";
+
+ }
}
--
Gitblit v1.9.3