|
|
|
@ -14,16 +14,15 @@ import com.glxp.api.req.auth.AuthUserSaveRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.res.auth.AuthAdminResponse;
|
|
|
|
|
import com.glxp.api.res.auth.DeptUserResponse;
|
|
|
|
|
import com.glxp.api.service.auth.AuthAdminService;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerInfoService;
|
|
|
|
|
import com.glxp.api.service.auth.DeptUserService;
|
|
|
|
|
import com.glxp.api.service.auth.ISysRoleService;
|
|
|
|
|
import com.glxp.api.service.auth.*;
|
|
|
|
|
import com.glxp.api.util.PasswordUtils;
|
|
|
|
|
import com.glxp.api.util.StreamUtils;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.util.StringUtils;
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
import org.codehaus.groovy.util.StringUtil;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
|
@ -173,6 +172,12 @@ public class SysUserController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
authAdmin.setCustomerId(curUser.getCustomerId());
|
|
|
|
|
authAdmin.setLastModifyTime(new Date());
|
|
|
|
|
//先默认插入部门 仓库
|
|
|
|
|
//通过仓库找到对应部门
|
|
|
|
|
String pid = invWarehouseService.selectParentIdByCode(authUserSaveRequest.getLocInvCode());
|
|
|
|
|
authAdmin.setLocDeptCode(pid);
|
|
|
|
|
authAdmin.setLocInvCode(authUserSaveRequest.getLocInvCode());
|
|
|
|
|
|
|
|
|
|
boolean b = userService.insertAuthAdmin(authAdmin);
|
|
|
|
|
authAdmin = userService.findByUserName(authAdmin.getUserName());
|
|
|
|
|
if (!b) {
|
|
|
|
@ -205,6 +210,15 @@ public class SysUserController extends BaseController {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 插入仓库
|
|
|
|
|
if (StringUtils.isNotBlank(authUserSaveRequest.getLocInvCode())) {
|
|
|
|
|
WarehouseUserEntity warehouseUserEntity = new WarehouseUserEntity();
|
|
|
|
|
warehouseUserEntity.setCode(authUserSaveRequest.getLocInvCode());
|
|
|
|
|
warehouseUserEntity.setUsername(authUserSaveRequest.getUserName());
|
|
|
|
|
warehouseUserEntity.setUserid(authAdmin.getId());
|
|
|
|
|
warehouseUserService.insert(warehouseUserEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Map<String, Long> res = new HashMap<>();
|
|
|
|
|
res.put("id", authAdmin.getId());
|
|
|
|
|
return ResultVOUtils.success(res);
|
|
|
|
@ -214,6 +228,12 @@ public class SysUserController extends BaseController {
|
|
|
|
|
@Resource
|
|
|
|
|
DeptUserService deptUserService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
WarehouseUserService warehouseUserService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
InvWarehouseService invWarehouseService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 修改用户
|
|
|
|
|
*/
|
|
|
|
|