| | |
| | | * @time 2025/4/7 16:58 |
| | | */ |
| | | @Override |
| | | public R getDeltByCode(Map<String, Object> params) { |
| | | Object code = params.get("code"); |
| | | Object matnrCode = params.get("matnrCode"); |
| | | Object asnCode = params.get("asnCode"); |
| | | Object crushNo = params.get("fieldsIndex"); |
| | | Object batch = params.get("batch"); |
| | | public R getDeltByCode(Map<String, String> params) { |
| | | String code = params.get("code"); |
| | | String matnrCode = params.get("matnrCode"); |
| | | String asnCode = params.get("asnCode"); |
| | | String crushNo = params.get("fieldsIndex"); |
| | | String batch = params.get("batch"); |
| | | // String barcode = params.get("barcode"); |
| | | |
| | | if (Objects.isNull(crushNo)) { |
| | | throw new CoolException("票号不能为空!!"); |
| | | } |
| | | if (Objects.isNull(code)) { |
| | | throw new CoolException("容器号不能为空!!"); |
| | | } |
| | | BasContainer container = basContainerService.getOne(new LambdaQueryWrapper<BasContainer>().eq(BasContainer::getCode, code.toString())); |
| | | if (Objects.isNull(container)) { |
| | | throw new CoolException("容器不存在!!"); |
| | | } |
| | | if (!Objects.isNull(params.get("isHalf")) && !params.get("isHalf").equals("0")) { |
| | | container.setIsHalf(1); |
| | | if (!basContainerService.updateById(container)) { |
| | | throw new CoolException("容器状态修改失败!!"); |
| | | } |
| | | } |
| | | // if (Objects.isNull(code)) { |
| | | // throw new CoolException("容器号不能为空!!"); |
| | | // } |
| | | // BasContainer container = basContainerService.getOne(new LambdaQueryWrapper<BasContainer>().eq(BasContainer::getCode, barcode)); |
| | | // if (Objects.isNull(container)) { |
| | | // throw new CoolException("容器不存在!!"); |
| | | // } |
| | | // if (!Objects.isNull(params.get("isHalf")) && !params.get("isHalf").equals("0")) { |
| | | // container.setIsHalf(1); |
| | | // if (!basContainerService.updateById(container)) { |
| | | // throw new CoolException("容器状态修改失败!!"); |
| | | // } |
| | | // } |
| | | |
| | | String fieldIndex = null; |
| | | if (!Objects.isNull(crushNo)) { |