diff --git a/src/main/java/com/glxp/api/controller/thrsys/ThrInvWarehouseController.java b/src/main/java/com/glxp/api/controller/thrsys/ThrInvWarehouseController.java index ae4bd382..261b0118 100644 --- a/src/main/java/com/glxp/api/controller/thrsys/ThrInvWarehouseController.java +++ b/src/main/java/com/glxp/api/controller/thrsys/ThrInvWarehouseController.java @@ -22,6 +22,7 @@ import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; import javax.validation.Valid; +import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -59,16 +60,30 @@ public class ThrInvWarehouseController { if (bindingResult.hasErrors()) { return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); } - invSubWarehouseEntity.setId(IdUtil.getSnowflake(6, 1).nextId() + ""); - boolean b = thrInvWarehouseService.insertThrInvWarehouse(invSubWarehouseEntity); - ThrDeptEntity thrDeptEntity = thrDeptService.selectByCode(invSubWarehouseEntity.getParentId(), invSubWarehouseEntity.getThirdSysFk()); - thrDeptEntity.setUpdateTime(new Date()); - thrDeptService.updateInvWarehouse(thrDeptEntity); - - if (!b) { - return ResultVOUtils.error(ResultEnum.NOT_NETWORK); + //先判断是否存在 + List ThrInvWarehouseEntityList = new ArrayList<>(); + List thrInvWarehouseEntities = thrInvWarehouseService.selectByPid(invSubWarehouseEntity.getParentId()); + for (ThrInvWarehouseEntity thrInvWarehouseEntity : thrInvWarehouseEntities) { + if((invSubWarehouseEntity.getCode().equals(thrInvWarehouseEntity.getCode()) && invSubWarehouseEntity.getName().equals(thrInvWarehouseEntity.getName()))){ + //添加集合中 + ThrInvWarehouseEntityList.add(thrInvWarehouseEntity); + } } - return ResultVOUtils.success("添加成功!"); + if(ThrInvWarehouseEntityList.size()==0){ + invSubWarehouseEntity.setId(IdUtil.getSnowflake(6, 1).nextId() + ""); + boolean b = thrInvWarehouseService.insertThrInvWarehouse(invSubWarehouseEntity); + ThrDeptEntity thrDeptEntity = thrDeptService.selectByCode(invSubWarehouseEntity.getParentId(), invSubWarehouseEntity.getThirdSysFk()); + thrDeptEntity.setUpdateTime(new Date()); + thrDeptService.updateInvWarehouse(thrDeptEntity); + + if (!b) { + return ResultVOUtils.error(ResultEnum.NOT_NETWORK); + } + return ResultVOUtils.success("添加成功!"); + }else{ + return ResultVOUtils.error(ResultEnum.DATA_REPEAT); + } + } @AuthRuleAnnotation("") diff --git a/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java b/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java index b341b511..39c74ca2 100644 --- a/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java +++ b/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java @@ -14,6 +14,8 @@ public interface ThrInvWarehouseDao { List filterThrInvWarehouse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest); + List selectByPid(String pid); + boolean insertThrInvWarehouse(ThrInvWarehouseEntity thrInvWarehouseEntity); boolean insertThrInvWarehouses(@Param("thrInvWarehouseEntitys") List thrInvWarehouseEntitys); diff --git a/src/main/java/com/glxp/api/service/thrsys/ThrInvWarehouseService.java b/src/main/java/com/glxp/api/service/thrsys/ThrInvWarehouseService.java index 3b7b66d0..362674b0 100644 --- a/src/main/java/com/glxp/api/service/thrsys/ThrInvWarehouseService.java +++ b/src/main/java/com/glxp/api/service/thrsys/ThrInvWarehouseService.java @@ -14,6 +14,7 @@ public interface ThrInvWarehouseService { ThrInvWarehouseEntity selectByThrCode(String thirdSys, String thirdId); List filterThrInvWarehouse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest); + List selectByPid(String pid); boolean insertThrInvWarehouse(ThrInvWarehouseEntity thrInvWarehouseEntity); diff --git a/src/main/java/com/glxp/api/service/thrsys/impl/ThrInvWarehouseServiceImpl.java b/src/main/java/com/glxp/api/service/thrsys/impl/ThrInvWarehouseServiceImpl.java index 3bbbc53d..37230d55 100644 --- a/src/main/java/com/glxp/api/service/thrsys/impl/ThrInvWarehouseServiceImpl.java +++ b/src/main/java/com/glxp/api/service/thrsys/impl/ThrInvWarehouseServiceImpl.java @@ -58,6 +58,11 @@ public class ThrInvWarehouseServiceImpl implements ThrInvWarehouseService { return thrInvWarehouseDao.filterThrInvWarehouse(filterThrSubInvWarehouseRequest); } + @Override + public List selectByPid(String pid) { + return thrInvWarehouseDao.selectByPid(pid); + } + @Override public boolean insertThrInvWarehouse(ThrInvWarehouseEntity thrInvWarehouseEntity) { return thrInvWarehouseDao.insertThrInvWarehouse(thrInvWarehouseEntity); diff --git a/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml b/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml index 3ebab1f1..cb96ee4a 100644 --- a/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml +++ b/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml @@ -32,6 +32,13 @@ WHERE id = #{id} + +