From b3555b47e4977e88f5a32e41e103092746357d8f Mon Sep 17 00:00:00 2001
From: vincentlu <t1341870251@gmail.com>
Date: 星期二, 01 四月 2025 14:03:14 +0800
Subject: [PATCH] #

---
 zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java
index 99f715d..7a4edd4 100644
--- a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java
+++ b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/MainService.java
@@ -179,7 +179,7 @@
                     if (!destSta.getStaSts().equals(StaStsType.IDLE.val())) {
                         throw new BusinessException("destSta锛�" + task.getDestSta$() + " is not in IDLE status");
                     }
-                    destSta.setStaSts(StaStsType.PAKIN.val());
+                    destSta.setStaSts(StaStsType.READY_RELEASE.val());
                     destSta.setUpdateTime(now);
                     if (!staService.updateById(destSta)) {
                         throw new BusinessException("destSta锛�" + task.getDestSta$() + " failed to update");
@@ -190,7 +190,7 @@
                     if (!oriSta.getStaSts().equals(StaStsType.STOCK.val())) {
                         throw new BusinessException("oriSta锛�" + task.getOriSta$() + " is not in STOCK status");
                     }
-                    oriSta.setStaSts(StaStsType.PAKOUT.val());
+                    oriSta.setStaSts(StaStsType.READY_TAKE.val());
                     oriSta.setUpdateTime(now);
                     if (!staService.updateById(oriSta)) {
                         throw new BusinessException("oriSta锛�" + task.getOriSta$() + " failed to update");
@@ -211,7 +211,7 @@
                     if (!oriSta.getStaSts().equals(StaStsType.STOCK.val())) {
                         throw new BusinessException("oriSta锛�" + task.getOriSta$() + " is not in STOCK status");
                     }
-                    oriSta.setStaSts(StaStsType.PAKOUT.val());
+                    oriSta.setStaSts(StaStsType.READY_TAKE.val());
                     oriSta.setUpdateTime(now);
                     if (!staService.updateById(oriSta)) {
                         throw new BusinessException("oriSta锛�" + task.getOriSta$() + " failed to update");
@@ -221,7 +221,7 @@
                     if (!destSta.getStaSts().equals(StaStsType.IDLE.val())) {
                         throw new BusinessException("destSta锛�" + task.getDestSta$() + " is not in IDLE status");
                     }
-                    destSta.setStaSts(StaStsType.PAKIN.val());
+                    destSta.setStaSts(StaStsType.READY_RELEASE.val());
                     destSta.setUpdateTime(now);
                     if (!staService.updateById(destSta)) {
                         throw new BusinessException("destSta锛�" + task.getDestSta$() + " failed to update");

--
Gitblit v1.9.1