From 3307fff9cac225c8c07354885a3bc9bdea53eca4 Mon Sep 17 00:00:00 2001 From: zhaoyf <1783123481@qq.com> Date: Sat, 13 Jun 2026 17:35:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=9B=91=E5=90=AC=E5=99=A8=E9=87=87?= =?UTF-8?q?=E8=B4=AD=E5=8D=95=E5=8D=95=E6=8D=AE=E7=8A=B6=E6=80=81=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/InboundPdaServiceImpl.java | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/nladmin-system/wms-server/src/main/java/org/nl/wms/pda_manage/ios_manage/purchase/service/impl/InboundPdaServiceImpl.java b/nladmin-system/wms-server/src/main/java/org/nl/wms/pda_manage/ios_manage/purchase/service/impl/InboundPdaServiceImpl.java index 7307d8c..99aa092 100644 --- a/nladmin-system/wms-server/src/main/java/org/nl/wms/pda_manage/ios_manage/purchase/service/impl/InboundPdaServiceImpl.java +++ b/nladmin-system/wms-server/src/main/java/org/nl/wms/pda_manage/ios_manage/purchase/service/impl/InboundPdaServiceImpl.java @@ -193,11 +193,6 @@ public class InboundPdaServiceImpl implements InboundPdaService { iMdPbGroupplateService.save(groupDao); }); - //更新单据状态已创建 - purchaseService.lambdaUpdate().eq(Purchasemst::getBill_id, dto.getBill_id()) - .set(Purchasemst::getBill_status, PurchaseBillStatus.EXECUTING.getCode()); - - JSONObject result = new JSONObject(); result.put("success", true); result.put("message", "组盘提交成功"); @@ -273,13 +268,7 @@ public class InboundPdaServiceImpl implements InboundPdaService { GroupPlateInboundDto groupPlateInboundDto = new GroupPlateInboundDto(); groupPlateInboundDto.setSect_code(sectDao.getSect_code()); groupPlateInboundDto.setVehicle_code(storagevehicleCode); - InboundPdaServiceImpl thisBean = SpringContextHolder.getBean(this.getClass()); - thisBean.submitGroupPlateInbound(groupPlateInboundDto, false); - - PurchaseListenerParams purchaseListenerParams = new PurchaseListenerParams(); - purchaseListenerParams.setBillId(usualInboundDto.getBill_id()); - purchaseListenerParams.setDetailItem(items); - pushEvent(purchaseListenerParams); + this.submitGroupPlateInbound(groupPlateInboundDto, false); } @Override