From 53da98b415ee2021346c83a86be3617b1ef2c984 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期四, 26 六月 2025 15:50:03 +0800
Subject: [PATCH] 清除托盘码站点

---
 zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/impl/MobileServiceImpl.java |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/impl/MobileServiceImpl.java b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/impl/MobileServiceImpl.java
index 555f5e6..c1a5dc7 100644
--- a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/impl/MobileServiceImpl.java
+++ b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/asrs/service/impl/MobileServiceImpl.java
@@ -117,8 +117,9 @@
             waitPakinService.comb(pakin);
         });
 
+
         // UTC鍏ュ簱鍗曟嵁(闈炲钩搴撳叆搴撳崟鎹�)
-        if (order.getOrderType() != OrderType.PK_IN_ORDER.id) {
+        if (!ordersParam.getInType().equals(OrderType.PK_IN_ORDER.id)) {
             /*** 椤圭洰涓嬪彂娴佺▼ * 1. PDA缁勬嫋閫氱煡妗�* 2. 鐢熸垚浠诲姟妗�* 3. 閫氳繃瀹氭椂浠诲姟涓嬪彂鑷矱SS** */
             //鐢熸垚浠诲姟妗�
             GeneratePakInParam generatePakInParam = new GeneratePakInParam();
@@ -204,6 +205,7 @@
             WaitPakinLog pakinLog = new WaitPakinLog();
             BeanUtils.copyProperties(waitPakin, pakinLog);
             pakinLog.setIoStatus(1);
+            pakinLog.setId(null);
             if (!waitPakinLogService.saveOrUpdate(pakinLog)) {
                 throw new CoolException("缁勬嫋鍘嗗彶妗f洿鏂板け璐�");
             }
@@ -224,6 +226,7 @@
             order.setOrderSettle(OrderSettleType.COMPLETE.val());
             OrderLog orderLog = new OrderLog();
             BeanUtils.copyProperties(order, orderLog);
+            orderLog.setId(null);
             if (!orderLogService.save(orderLog)) {
                 throw new CoolException("鍘嗗彶鍗曟嵁鏇存柊澶辫触锛侊紒");
             }
@@ -241,6 +244,7 @@
             BeanUtils.copyProperties(delt, detlLog);
             detlLog.setQty(delt.getWorkQty());
             detlLog.setWorkQty(0.0);
+            detlLog.setId(null);
             detlLogs.add(detlLog);
         });
 
@@ -393,7 +397,10 @@
             if (Objects.isNull(order)) {
                 throw new CoolException("缁戝畾璁㈠崟涓嶅瓨鍦紒锛�");
             }
-            siteNo.setOrderNo(order.getOrderNo()).setOrderId(order.getId()).setSiteStatus(CacheSiteStatusType.R.id).setBarcode(param.get("barcode").toString());
+            siteNo.setOrderNo(order.getOrderNo())
+                    .setOrderId(order.getId())
+                    .setSiteStatus(CacheSiteStatusType.R.id)
+                    .setBarcode(param.get("barcode").toString());
             if (cacheSiteMapper.updateById(siteNo) < 1) {
                 throw new CoolException("璁㈠崟鎾浣嶇粦瀹氬け璐ワ紒锛�" );
             }
@@ -409,7 +416,7 @@
             if (StringUtil.isNullOrEmpty(siteNo.getOrderNo())) {
                 throw new CoolException("褰撳墠鎾绔欑偣鏈粦瀹氳鍗曪紒锛�");
             }
-           siteNo.setOrderId(null).setOrderNo(null).setSiteNo("0");
+           siteNo.setOrderId(null).setOrderNo(null).setBarcode(null).setSiteNo("0");
             if (cacheSiteMapper.updateById(siteNo) < 1) {
                 throw new CoolException("璁㈠崟涓庢挱绉嶄綅瑙g粦澶辫触锛侊紒" );
             }

--
Gitblit v1.9.1