forked from integrated_whb/integrated_whb
优化BUG
parent
adf706ba76
commit
14261c4f45
src/main
java/com/zcloud
controller
comprehensive
eduStudy
scheduling
mapper/datasource/system
service/system/impl
resources/mybatis/datasource/system
|
@ -12,7 +12,9 @@ import com.zcloud.util.*;
|
||||||
import freemarker.template.SimpleDate;
|
import freemarker.template.SimpleDate;
|
||||||
import org.apache.commons.lang.ObjectUtils;
|
import org.apache.commons.lang.ObjectUtils;
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
|
import org.apache.shiro.util.CollectionUtils;
|
||||||
import org.jose4j.lang.StringUtil;
|
import org.jose4j.lang.StringUtil;
|
||||||
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
@ -23,6 +25,7 @@ import org.springframework.web.multipart.MultipartFile;
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@Controller
|
@Controller
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.zcloud.controller.eduApp;
|
package com.zcloud.controller.eduApp;
|
||||||
|
|
||||||
import com.zcloud.controller.base.BaseController;
|
import com.zcloud.controller.base.BaseController;
|
||||||
|
import com.zcloud.mapper.datasource.system.UsersMapper;
|
||||||
import com.zcloud.mapper.dsno3.eduStudy.StudentMapper;
|
import com.zcloud.mapper.dsno3.eduStudy.StudentMapper;
|
||||||
import com.zcloud.service.eduArchives.ArchivesStudentService;
|
import com.zcloud.service.eduArchives.ArchivesStudentService;
|
||||||
import com.zcloud.service.eduStudy.FaceImgLogService;
|
import com.zcloud.service.eduStudy.FaceImgLogService;
|
||||||
|
@ -55,6 +56,9 @@ public class AppUsersCacheController extends BaseController {
|
||||||
@Autowired
|
@Autowired
|
||||||
private UserInfoService userInfoService;
|
private UserInfoService userInfoService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private UsersMapper usersMapper;
|
||||||
|
|
||||||
//@RequestMapping("/getUser")
|
//@RequestMapping("/getUser")
|
||||||
public Response getUser() throws Exception {
|
public Response getUser() throws Exception {
|
||||||
Response response = Response.getResponse();
|
Response response = Response.getResponse();
|
||||||
|
@ -166,6 +170,7 @@ public class AppUsersCacheController extends BaseController {
|
||||||
user.put("PORTRAIT", Const.FILEPATHFACE + ffile + "/" + fileName);
|
user.put("PORTRAIT", Const.FILEPATHFACE + ffile + "/" + fileName);
|
||||||
userInfoService.editUserInfo(user);
|
userInfoService.editUserInfo(user);
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
|
usersMapper.editFace(pd);
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class PostTypeController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 删除
|
* 删除
|
||||||
*
|
*
|
||||||
* @param out
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/delete")
|
@RequestMapping(value = "/delete")
|
||||||
|
|
|
@ -96,7 +96,7 @@ public class ShiftWorkRulesController extends BaseController {
|
||||||
pd = this.getPageData();
|
pd = this.getPageData();
|
||||||
pd.put("SHIFTDUTYONE", pd.get("SHIFTWORKRULES_ID"));
|
pd.put("SHIFTDUTYONE", pd.get("SHIFTWORKRULES_ID"));
|
||||||
int count = shiftworkrulesService.isUseOne(pd);
|
int count = shiftworkrulesService.isUseOne(pd);
|
||||||
if(count == '0') {
|
if(count == 0) {
|
||||||
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人
|
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人
|
||||||
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
|
||||||
shiftWorkPeriodService.deleteByUpRules(pd);
|
shiftWorkPeriodService.deleteByUpRules(pd);
|
||||||
|
|
|
@ -120,7 +120,7 @@ public class FHlogController extends BaseController {
|
||||||
String STARTTIME = pd.getString("STARTTIME"); //开始时间
|
String STARTTIME = pd.getString("STARTTIME"); //开始时间
|
||||||
String ENDTIME = pd.getString("ENDTIME"); //结束时间
|
String ENDTIME = pd.getString("ENDTIME"); //结束时间
|
||||||
if(Tools.notEmpty(STARTTIME))npd.put("STARTTIME", STARTTIME+" 00:00:00");
|
if(Tools.notEmpty(STARTTIME))npd.put("STARTTIME", STARTTIME+" 00:00:00");
|
||||||
if(Tools.notEmpty(ENDTIME))npd.put("ENDTIME", ENDTIME+" 00:00:00");
|
if(Tools.notEmpty(ENDTIME))npd.put("ENDTIME", ENDTIME+" 23:59:59");
|
||||||
npd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
npd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
||||||
npd.put("ISMAIN", Jurisdiction.getIS_MAIN());
|
npd.put("ISMAIN", Jurisdiction.getIS_MAIN());
|
||||||
npd.put("ISSUPERVISE", Jurisdiction.getISSUPERVISE());
|
npd.put("ISSUPERVISE", Jurisdiction.getISSUPERVISE());
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
package com.zcloud.controller.system;
|
package com.zcloud.controller.system;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.collection.CollectionUtil;
|
import cn.hutool.core.collection.CollectionUtil;
|
||||||
import cn.hutool.core.util.ObjectUtil;
|
import cn.hutool.core.util.ObjectUtil;
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
|
import com.mchange.v2.codegen.bean.BeangenUtils;
|
||||||
import com.zcloud.controller.base.BaseController;
|
import com.zcloud.controller.base.BaseController;
|
||||||
import com.zcloud.entity.EmployeeData;
|
import com.zcloud.entity.EmployeeData;
|
||||||
import com.zcloud.entity.Page;
|
import com.zcloud.entity.Page;
|
||||||
|
@ -23,6 +25,7 @@ import org.apache.commons.lang.ObjectUtils;
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||||
import org.apache.shiro.crypto.hash.SimpleHash;
|
import org.apache.shiro.crypto.hash.SimpleHash;
|
||||||
|
import org.apache.shiro.util.CollectionUtils;
|
||||||
import org.checkerframework.checker.units.qual.C;
|
import org.checkerframework.checker.units.qual.C;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
|
@ -95,7 +98,7 @@ public class UsersController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 根据卡号找人信息
|
* 根据卡号找人信息
|
||||||
*
|
*
|
||||||
* @param page
|
* @param
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -110,7 +113,7 @@ public class UsersController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 根据USERID找人
|
* 根据USERID找人
|
||||||
*
|
*
|
||||||
* @param page
|
* @param
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -121,7 +124,7 @@ public class UsersController extends BaseController {
|
||||||
String errInfo = "success";
|
String errInfo = "success";
|
||||||
PageData pd = this.getPageData();
|
PageData pd = this.getPageData();
|
||||||
pd = usersService.getUserByUserId(pd);
|
pd = usersService.getUserByUserId(pd);
|
||||||
map.put("pd",pd);
|
map.put("pd", pd);
|
||||||
map.put("result", errInfo);
|
map.put("result", errInfo);
|
||||||
return map;
|
return map;
|
||||||
// PageData pageData = getPageData();
|
// PageData pageData = getPageData();
|
||||||
|
@ -160,7 +163,6 @@ public class UsersController extends BaseController {
|
||||||
List<PageData> userList = usersService.userlistPage(page); //列出用户列表
|
List<PageData> userList = usersService.userlistPage(page); //列出用户列表
|
||||||
pd.put("ROLE_ID", Jurisdiction.getVIPLEVEL());
|
pd.put("ROLE_ID", Jurisdiction.getVIPLEVEL());
|
||||||
List<Role> roleList = roleService.listAllRolesByPId(pd); //列出所有系统用户角色
|
List<Role> roleList = roleService.listAllRolesByPId(pd); //列出所有系统用户角色
|
||||||
|
|
||||||
map.put("userList", userList);
|
map.put("userList", userList);
|
||||||
map.put("roleList", roleList);
|
map.put("roleList", roleList);
|
||||||
map.put("ROLE_ID", ROLE_ID);
|
map.put("ROLE_ID", ROLE_ID);
|
||||||
|
@ -727,6 +729,7 @@ public class UsersController extends BaseController {
|
||||||
map.put("result", errInfo); //返回结果
|
map.put("result", errInfo); //返回结果
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断用户名是否存在
|
* 判断用户名是否存在
|
||||||
*
|
*
|
||||||
|
@ -2215,7 +2218,6 @@ public class UsersController extends BaseController {
|
||||||
*
|
*
|
||||||
* @param parentId 部门父节点id
|
* @param parentId 部门父节点id
|
||||||
* @param departMap 全部部门信息
|
* @param departMap 全部部门信息
|
||||||
* @param valName 部门名称
|
|
||||||
* @return 从子节点开始往上循序
|
* @return 从子节点开始往上循序
|
||||||
*/
|
*/
|
||||||
public String getParentName(String parentId, Map<String, Object> departMap) {
|
public String getParentName(String parentId, Map<String, Object> departMap) {
|
||||||
|
@ -2253,7 +2255,7 @@ public class UsersController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 查询公司所有用户
|
* 查询公司所有用户
|
||||||
*
|
*
|
||||||
* @param page
|
* @param
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@RequestMapping(value = "/listUserByCorp")
|
@RequestMapping(value = "/listUserByCorp")
|
||||||
|
@ -2537,7 +2539,7 @@ public class UsersController extends BaseController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
c.put("ALLOW_QUALIFICATION", (ALLOW_QUALIFICATION.length() < 1 ? "" : ALLOW_QUALIFICATION.substring(0, ALLOW_QUALIFICATION.length()-1)));
|
c.put("ALLOW_QUALIFICATION", (ALLOW_QUALIFICATION.length() < 1 ? "" : ALLOW_QUALIFICATION.substring(0, ALLOW_QUALIFICATION.length() - 1)));
|
||||||
}
|
}
|
||||||
if (Tools.notEmpty(pd.getString("CORPINFO_ID"))) {
|
if (Tools.notEmpty(pd.getString("CORPINFO_ID"))) {
|
||||||
PageData dept = new PageData();
|
PageData dept = new PageData();
|
||||||
|
@ -2613,7 +2615,7 @@ public class UsersController extends BaseController {
|
||||||
@Transactional
|
@Transactional
|
||||||
@LogAnno(menuType = "企业信息", menuServer = "从业人员", instructionsOperate = "从业人员", instructionsType = "新增")
|
@LogAnno(menuType = "企业信息", menuServer = "从业人员", instructionsOperate = "从业人员", instructionsType = "新增")
|
||||||
public Object setPractitionerAdd(
|
public Object setPractitionerAdd(
|
||||||
@RequestParam(value="imgFiles",required=false) MultipartFile[] imgFiles) throws Exception {
|
@RequestParam(value = "imgFiles", required = false) MultipartFile[] imgFiles) throws Exception {
|
||||||
Map<String, Object> map = new HashMap<>();
|
Map<String, Object> map = new HashMap<>();
|
||||||
PageData pd = this.getPageData();
|
PageData pd = this.getPageData();
|
||||||
try {
|
try {
|
||||||
|
@ -2629,6 +2631,7 @@ public class UsersController extends BaseController {
|
||||||
/**
|
/**
|
||||||
* 去修改用户页面(从系统用户页面修改)
|
* 去修改用户页面(从系统用户页面修改)
|
||||||
* // goEditUser
|
* // goEditUser
|
||||||
|
*
|
||||||
* @return
|
* @return
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
|
@ -2716,7 +2719,7 @@ public class UsersController extends BaseController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
c.put("ALLOW_QUALIFICATION", ALLOW_QUALIFICATION.length() < 1 ? "" : ALLOW_QUALIFICATION.substring(0, ALLOW_QUALIFICATION.length()-1));
|
c.put("ALLOW_QUALIFICATION", ALLOW_QUALIFICATION.length() < 1 ? "" : ALLOW_QUALIFICATION.substring(0, ALLOW_QUALIFICATION.length() - 1));
|
||||||
}
|
}
|
||||||
//获取岗位下拉
|
//获取岗位下拉
|
||||||
PageData post = new PageData();
|
PageData post = new PageData();
|
||||||
|
@ -2743,10 +2746,10 @@ public class UsersController extends BaseController {
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
@LogAnno(menuType = "企业信息", menuServer = "从业人员", instructionsOperate = "从业人员", instructionsType = "修改用户(系统用户列表修改)")
|
@LogAnno(menuType = "企业信息", menuServer = "从业人员", instructionsOperate = "从业人员", instructionsType = "修改用户(系统用户列表修改)")
|
||||||
public Object setPractitionerEdit(
|
public Object setPractitionerEdit(
|
||||||
@RequestParam(value="idCardFrontFiles",required=false) MultipartFile idCardFrontFiles,
|
@RequestParam(value = "idCardFrontFiles", required = false) MultipartFile idCardFrontFiles,
|
||||||
@RequestParam(value="idCardBackFiles",required=false) MultipartFile idCardBackFiles,
|
@RequestParam(value = "idCardBackFiles", required = false) MultipartFile idCardBackFiles,
|
||||||
@RequestParam(value="driverLicenseFiles",required=false) MultipartFile driverLicenseFiles,
|
@RequestParam(value = "driverLicenseFiles", required = false) MultipartFile driverLicenseFiles,
|
||||||
@RequestParam(value="qualificationCertificateFiles",required=false) MultipartFile qualificationCertificateFiles
|
@RequestParam(value = "qualificationCertificateFiles", required = false) MultipartFile qualificationCertificateFiles
|
||||||
) throws Exception {
|
) throws Exception {
|
||||||
Map<String, Object> map = new HashMap<String, Object>();
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
String errInfo = "success";
|
String errInfo = "success";
|
||||||
|
@ -2771,7 +2774,7 @@ public class UsersController extends BaseController {
|
||||||
if (pd.getString("PASSWORD") != null && !"".equals(pd.getString("PASSWORD"))) {
|
if (pd.getString("PASSWORD") != null && !"".equals(pd.getString("PASSWORD"))) {
|
||||||
pd.put("PASSWORD", new SimpleHash("SHA-1", pd.getString("USERNAME"), pd.getString("PASSWORD")).toString());
|
pd.put("PASSWORD", new SimpleHash("SHA-1", pd.getString("USERNAME"), pd.getString("PASSWORD")).toString());
|
||||||
}
|
}
|
||||||
if(!StringUtils.isEmpty(pd.getString("periodStr"))) {
|
if (!StringUtils.isEmpty(pd.getString("periodStr"))) {
|
||||||
String[] periodStrs = pd.getString("periodStr").split(",");
|
String[] periodStrs = pd.getString("periodStr").split(",");
|
||||||
pd.put("DURATION", periodStrs[0]);
|
pd.put("DURATION", periodStrs[0]);
|
||||||
pd.put("WORKSTATUS", periodStrs[1]);
|
pd.put("WORKSTATUS", periodStrs[1]);
|
||||||
|
@ -2933,18 +2936,18 @@ public class UsersController extends BaseController {
|
||||||
PageData qualificationCertificate = new PageData();
|
PageData qualificationCertificate = new PageData();
|
||||||
Warden.initData(qualificationCertificate, "pc", pd);
|
Warden.initData(qualificationCertificate, "pc", pd);
|
||||||
qualificationCertificate.put("ID_PHOTO_FRONT", pd.getString("QUALIFICATION_CERTIFICATE"));
|
qualificationCertificate.put("ID_PHOTO_FRONT", pd.getString("QUALIFICATION_CERTIFICATE"));
|
||||||
if (null != idCardFrontFiles && !idCardFrontFiles.isEmpty()){
|
if (null != idCardFrontFiles && !idCardFrontFiles.isEmpty()) {
|
||||||
//保存签名文件
|
//保存签名文件
|
||||||
String ffile = "practitioner"+ "/" +DateUtil.getYear()+ "/" +DateUtil.getMonth()+ "/" +DateUtil.getOnlyDay();
|
String ffile = "practitioner" + "/" + DateUtil.getYear() + "/" + DateUtil.getMonth() + "/" + DateUtil.getOnlyDay();
|
||||||
String fileName = UuidUtil.get32UUID() + idCardFrontFiles.getOriginalFilename().substring(idCardFrontFiles.getOriginalFilename().lastIndexOf("."));
|
String fileName = UuidUtil.get32UUID() + idCardFrontFiles.getOriginalFilename().substring(idCardFrontFiles.getOriginalFilename().lastIndexOf("."));
|
||||||
smb.sshSftp(idCardFrontFiles, fileName, Const.FILEPATHFILE + ffile);
|
smb.sshSftp(idCardFrontFiles, fileName, Const.FILEPATHFILE + ffile);
|
||||||
idCard.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
idCard.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
||||||
}
|
}
|
||||||
pd.put("ID_PHOTO", idCard.getString("ID_PHOTO_FRONT"));
|
pd.put("ID_PHOTO", idCard.getString("ID_PHOTO_FRONT"));
|
||||||
userInfoService.editPractitioner(pd);
|
userInfoService.editPractitioner(pd);
|
||||||
if (null != idCardBackFiles && !idCardBackFiles.isEmpty()){
|
if (null != idCardBackFiles && !idCardBackFiles.isEmpty()) {
|
||||||
//保存签名文件
|
//保存签名文件
|
||||||
String ffile = "practitioner"+ "/" +DateUtil.getYear()+ "/" +DateUtil.getMonth()+ "/" +DateUtil.getOnlyDay();
|
String ffile = "practitioner" + "/" + DateUtil.getYear() + "/" + DateUtil.getMonth() + "/" + DateUtil.getOnlyDay();
|
||||||
String fileName = UuidUtil.get32UUID() + idCardBackFiles.getOriginalFilename().substring(idCardBackFiles.getOriginalFilename().lastIndexOf("."));
|
String fileName = UuidUtil.get32UUID() + idCardBackFiles.getOriginalFilename().substring(idCardBackFiles.getOriginalFilename().lastIndexOf("."));
|
||||||
smb.sshSftp(idCardBackFiles, fileName, Const.FILEPATHFILE + ffile);
|
smb.sshSftp(idCardBackFiles, fileName, Const.FILEPATHFILE + ffile);
|
||||||
idCard.put("ID_PHOTO_BACK", Const.FILEPATHFILE + ffile + "/" + fileName);
|
idCard.put("ID_PHOTO_BACK", Const.FILEPATHFILE + ffile + "/" + fileName);
|
||||||
|
@ -2961,9 +2964,9 @@ public class UsersController extends BaseController {
|
||||||
userCertificateService.editByUserId(idCard);
|
userCertificateService.editByUserId(idCard);
|
||||||
|
|
||||||
// 驾驶证
|
// 驾驶证
|
||||||
if (null != driverLicenseFiles && !driverLicenseFiles.isEmpty()){
|
if (null != driverLicenseFiles && !driverLicenseFiles.isEmpty()) {
|
||||||
//保存签名文件
|
//保存签名文件
|
||||||
String ffile = "practitioner"+ "/" +DateUtil.getYear()+ "/" +DateUtil.getMonth()+ "/" +DateUtil.getOnlyDay();
|
String ffile = "practitioner" + "/" + DateUtil.getYear() + "/" + DateUtil.getMonth() + "/" + DateUtil.getOnlyDay();
|
||||||
String fileName = UuidUtil.get32UUID() + driverLicenseFiles.getOriginalFilename().substring(driverLicenseFiles.getOriginalFilename().lastIndexOf("."));
|
String fileName = UuidUtil.get32UUID() + driverLicenseFiles.getOriginalFilename().substring(driverLicenseFiles.getOriginalFilename().lastIndexOf("."));
|
||||||
smb.sshSftp(driverLicenseFiles, fileName, Const.FILEPATHFILE + ffile);
|
smb.sshSftp(driverLicenseFiles, fileName, Const.FILEPATHFILE + ffile);
|
||||||
driverLicense.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
driverLicense.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
||||||
|
@ -2994,8 +2997,8 @@ public class UsersController extends BaseController {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 道路运输从业资格证
|
// 道路运输从业资格证
|
||||||
if (null != qualificationCertificateFiles && !qualificationCertificateFiles.isEmpty()){
|
if (null != qualificationCertificateFiles && !qualificationCertificateFiles.isEmpty()) {
|
||||||
String ffile = "practitioner"+ "/" +DateUtil.getYear()+ "/" +DateUtil.getMonth()+ "/" +DateUtil.getOnlyDay();
|
String ffile = "practitioner" + "/" + DateUtil.getYear() + "/" + DateUtil.getMonth() + "/" + DateUtil.getOnlyDay();
|
||||||
String fileName = UuidUtil.get32UUID() + qualificationCertificateFiles.getOriginalFilename().substring(qualificationCertificateFiles.getOriginalFilename().lastIndexOf("."));
|
String fileName = UuidUtil.get32UUID() + qualificationCertificateFiles.getOriginalFilename().substring(qualificationCertificateFiles.getOriginalFilename().lastIndexOf("."));
|
||||||
smb.sshSftp(qualificationCertificateFiles, fileName, Const.FILEPATHFILE + ffile);
|
smb.sshSftp(qualificationCertificateFiles, fileName, Const.FILEPATHFILE + ffile);
|
||||||
qualificationCertificate.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
qualificationCertificate.put("ID_PHOTO_FRONT", Const.FILEPATHFILE + ffile + "/" + fileName);
|
||||||
|
@ -3028,8 +3031,8 @@ public class UsersController extends BaseController {
|
||||||
data.put("USER_ID", pd.getString("USER_ID"));
|
data.put("USER_ID", pd.getString("USER_ID"));
|
||||||
data.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
data.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
||||||
List<PageData> userCorpList = userCorpService.listAll(data);
|
List<PageData> userCorpList = userCorpService.listAll(data);
|
||||||
if(!CollectionUtil.isEmpty(userCorpList)) {
|
if (!CollectionUtil.isEmpty(userCorpList)) {
|
||||||
if(StringUtils.equals(userCorpList.get(0).getString("APPLY_STATUS"), "-1")) {
|
if (StringUtils.equals(userCorpList.get(0).getString("APPLY_STATUS"), "-1")) {
|
||||||
userCorpList.get(0).put("APPLY_STATUS", "0");
|
userCorpList.get(0).put("APPLY_STATUS", "0");
|
||||||
userCorpList.get(0).put("TITLE", pd.getString("TITLE"));
|
userCorpList.get(0).put("TITLE", pd.getString("TITLE"));
|
||||||
userCorpList.get(0).put("DUTIES", pd.getString("DUTIES"));
|
userCorpList.get(0).put("DUTIES", pd.getString("DUTIES"));
|
||||||
|
@ -3038,7 +3041,7 @@ public class UsersController extends BaseController {
|
||||||
userCorpList.get(0).put("ENTRY_DATE", pd.getString("ENTRY_DATE"));
|
userCorpList.get(0).put("ENTRY_DATE", pd.getString("ENTRY_DATE"));
|
||||||
userCorpList.get(0).put("SHIFTDUTYONE", pd.getString("SHIFTDUTYONE"));
|
userCorpList.get(0).put("SHIFTDUTYONE", pd.getString("SHIFTDUTYONE"));
|
||||||
userCorpList.get(0).put("SHIFTDUTYTWO", pd.getString("SHIFTDUTYTWO"));
|
userCorpList.get(0).put("SHIFTDUTYTWO", pd.getString("SHIFTDUTYTWO"));
|
||||||
if(!StringUtils.isEmpty(pd.getString("periodStr"))) {
|
if (!StringUtils.isEmpty(pd.getString("periodStr"))) {
|
||||||
String[] periodStrs = pd.getString("periodStr").split(",");
|
String[] periodStrs = pd.getString("periodStr").split(",");
|
||||||
userCorpList.get(0).put("DURATION", periodStrs[0]);
|
userCorpList.get(0).put("DURATION", periodStrs[0]);
|
||||||
userCorpList.get(0).put("WORKSTATUS", periodStrs[1]);
|
userCorpList.get(0).put("WORKSTATUS", periodStrs[1]);
|
||||||
|
@ -3052,7 +3055,6 @@ public class UsersController extends BaseController {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@RequestMapping("/getTrafficPenaltyUserList")
|
@RequestMapping("/getTrafficPenaltyUserList")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public Object getTrafficPenaltyUserList(Page page) throws Exception {
|
public Object getTrafficPenaltyUserList(Page page) throws Exception {
|
||||||
|
@ -3357,7 +3359,7 @@ public class UsersController extends BaseController {
|
||||||
FileUtils.deleteQuietly(tempFile);//删除临时文件
|
FileUtils.deleteQuietly(tempFile);//删除临时文件
|
||||||
} else {
|
} else {
|
||||||
map.put("result", "error"); //返回结果
|
map.put("result", "error"); //返回结果
|
||||||
if(listPd.size() > 1000){
|
if (listPd.size() > 1000) {
|
||||||
map.put("msg", "Excel数据大于1000条不支持上传,请检查数据后,重新上传!");
|
map.put("msg", "Excel数据大于1000条不支持上传,请检查数据后,重新上传!");
|
||||||
} else {
|
} else {
|
||||||
map.put("msg", "Excel数据为空,请检查数据后,重新上传!");
|
map.put("msg", "Excel数据为空,请检查数据后,重新上传!");
|
||||||
|
@ -3416,7 +3418,7 @@ public class UsersController extends BaseController {
|
||||||
List<PageData> resultList = new ArrayList<>();
|
List<PageData> resultList = new ArrayList<>();
|
||||||
List<PageData> userList = usersService.getUserNoCorpinfoListAll(page); // 所有无企业信息的所有用户
|
List<PageData> userList = usersService.getUserNoCorpinfoListAll(page); // 所有无企业信息的所有用户
|
||||||
Map<String, List<PageData>> dataList = userList.stream().collect(Collectors.groupingBy(data -> data.getString("USER_ID")));
|
Map<String, List<PageData>> dataList = userList.stream().collect(Collectors.groupingBy(data -> data.getString("USER_ID")));
|
||||||
dataList.forEach((key,value) -> {
|
dataList.forEach((key, value) -> {
|
||||||
resultList.add(value.get(0));
|
resultList.add(value.get(0));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -304,4 +304,5 @@ public interface UsersMapper {
|
||||||
|
|
||||||
List<PageData> getUserNoCorpinfoListAll(Page page);
|
List<PageData> getUserNoCorpinfoListAll(Page page);
|
||||||
|
|
||||||
|
void editFace(PageData pd);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1344,14 +1344,14 @@ public class UsersServiceImpl implements UsersService {
|
||||||
pd.put("USER_ID",userId);
|
pd.put("USER_ID",userId);
|
||||||
usersMapper.editUser(pd);
|
usersMapper.editUser(pd);
|
||||||
return ReturnMap.ok();*/
|
return ReturnMap.ok();*/
|
||||||
if (pd.get("USERAVATARURL") != null && !pd.getString("USERAVATARURL").equals("")) {
|
/*if (pd.get("USERAVATARURL") != null && !pd.getString("USERAVATARURL").equals("")) {
|
||||||
String USERAVATARURL64 = ImageAnd64Binary.zipBase64(pd.getString("USERAVATARURL"));
|
String USERAVATARURL64 = ImageAnd64Binary.zipBase64(pd.getString("USERAVATARURL"));
|
||||||
try {
|
try {
|
||||||
FaceUtil.compareFace(pd.getString("USERAVATARURL"), pd.getString("USERAVATARURL"));
|
FaceUtil.compareFace(pd.getString("USERAVATARURL"), pd.getString("USERAVATARURL"));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return ReturnMap.ok("1");
|
return ReturnMap.ok("1");
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
/*if (!IdcardUtils.validateCard(pd.getString("USER_ID_CARD"))) {
|
/*if (!IdcardUtils.validateCard(pd.getString("USER_ID_CARD"))) {
|
||||||
return ReturnMap.error("身份证号校验不通过,请核对信息");
|
return ReturnMap.error("身份证号校验不通过,请核对信息");
|
||||||
}*/
|
}*/
|
||||||
|
|
|
@ -2061,4 +2061,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
order by c.CREATTIME desc
|
order by c.CREATTIME desc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<update id="editFace" parameterType="pd" >
|
||||||
|
update
|
||||||
|
sys_user
|
||||||
|
SET
|
||||||
|
USER_ID = #{USER_ID}
|
||||||
|
<if test="USERAVATARPREFIX != null and USERAVATARPREFIX != ''"><!-- 关键词检索 -->
|
||||||
|
, USERAVATARPREFIX = #{USERAVATARPREFIX}
|
||||||
|
</if>
|
||||||
|
<if test="USERAVATARURL != null and USERAVATARURL != ''"><!-- 关键词检索 -->
|
||||||
|
, USERAVATARURL = #{USERAVATARURL}
|
||||||
|
</if>
|
||||||
|
where
|
||||||
|
USER_ID = #{USER_ID}
|
||||||
|
</update>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
Loading…
Reference in New Issue