仓库和部门功能修改

master
郑明梁 2 years ago
parent eaaf8d2324
commit 213cbdef11

@ -14,6 +14,7 @@ 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.purchase.PurDeliveryDetailEntity;
import com.glxp.api.entity.system.SystemParamConfigEntity;
import com.glxp.api.req.auth.FilterDeptUserReqeust;
import com.glxp.api.req.auth.FilterInvWarehouseRequest;
@ -30,6 +31,7 @@ import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.validation.Valid;
import java.util.*;
import java.util.stream.Collectors;
@RestController
public class DeptController extends BaseController {
@ -246,6 +248,21 @@ public class DeptController extends BaseController {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
}
//判断状态
String msg=isCheckStatus(deptEntity.getStatus(),deptEntity);
if(msg!=""){
return ResultVOUtils.error(999,msg);
}
//判断供应商状态
if(deptEntity.isSpUse()==false){
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> deptEntityList = deptService.selectByNameList(deptEntity.getName());
if (deptEntityList != null && deptEntityList.size() > 0) {
for (DeptEntity obj : deptEntityList) {
@ -348,4 +365,25 @@ public class DeptController extends BaseController {
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 "";
}
}

@ -233,6 +233,11 @@ public class InvWarehouseController extends BaseController {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL);
}
Integer userCount = warehouseUserService.countUserBySubInvCode(invWarehouseEntity.getCode());
if (userCount > 0) {
return ResultVOUtils.error(500, "修改失败,请先移除该仓库关联用户!");
}
//更新仓库信息
invWarehouseEntity.setUpdateTime(new Date());
boolean b = invWarehouseService.updateInvSubWarehouse(invWarehouseEntity);

@ -69,4 +69,8 @@ public interface DeptDao {
String selectNameByCode(@Param("code") String code);
List<DeptEntity> selectByPcode(@Param("pcode") String pcode);
List<DeptEntity> selectupDeptAll(@Param("pcode") String pCode);
List<DeptEntity> selectLowDeptAll(@Param("pcode") String pCode);
}

@ -77,4 +77,8 @@ public interface DeptService {
List<DeptEntity> selectByPcode(String pcode);
List<DeptEntity> selectupDeptAll(String pCode);
List<DeptEntity> selectLowDeptAll(String pCode);
}

@ -183,5 +183,15 @@ public class DeptServiceImpl implements DeptService {
return deptDao.selectByPcode(pcode);
}
@Override
public List<DeptEntity> selectupDeptAll(String pCode) {
return deptDao.selectupDeptAll(pCode);
}
@Override
public List<DeptEntity> selectLowDeptAll(String pCode) {
return deptDao.selectLowDeptAll(pCode);
}
}

@ -312,4 +312,22 @@
<select id="selectByPcode" resultType="com.glxp.api.entity.auth.DeptEntity">
select * from auth_dept where pcode = #{pcode}
</select>
<select id="selectupDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
with recursive table_a as (
select * from auth_dept ta where code = #{pcode}
union all
select tb.* from auth_dept tb inner join table_a on table_a.pcode = tb.code
)
select * from table_a
</select>
<select id="selectLowDeptAll" parameterType="java.lang.String" resultType="com.glxp.api.entity.auth.DeptEntity">
with recursive table_a as (
select * from auth_dept ta where pcode = #{pcode}
union all
select tb.* from auth_dept tb inner join table_a on table_a.code = tb.pcode
)
select * from table_a
</select>
</mapper>

Loading…
Cancel
Save