|
|
|
@ -9,12 +9,16 @@ import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
import com.glxp.api.entity.auth.AuthAdmin;
|
|
|
|
|
import com.glxp.api.entity.auth.DeptEntity;
|
|
|
|
|
import com.glxp.api.entity.auth.DeptUserEntity;
|
|
|
|
|
import com.glxp.api.entity.auth.InvWarehouseEntity;
|
|
|
|
|
import com.glxp.api.entity.system.SystemParamConfigEntity;
|
|
|
|
|
import com.glxp.api.req.auth.FilterDeptUserReqeust;
|
|
|
|
|
import com.glxp.api.req.auth.FilterInvWarehouseRequest;
|
|
|
|
|
import com.glxp.api.req.system.DeleteRequest;
|
|
|
|
|
import com.glxp.api.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.service.auth.CustomerService;
|
|
|
|
|
import com.glxp.api.service.auth.DeptService;
|
|
|
|
|
import com.glxp.api.service.auth.DeptUserService;
|
|
|
|
|
import com.glxp.api.service.auth.InvWarehouseService;
|
|
|
|
|
import com.glxp.api.service.system.SystemParamConfigService;
|
|
|
|
|
import org.springframework.validation.BindingResult;
|
|
|
|
@ -226,6 +230,11 @@ public class DeptController {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//判断状态
|
|
|
|
|
String msg = isCheckStatus(deptEntity.getStatus(), deptEntity);
|
|
|
|
|
if (msg != "") {
|
|
|
|
|
return ResultVOUtils.error(999, msg);
|
|
|
|
|
}
|
|
|
|
|
List<DeptEntity> deptEntityList = deptService.selectByNameList(deptEntity.getName());
|
|
|
|
|
if (deptEntityList != null && deptEntityList.size() > 0) {
|
|
|
|
|
for (DeptEntity obj : deptEntityList) {
|
|
|
|
@ -244,6 +253,8 @@ public class DeptController {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
DeptUserService deptUserService;
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/spms/inv/warehouse/delete")
|
|
|
|
|
public BaseResponse delete(@RequestBody DeleteRequest deleteRequest) {
|
|
|
|
@ -252,18 +263,27 @@ public class DeptController {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//todo 代码未迁移完,后续记得修改
|
|
|
|
|
DeptEntity deptEntity = deptService.selectById(deleteRequest.getId());
|
|
|
|
|
if (deptEntity.getLevel() != null && deptEntity.getLevel() == 1) {
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败,一级部门不允许删除!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<InvWarehouseEntity> invSubWarehouseEntities = invWarehouseService.findByParentId(deptEntity.getCode());
|
|
|
|
|
if (CollUtil.isNotEmpty(invSubWarehouseEntities)) {
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败,请先移除该部门关联仓库信息!");
|
|
|
|
|
}
|
|
|
|
|
FilterDeptUserReqeust filterDeptUserReqeust = new FilterDeptUserReqeust();
|
|
|
|
|
filterDeptUserReqeust.setDeptId(deptEntity.getId().longValue());
|
|
|
|
|
List<DeptUserEntity> deptUserEntities = deptUserService.selectDeptUser(filterDeptUserReqeust);
|
|
|
|
|
if (CollUtil.isNotEmpty(deptUserEntities)) {
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败,请先移除该部门关联用户信息!");
|
|
|
|
|
}
|
|
|
|
|
List<DeptEntity> deptEntities = deptService.selectByPcode(deptEntity.getCode());
|
|
|
|
|
if (deptEntities.size() > 0) {
|
|
|
|
|
return ResultVOUtils.error(500, "删除失败,请先移除该部门下的子部门!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// DeptEntity deptEntity = deptService.selectById(deleteRequest.getId());
|
|
|
|
|
// InvProductDetailEntity invProductDetailEntity = invProductDetailService.isExit(deptEntity.getCode());
|
|
|
|
|
// if (invProductDetailEntity != null) {
|
|
|
|
|
// return ResultVOUtils.error(500, "该仓库已有库存,不能删除!");
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// List<InvSubWarehouseEntity> invSubWarehouseEntities = invSubWarehouseService.findByParentId(deptEntity.getCode());
|
|
|
|
|
// if (CollUtil.isNotEmpty(invSubWarehouseEntities)) {
|
|
|
|
|
// return ResultVOUtils.error(500, "删除失败,请先移除该部门关联仓库信息!");
|
|
|
|
|
// }
|
|
|
|
|
boolean b = deptService.deleteById(deleteRequest.getId());
|
|
|
|
|
if (!b) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
@ -298,4 +318,43 @@ public class DeptController {
|
|
|
|
|
return ResultVOUtils.success(byCode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@PostMapping("/spms/inv/warehouse/selectInvById")
|
|
|
|
|
public BaseResponse selectInvById(@RequestBody List<String> InvList) {
|
|
|
|
|
|
|
|
|
|
if (InvList.size() == 0) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
|
|
|
|
|
}
|
|
|
|
|
//先得到部门编码
|
|
|
|
|
List<String> String = deptService.selectByIdCode(InvList);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<InvWarehouseEntity> list = invWarehouseService.selectInvById(String);
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success(list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String isCheckStatus(Integer status, DeptEntity deptEntity) {
|
|
|
|
|
//启用的时候需要判断上级是不是被禁用
|
|
|
|
|
if (status == 1) {
|
|
|
|
|
//查询所有的上级
|
|
|
|
|
List<DeptEntity> deptEntityList = deptService.selectupDeptAll(deptEntity.getPcode());
|
|
|
|
|
for (DeptEntity obj : deptEntityList) {
|
|
|
|
|
if (obj.getStatus() == 0) {
|
|
|
|
|
return "上级存在禁用的部门修改失败!";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
List<DeptEntity> deptEntityList = deptService.selectLowDeptAll(deptEntity.getCode());
|
|
|
|
|
for (DeptEntity obj : deptEntityList) {
|
|
|
|
|
if (obj.getStatus() == 1) {
|
|
|
|
|
return "下级存在启用的部门修改失败!";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|