From 836a3231be910fd3e11258e18cf389594ac9b420 Mon Sep 17 00:00:00 2001
From: huanghongfeng <huanghongfeng@hnkhzn.com>
Date: 星期一, 08 七月 2024 12:51:18 +0800
Subject: [PATCH] 处理人工出库空托

---
 代码管理/WMS/WMS_Server/WIDESEA_WMS/Services/system/Partial/dt_inventoryService.cs |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMS_Server/WIDESEA_WMS/Services/system/Partial/dt_inventoryService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMS_Server/WIDESEA_WMS/Services/system/Partial/dt_inventoryService.cs"
index 9ec980a..a1ca6f8 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMS_Server/WIDESEA_WMS/Services/system/Partial/dt_inventoryService.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WMS_Server/WIDESEA_WMS/Services/system/Partial/dt_inventoryService.cs"
@@ -272,15 +272,14 @@
                             station.quantity = station.quantity - 1;
                             if (station.quantity < 1)
                             {
-                                station.quantity = 0;
+                                station.quantity = 1;
                                 station.stationType = string.Empty;
                                 station.heatNumber = string.Empty;
                                 station.Number = string.Empty;
                                 station.billetID = string.Empty;
                                 station.bindSN = string.Empty;
-                                station.enable = false;
-                                station.tray_status = string.Empty;
-                                station.location_state = LocationStateEnum.Empty.ToString();
+                                station.tray_status = "EmptyTrayss";
+                                station.location_state = LocationStateEnum.Stroge.ToString();
                             }
                             else
                             {

--
Gitblit v1.9.3