From dccbfed64d8154b72a70e7ac34f222f7ec440da2 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 09 Dec 2021 17:41:10 +0800
Subject: [PATCH] 考试签到记录新增,用户测试导入修改

---
 src/main/java/org/springblade/modules/system/controller/UserController.java |  380 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 367 insertions(+), 13 deletions(-)

diff --git a/src/main/java/org/springblade/modules/system/controller/UserController.java b/src/main/java/org/springblade/modules/system/controller/UserController.java
index 1ccc519..523eeb6 100644
--- a/src/main/java/org/springblade/modules/system/controller/UserController.java
+++ b/src/main/java/org/springblade/modules/system/controller/UserController.java
@@ -55,11 +55,15 @@
 import org.springblade.core.tool.support.Kv;
 import org.springblade.core.tool.utils.*;
 import org.springblade.modules.FTP.FtpUtil;
+import org.springblade.modules.dispatcher.entity.Dispatcher;
+import org.springblade.modules.dispatcher.service.IDispatcherService;
 import org.springblade.modules.exam.excel.ExportExamScoreExcel;
 import org.springblade.modules.experience.entity.Experience;
 import org.springblade.modules.experience.service.IExperienceService;
 import org.springblade.modules.jurisdiction.entity.Jurisdiction;
 import org.springblade.modules.jurisdiction.service.JurisdictionService;
+import org.springblade.modules.signinrecords.entity.SignInRecords;
+import org.springblade.modules.signinrecords.service.SignInRecordsService;
 import org.springblade.modules.system.entity.Dept;
 import org.springblade.modules.system.entity.Role;
 import org.springblade.modules.system.entity.User;
@@ -71,6 +75,8 @@
 import org.springblade.modules.system.vo.DeptVO;
 import org.springblade.modules.system.vo.UserVO;
 import org.springblade.modules.system.wrapper.UserWrapper;
+import org.springblade.modules.training.entity.TrainingRegistration;
+import org.springblade.modules.training.service.TrainingRegistrationService;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.web.bind.annotation.*;
 import org.springframework.web.multipart.MultipartFile;
@@ -111,6 +117,13 @@
 	private final IExperienceService experienceService;
 
 	private final JurisdictionService jurisdictionService;
+
+	private final IDispatcherService dispatcherService;
+
+	private final SignInRecordsService signInRecordsService;
+
+
+	private final TrainingRegistrationService trainingRegistrationService;
 
 	/**
 	 * 查询单条
@@ -277,7 +290,7 @@
 	public R update(@Valid @RequestBody User user) throws Exception {
 		CacheUtil.clear(USER_CACHE);
 		User user1 = userService.getById(user.getId());
-		String url = null;
+		String url = "";
 		if (null!=user.getFingerprint() && !user.getFingerprint().equals("")) {
 			if (user.getFingerprint().length()>100) {
 				//指纹图片上传并返回url
@@ -289,7 +302,102 @@
 			}
 		}
 
+		//如果是离职
+		if (null!=user.getStatus()){
+			if (user.getStatus().equals(2)){
+				//修改派遣状态
+				user.setDispatch("1");
+				//同时将派遣记录中的派遣状态修改
+				//查询派遣记录(还在派遣中的)
+				Dispatcher dispatcher = new Dispatcher();
+				dispatcher.setUserIds(user.getId().toString());
+				dispatcher.setStatus(0);
+				List<Dispatcher> dispatcherList = dispatcherService.list(Condition.getQueryWrapper(dispatcher));
+				if (dispatcherList.size()>0){
+					dispatcherList.forEach(dispatcher1 -> {
+						dispatcher1.setStatus(1);
+						dispatcher1.setUpdateTime(new Date());
+						dispatcherService.updateById(dispatcher1);
+
+						String s1 =
+							"update sys_dispatcher set status = " + "'" + dispatcher1.getStatus() + "'"
+								+ ",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(dispatcher1.getUpdateTime()) + "'"
+								+ " " + "where id = " + "'" + dispatcher1.getId() + "'";
+						FtpUtil.sqlFileUpload(s1);
+					});
+				}
+
+				//查询当前用户是否有从业记录,没有的话新增,有就更新
+				//根据公司名查询单位
+				Dept dept = iDeptService.getById(user.getDeptId());
+				Experience experience = new Experience();
+				experience.setCompanyname(dept.getDeptName());
+				experience.setCardid(user.getCardid());
+				//按id降序
+				List<Experience> list = experienceService.list(Condition.getQueryWrapper(experience).orderByDesc("id"));
+				if (list.size()>0){
+					//如果有多条取第一条更新
+					Experience experience1 = list.get(0);
+					//设置离职时间
+					experience1.setDeparturetime(new Date());
+					//更新从业记录信息
+					experienceService.updateById(experience1);
+					//数据同步
+					String s1 =
+						"update sys_experience set departureTime = " + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience1.getDeparturetime()) + "'"
+							+ " " + "where id = " + "'" + experience1.getId() + "'";
+					FtpUtil.sqlFileUpload(s1);
+				}else {
+					//新增
+					if (null!=user.getRtime()){
+						experience.setEntrytime(user.getRtime());
+					}else {
+						experience.setEntrytime(new Date());
+					}
+					experience.setDeparturetime(new Date());
+					experience.setName(user.getRealName());
+					if (null!=user.getReasonForLeav() && !user.getReasonForLeav().equals("")){
+						experience.setLeaving(user.getReasonForLeav());
+					}
+					experience.setCardid(user.getCardid());
+					experience.setSecurityid(user.getId().toString());
+					//新增
+					experienceService.save(experience);
+
+					//内网同步
+					String s = "insert into sys_experience(id,name,entryTime,departureTime,leaving,cardId,companyname,securityId) " +
+						"values(" + "'" + experience.getId() + "'" +
+						"," + "'" + experience.getName() + "'" +
+						"," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience.getEntrytime()) + "'" +
+						"," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience.getDeparturetime()) + "'" +
+						"," + "'" + experience.getLeaving() + "'" +
+						"," + "'" + experience.getCardid() + "'" +
+						"," + "'" + experience.getCompanyname() + "'" +
+						"," + "'" + experience.getSecurityid() + "'"
+						+ ")";
+					FtpUtil.sqlFileUpload(s);
+				}
+
+				userService.updateById(user);
+				//内网更新
+				String s1 =
+					"update blade_user set status = " + "'" + user.getStatus() + "'"
+						+ " " + "where id = " + "'" + user.getId() + "'";
+				FtpUtil.sqlFileUpload(s1);
+				return R.success("修改成功");
+			}
+		}
+
+		//如果是异常标记
+		if (null!=user.getExaminationType() && !user.getExaminationType().equals("")){
+			if (user.getExaminationType().equals("1")) {
+				//吊销保安证
+				user.setHold("3");
+			}
+		}
+
 		user.setPassword(user1.getPassword());
+		user.setUpdateTime(new Date());
 		userService.updateById(user);
 		String rtime;
 		if (user.getRtime() == null) {
@@ -320,11 +428,84 @@
 				+ ",address = " + "'" + user.getAddress() + "'"
 				+ ",registered = " + "'" + user.getRegistered() + "'"
 				+ ",rtime = " + "'" + rtime + "'"
+				+ ",dispatch = " + "'" + user.getDispatch() + "'"
 				+ ",securitynumber = " + "'" + user.getSecuritynumber() + "'"
 				+ ",hold = " + "'" + user.getHold() + "'"
 				+ ",jurisdiction = " + "'" + user.getJurisdiction() + "'"
 				+ ",reason_for_leav = " + "'" + user.getReasonForLeav() + "'"
 				+ ",guncode = " + "'" + user.getGuncode() + "'"
+				+ ",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user.getUpdateTime()) + "'"
+				+ " " + "where id = " + "'" + user.getId() + "'";
+		FtpUtil.sqlFileUpload(s1);
+		return R.success("修改成功");
+	}
+
+
+	/**
+	 * 修改
+	 */
+	@PostMapping("/updateUserInfo")
+	public R updateUserInfo(@Valid @RequestBody UserVO user) throws Exception {
+		String url = null;
+		if (null!=user.getFingerprint() && !user.getFingerprint().equals("")) {
+			if (user.getFingerprint().length()>100) {
+				//指纹图片上传并返回url
+				String s = uploadBase64String(user);
+				String[] split = s.split(",");
+				user.setFingerprint(split[0]);
+				//内网指纹图片url
+				url = split[1];
+			}
+		}
+		user.setUpdateTime(new Date());
+		//更新
+		userService.updateById(user);
+
+		//生成签到记录
+		if (null!=user.getCandidateNo() && !user.getCandidateNo().equals("")){
+			//查询签到记录,如果已有,则更新,没有就新增
+			SignInRecords signInRecords = new SignInRecords();
+			signInRecords.setCandidateNo(user.getCandidateNo());
+			SignInRecords inRecordsServiceOne = signInRecordsService.getOne(Condition.getQueryWrapper(signInRecords));
+			//如果为null
+			if (null==inRecordsServiceOne){
+				//查询报名信息
+				TrainingRegistration trainingRegistration = new TrainingRegistration();
+				trainingRegistration.setCandidateNo(user.getCandidateNo());
+				TrainingRegistration one = trainingRegistrationService.getOne(Condition.getQueryWrapper(trainingRegistration));
+				//新增,数据封装
+				SignInRecords sign = new SignInRecords();
+				sign.setCreateTime(new Date());
+				sign.setUpdateTime(new Date());
+				sign.setCandidateNo(user.getCandidateNo());
+				sign.setUserId(user.getId());
+				sign.setApplyId(one.getId());
+				sign.setExamId(Long.parseLong(one.getTrainExamId()));
+				//新增
+				signInRecordsService.save(sign);
+			}else {
+				//更新
+				inRecordsServiceOne.setUpdateTime(new Date());
+				signInRecordsService.updateById(inRecordsServiceOne);
+			}
+		}
+
+		//内网同步
+		String s1 =
+			"update blade_user set account = " + "'" + user.getCardid() + "'"
+				+ ",real_name = " + "'" + user.getRealName() + "'"
+				+ ",avatar = " + "'" + user.getAvatar() + "'"
+				+ ",sex = " + "'" + user.getSex() + "'"
+				+ ",cardid = " + "'" + user.getCardid() + "'"
+				+ ",nation = " + "'" + user.getNation() + "'"
+				+ ",fingerprint = " + "'" + url + "'"
+				+ ",my_picture = " + "'" + user.getMyPicture() + "'"
+				+ ",address = " + "'" + user.getAddress() + "'"
+				+ ",registered = " + "'" + user.getRegistered() + "'"
+				+ ",securitynumber = " + "'" + user.getSecuritynumber() + "'"
+				+ ",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user.getUpdateTime()) + "'"
+				+ ",hold = " + "'" + user.getHold() + "'"
+				+ ",cell = " + "'" + user.getCell() + "'"
 				+ " " + "where id = " + "'" + user.getId() + "'";
 		FtpUtil.sqlFileUpload(s1);
 		return R.success("修改成功");
@@ -395,6 +576,7 @@
 	@PostMapping("/updatePaperTime")
 	public R updatePaperTime(@RequestBody User user) {
 		user.setPaperTime(new Date());
+		user.setUpdateTime(new Date());
 		userService.updateById(user);
 		String paperTime = null;
 		//发证日期处理
@@ -406,6 +588,7 @@
 		String s1 =
 			"update blade_user set paper_time = " + "'" + paperTime + "'"
 				+ ",user_type = " + "'" + user.getUserType() + "'"
+				+ ",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user.getUpdateTime()) + "'"
 				+ " " + "where id = " + "'" + user.getId() + "'";
 		FtpUtil.sqlFileUpload(s1);
 		return R.success("修改成功");
@@ -524,6 +707,18 @@
 	@ApiOperation(value = "导入用户", notes = "传入excel")
 	public R importSecurity(MultipartFile file, Integer isCovered,String deptId) {
 		SecurityImporter securityImporter = new SecurityImporter(userService, false,deptId);
+		ExcelUtil.save(file, securityImporter, SecurityExcel.class);
+		return R.success("操作成功");
+	}
+
+	/**
+	 * 导入保安员(test)
+	 */
+	@PostMapping("import-security-test")
+	@ApiOperationSupport(order = 12)
+	@ApiOperation(value = "导入用户", notes = "传入excel")
+	public R importSecurityTest(MultipartFile file, Integer isCovered,String deptId) {
+		SecurityImporterTest securityImporter = new SecurityImporterTest(userService, false,deptId);
 		ExcelUtil.save(file, securityImporter, SecurityExcel.class);
 		return R.success("操作成功");
 	}
@@ -812,12 +1007,44 @@
 		user.setExaminationType("0");
 		user.setAccount(user.getCardid());
 
-		Integer userCount = userService.selectCount(user.getAccount());
-		if (userCount > 0 && Func.isEmpty(user.getId())) {
-			throw new ServiceException(StringUtil.format("当前用户 [{}] 已存在!", user.getAccount()));
+//		Integer userCount = userService.selectCount(user.getAccount());
+		User user1 = new User();
+		user1.setIsDeleted(0);
+		user1.setStatus(1);
+		user1.setAccount(user.getCardid());
+		List<User> list = userService.list(Condition.getQueryWrapper(user1));
+
+		if (list.size() > 0 && Func.isEmpty(user.getId())) {
+			if (null!=user.getCell() && !user.getCell().equals("")) {
+				if (user.getCell().equals("2")){
+					list.forEach(user2 -> {
+						//判断是否在本单位,如果是本单位,则不能再次新增
+						if(!user2.getDeptId().equals(user.getDeptId())) {
+							user2.setStatus(2);
+							//先将原有人员离职  cell 1:手动录入  2:自动录入
+							user2.setUpdateTime(new Date());
+							userService.updateById(user2);
+							//内网同步
+							String s1 = "update blade_user set status = " + user2.getStatus() +
+								",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user2.getUpdateTime()) + "'" +
+								" where id = " + "'" + user2.getId() + "'";
+							FtpUtil.sqlFileUpload(s1);
+
+							//人员离职后修改派遣记录,修改从业记录
+							updateUserDispatcherExp(user2);
+						}else {
+							throw new ServiceException(StringUtil.format("当前用户 [{}] 已存在!", user.getAccount()));
+						}
+					});
+				}else {
+					throw new ServiceException(StringUtil.format("当前用户 [{}] 已存在!", user.getAccount()));
+				}
+			}else {
+				throw new ServiceException(StringUtil.format("当前用户 [{}] 已存在!", user.getAccount()));
+			}
 		}
 
-		String url = null;
+		String url = "";
 		if (null!=user.getFingerprint() && !user.getFingerprint().equals("")) {
 			if (user.getFingerprint().length()>100) {
 				String s = uploadBase64String(user);
@@ -842,22 +1069,38 @@
 			//取身份证号码后6位作为密码
 			user.setPassword(DigestUtil.encrypt(user.getCardid().substring(user.getCardid().length() - 6)));
 		}
+		user.setCreateTime(new Date());
 		user.setTenantId("000000");
 		//用户新增
 		boolean status = userService.save(user);
+
+		//从业记录新增
+		Experience experience = new Experience();
+
 		String rtime;
 		String paperTime;
 		if (user.getRtime() == null) {
 			rtime = null;
 		} else {
 			rtime = new SimpleDateFormat("yyyy-MM-dd").format(user.getRtime());
+			experience.setEntrytime(user.getRtime());
 		}
+
+		Dept dept = iDeptService.getById(user.getDeptId());
+		experience.setCardid(user.getCardid());
+		experience.setSecurityid(user.getId().toString());
+		experience.setCompanyname(dept.getDeptName());
+		experience.setName(user.getRealName());
+		experience.setPost("保安员");
+		experienceService.save(experience);
+
+
 		//发证日期处理
-		if (user.getPaperTime() == null) {
-			paperTime = "";
-		} else {
-			paperTime = new SimpleDateFormat("yyyy-MM-dd").format(user.getPaperTime());
-		}
+//		if (user.getPaperTime() == null) {
+//			paperTime = "";
+//		} else {
+//			paperTime = new SimpleDateFormat("yyyy-MM-dd").format(user.getPaperTime());
+//		}
 		//头像
 		if (null!=user.getAvatar() && !user.getAvatar().equals("")) {
 			user.setAvatar(FtpConfig.ip + user.getAvatar().substring(26));
@@ -867,7 +1110,7 @@
 			"id,tenant_id,account,password,name,real_name,avatar,email,phone,sex," +
 			"role_id,dept_id,cardid,nativePlace,nation,fingerprint,education," +
 			"politicaloutlook,healstats,height,address,registered,rtime," +
-			"securitynumber,hold,jurisdiction,examination_type,status,is_deleted,dispatch,guncode) " +
+			"securitynumber,hold,jurisdiction,examination_type,status,is_deleted,dispatch,guncode,create_time,cell) " +
 			"values(" + "'" + user.getId() + "'" +
 			"," + "'" + user.getTenantId() + "'" +
 			"," + "'" + user.getAccount() + "'" +
@@ -897,8 +1140,20 @@
 			"," + "'" + user.getExaminationType() + "'" +
 			"," + "'" + user.getStatus() + "'" +
 			"," + "'" + user.getIsDeleted() + "'" +
-			"," + "'" + user.getIsDeleted() + "'" +
-			"," + "'" + user.getGuncode() + "'" + ")";
+			"," + "'" + user.getDispatch() + "'" +
+			"," + "'" + user.getGuncode() + "'" +
+			"," + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(user.getCreateTime()) + "'" +
+			"," + "'" + user.getCell() + "'" + ");"+
+		"insert into sys_experience(id,name,post,entryTime," +
+			"cardId,companyname,securityId) " +
+			"values(" + "'" + experience.getId() + "'" + "," +
+			"'" + experience.getName() + "'" + "," +
+			"'" + experience.getPost() + "'" + "," +
+			"," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience.getEntrytime()) + "'" +
+			"," + "'" + experience.getCardid() + "'" +
+			"," + "'" + experience.getCompanyname() + "'" +
+			"," + "'" + experience.getSecurityid() + "'"
+			+ ")";
 		FtpUtil.sqlFileUpload(s);
 
 		//获取从业记录
@@ -917,6 +1172,82 @@
 //		}
 		//判断是否持证是否为空
 		return R.status(status);
+	}
+
+	/**
+	 * 修改派遣记录,修改从业记录
+	 * @param user
+	 */
+	private void updateUserDispatcherExp(User user) {
+		//修改派遣状态
+		user.setDispatch("1");
+		//同时将派遣记录中的派遣状态修改
+		//查询派遣记录(还在派遣中的)
+		Dispatcher dispatcher = new Dispatcher();
+		dispatcher.setUserIds(user.getId().toString());
+		dispatcher.setStatus(0);
+		List<Dispatcher> dispatcherList = dispatcherService.list(Condition.getQueryWrapper(dispatcher));
+		if (dispatcherList.size()>0){
+			dispatcherList.forEach(dispatcher1 -> {
+				dispatcher1.setStatus(1);
+				dispatcher1.setUpdateTime(new Date());
+				String s1 =
+					"update sys_dispatcher set status = " + "'" + dispatcher1.getStatus() + "'"
+						+ ",update_time = " + "'" + new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(dispatcher1.getUpdateTime()) + "'"
+						+ " " + "where id = " + "'" + dispatcher1.getId() + "'";
+				FtpUtil.sqlFileUpload(s1);
+			});
+		}
+
+		//查询当前用户是否有从业记录,没有的话新增,有就更新
+		//根据公司名查询单位
+		Dept dept = iDeptService.getById(user.getDeptId());
+		Experience experience = new Experience();
+		experience.setCompanyname(dept.getDeptName());
+		//按id降序
+		List<Experience> list = experienceService.list(Condition.getQueryWrapper(experience).orderByDesc("id"));
+		if (list.size()>0){
+			//如果有多条取第一条更新
+			Experience experience1 = list.get(0);
+			//设置离职时间
+			experience1.setDeparturetime(new Date());
+			//更新从业记录信息
+			experienceService.updateById(experience1);
+			//数据同步
+			String s1 =
+				"update sys_experience set departureTime = " + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience1.getDeparturetime()) + "'"
+					+ " " + "where id = " + "'" + experience1.getId() + "'";
+			FtpUtil.sqlFileUpload(s1);
+		}else {
+			//新增
+			if (null!=user.getRtime()){
+				experience.setEntrytime(user.getRtime());
+			}else {
+				experience.setEntrytime(new Date());
+			}
+			experience.setDeparturetime(new Date());
+			experience.setName(user.getRealName());
+			if (null!=user.getReasonForLeav() && !user.getReasonForLeav().equals("")){
+				experience.setLeaving(user.getReasonForLeav());
+			}
+			experience.setCardid(user.getCardid());
+			experience.setSecurityid(user.getId().toString());
+			//新增
+			experienceService.save(experience);
+
+			//内网同步
+			String s = "insert into sys_experience(id,name,entryTime,departureTime,leaving,cardId,companyname,securityId) " +
+				"values(" + "'" + experience.getId() + "'" + "," +
+				"'" + experience.getName() + "'" + "," +
+				"," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience.getEntrytime()) + "'" +
+				"," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(experience.getDeparturetime()) + "'" +
+				"," + "'" + experience.getLeaving() + "'" +
+				"," + "'" + experience.getCardid() + "'" +
+				"," + "'" + experience.getCompanyname() + "'" +
+				"," + "'" + experience.getSecurityid() + "'"
+				+ ")";
+			FtpUtil.sqlFileUpload(s);
+		}
 	}
 
 
@@ -962,4 +1293,27 @@
 		return R.data(user1);
 	}
 
+
+	/**
+	 * 保安员导出
+	 * @param response
+	 * @param user 查询条件
+	 */
+	@GetMapping("export-security-info")
+	public void exportSecurityInfo(HttpServletResponse response,UserVO user) throws IOException {
+		List<SecurityExcel> list = userService.exportSecurityInfo(user);
+		String fileName = null;
+		try {
+			response.setContentType("application/vnd.ms-excel");
+			response.setCharacterEncoding(org.apache.commons.codec.Charsets.UTF_8.name());
+			fileName = URLEncoder.encode("保安员数据导出"+DateUtil.time(), Charsets.UTF_8.name());
+			response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".xlsx");
+			//修改单元格格式为文本格式
+			EasyExcel.write(response.getOutputStream(), SecurityExcel.class).sheet("保安员数据表").registerWriteHandler(new RowWriteHandler()).doWrite(list);
+		} catch (Throwable var6) {
+			throw var6;
+		}
+//		ExcelUtil.export(response, "保安员导入数据模板", "保安员数据表", list, UserExcel.class);
+	}
+
 }

--
Gitblit v1.9.3