|  |  |  | 
|---|
|  |  |  | if (StringUtils.isBlank(waitPakin.getBarcode())) { | 
|---|
|  |  |  | throw new CoolException("参数错误:托盘码为空!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | List<Short> asList = Arrays.asList(Short.valueOf(PakinIOStatus.PAKIN_IO_STATUS_DONE.val), Short.valueOf(PakinIOStatus.PAKIN_IO_STATUS_DONE.val)); | 
|---|
|  |  |  | //        List<Short> asList = Arrays.asList(Short.valueOf(PakinIOStatus.PAKIN_IO_STATUS_DONE.val), Short.valueOf(PakinIOStatus.PAKIN_IO_STATUS_DONE.val)); | 
|---|
|  |  |  | WaitPakin pakin = waitPakinService.getOne(new LambdaQueryWrapper<WaitPakin>() | 
|---|
|  |  |  | .eq(WaitPakin::getBarcode, waitPakin.getBarcode())); | 
|---|
|  |  |  | if (!Objects.isNull(pakin)) { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | waitPakin1.setCode(ruleCode) | 
|---|
|  |  |  | //状态修改为入库中 | 
|---|
|  |  |  | .setIoStatus(Short.parseShort(PakinIOStatus.PAKIN_IO_STATUS_DONE.val)) | 
|---|
|  |  |  | .setIoStatus(PakinIOStatus.PAKIN_IO_STATUS_DONE.val) | 
|---|
|  |  |  | .setAnfme(sum) | 
|---|
|  |  |  | .setUpdateBy(userId) | 
|---|
|  |  |  | .setCreateBy(userId) | 
|---|
|  |  |  | 
|---|
|  |  |  | if (item.getReceiptQty().compareTo(0.00) == 0) { | 
|---|
|  |  |  | throw new CoolException("解绑数量不能为零!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (item.getReceiptQty().compareTo(pakinItems.get(i1).getAnfme() - pakinItems.get(i1).getWorkQty() - pakinItems.get(i1).getQty()) > 0) { | 
|---|
|  |  |  | Double reslt = Math.round((pakinItems.get(i1).getAnfme() - pakinItems.get(i1).getWorkQty() - pakinItems.get(i1).getQty()) * 10000) / 10000.0; | 
|---|
|  |  |  | if (item.getReceiptQty().compareTo(reslt) > 0) { | 
|---|
|  |  |  | throw new CoolException("解绑数量不能大于剩余可执行数!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | pakinItems.get(i1).setAnfme(pakinItems.get(i1).getAnfme() - item.getReceiptQty()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | Double anfme = Math.round((pakinItems.get(i1).getAnfme() - item.getReceiptQty()) * 10000) / 10000.0; | 
|---|
|  |  |  | pakinItems.get(i1).setAnfme(anfme); | 
|---|
|  |  |  | if (!waitPakinItemService.updateById(pakinItems.get(i1))) { | 
|---|
|  |  |  | throw new CoolException("组托明细数量修改失败!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | for (int i = 0; i < warehouseAreasItems.size(); i++) { | 
|---|
|  |  |  | if (warehouseAreasItems.get(i).getId().equals(pakinItems.get(i1).getSource())) { | 
|---|
|  |  |  | double v = warehouseAreasItems.get(i).getWorkQty() - item.getReceiptQty(); | 
|---|
|  |  |  | double v = Math.round((warehouseAreasItems.get(i).getWorkQty() - item.getReceiptQty()) * 10000) / 10000.0; | 
|---|
|  |  |  | warehouseAreasItems.get(i).setWorkQty(v); | 
|---|
|  |  |  | if (!warehouseAreasItemService.updateById(warehouseAreasItems.get(i))) { | 
|---|
|  |  |  | throw new CoolException("收货区数量修改失败!!"); | 
|---|
|  |  |  | 
|---|
|  |  |  | throw new CoolException("组托删除失败!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } else { | 
|---|
|  |  |  | waitPakins.setAnfme(waitPakins.getAnfme() - anfmes); | 
|---|
|  |  |  | Double anfme = Math.round((waitPakins.getAnfme() - anfmes) * 10000) / 10000.0; | 
|---|
|  |  |  | waitPakins.setAnfme(anfme); | 
|---|
|  |  |  | if (!waitPakinService.updateById(waitPakins)) { | 
|---|
|  |  |  | throw new CoolException("组托数据修改失败!!"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | continue; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | double sum = pakin.stream().mapToDouble(WaitPakinItem::getAnfme).sum(); | 
|---|
|  |  |  | item.setWorkQty(item.getWorkQty() - sum); | 
|---|
|  |  |  | Double workQty = Math.round((item.getWorkQty() - sum) * 10000) / 10000.0; | 
|---|
|  |  |  | item.setWorkQty(workQty); | 
|---|
|  |  |  | if (!warehouseAreasItemService.updateById(item)) { | 
|---|
|  |  |  | throw new CoolException("收货区数据回滚失败!!"); | 
|---|
|  |  |  | } | 
|---|