|
|
|
@ -71,13 +71,33 @@ public class ThrInvWarehouseController {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (thrInvWarehouseEntity.getPid() == null) {
|
|
|
|
|
if (thrInvWarehouseEntity.getPid() == null) {//仓库
|
|
|
|
|
thrInvWarehouseEntity.setPid(0); // 默认设置
|
|
|
|
|
FilterThrInvWarehouseRequest filterThrInvWarehouseRequest = new FilterThrInvWarehouseRequest();
|
|
|
|
|
filterThrInvWarehouseRequest.setPid(thrInvWarehouseEntity.getPid());
|
|
|
|
|
ThrInvWarehouseEntity codeEntity = thrInvWarehouseService.selectMaxCode(filterThrInvWarehouseRequest);
|
|
|
|
|
thrInvWarehouseEntity.setCode(Integer.parseInt(codeEntity.getCode()) + 1 + "");
|
|
|
|
|
} else {//货位
|
|
|
|
|
|
|
|
|
|
FilterThrInvWarehouseRequest filterThrInvWarehouseRequest = new FilterThrInvWarehouseRequest();
|
|
|
|
|
filterThrInvWarehouseRequest.setPid(thrInvWarehouseEntity.getPid());
|
|
|
|
|
ThrInvWarehouseEntity codeEntity = thrInvWarehouseService.selectMaxCode(filterThrInvWarehouseRequest);
|
|
|
|
|
ThrInvWarehouseEntity pEntity = thrInvWarehouseService.selectById(thrInvWarehouseEntity.getPid() + "");
|
|
|
|
|
if (codeEntity == null) {
|
|
|
|
|
int code = Integer.parseInt(pEntity.getCode()) * 1000;
|
|
|
|
|
thrInvWarehouseEntity.setCode(code + "");
|
|
|
|
|
} else {
|
|
|
|
|
thrInvWarehouseEntity.setCode(Integer.parseInt(codeEntity.getCode()) + 1 + "");
|
|
|
|
|
}
|
|
|
|
|
thrInvWarehouseEntity.setAdvanceType(pEntity.getAdvanceType());
|
|
|
|
|
thrInvWarehouseEntity.setLevel(pEntity.getLevel());
|
|
|
|
|
thrInvWarehouseEntity.setPcode(pEntity.getPcode());
|
|
|
|
|
}
|
|
|
|
|
boolean b = thrInvWarehouseService.insertInvWarehouse(thrInvWarehouseEntity);
|
|
|
|
|
if (!b) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("添加成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|