From 379d73eaed4c3468c91b1dec52c4309d4f01522f Mon Sep 17 00:00:00 2001
From: Ben Lin <maobin001@msn.com>
Date: 星期二, 25 三月 2025 09:46:34 +0800
Subject: [PATCH] 简化收货单审核流程,重构打印逻辑

---
 Tiger.Business.WMS/ERP/WMS_U9C.cs |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/Tiger.Business.WMS/ERP/WMS_U9C.cs b/Tiger.Business.WMS/ERP/WMS_U9C.cs
index 2ff1c57..812a6c9 100644
--- a/Tiger.Business.WMS/ERP/WMS_U9C.cs
+++ b/Tiger.Business.WMS/ERP/WMS_U9C.cs
@@ -155,11 +155,12 @@
             var action = new ApiAction<List<U9CReturnData2>>();
             try
             {
-                action = await SubmitLine(input);
-                if (action.IsSuccessed) {
-                    input.IsLogin = false;
-                    action = await ApproveLine(input);
-                }
+                //action = await SubmitLine(input);
+                //if (action.IsSuccessed) {
+                //    input.IsLogin = false;
+                //    action = await ApproveLine(input);
+                //}
+                action = await ApproveLine(input);
             }
             catch (System.Exception ex)
             {

--
Gitblit v1.9.3