自动化立体仓库 - WMS系统
LSH
2023-07-17 fd93c4901b76347b46a05a5fd231760d5245579d
src/main/java/com/zy/asrs/service/impl/NodeServiceImpl.java
@@ -110,7 +110,7 @@
                ManLocDetl manLocDetl = new ManLocDetl();
                manLocDetl.setLocNo(node.getUuid());
                manLocDetl.setNodeId(node.getId());
                manLocDetl.setZpallet(mat.getBarcode());
                manLocDetl.setZpallet(node.getUuid());
                manLocDetl.setAnfme(dto.getCount());
                manLocDetl.setMatnr(mat.getMatnr());
                manLocDetl.setMaktx(mat.getMaktx());
@@ -126,10 +126,11 @@
                SaasUtils.insertLog(0,manLocDetl.getLocNo(),manLocDetl.getMatnr(), manLocDetl.getAnfme(),user.getUsername());
                manLocDetlService.insert(manLocDetl);
            }else {
                check.setAnfme(dto.getCount() + check.getAnfme());
                manLocDetlService.update(check,new EntityWrapper<ManLocDetl>()
                        .eq("loc_no", node.getUuid())
                        .eq("matnr", dto.getMatnr()));
//                check.setAnfme(dto.getCount() + check.getAnfme());
//                manLocDetlService.update(check,new EntityWrapper<ManLocDetl>()
//                        .eq("loc_no", node.getUuid())
//                        .eq("matnr", dto.getMatnr()));
                return R.error("库位存在物料,请勿重复入库");
            }
            if (!Cools.isEmpty(dto.getOrderNo())) {
                OrderDetl orderDetl = orderDetlService.selectOne(new EntityWrapper<OrderDetl>()
@@ -204,13 +205,14 @@
                SaasUtils.insertLog(2,source.getLocNo(), source.getMatnr(), source.getAnfme(),user.getUsername());
                manLocDetlService.insert(source);
            }else {
                check.setAnfme(check.getAnfme() + source.getAnfme());
                manLocDetlService.update(check,new EntityWrapper<ManLocDetl>()
                        .eq("loc_no", targetNode.getUuid())
                        .eq("matnr", check.getMatnr()));
                manLocDetlService.delete(new EntityWrapper<ManLocDetl>()
                        .eq("loc_no", sourceNode.getUuid())
                        .eq("matnr", source.getMatnr()));
//                check.setAnfme(check.getAnfme() + source.getAnfme());
//                manLocDetlService.update(check,new EntityWrapper<ManLocDetl>()
//                        .eq("loc_no", targetNode.getUuid())
//                        .eq("matnr", check.getMatnr()));
//                manLocDetlService.delete(new EntityWrapper<ManLocDetl>()
//                        .eq("loc_no", sourceNode.getUuid())
//                        .eq("matnr", source.getMatnr()));
                throw new RuntimeException("目标库位有物");
            }
        }