From 1d61b45846ac2e5cb0a8366365613c44c1319289 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期三, 26 三月 2025 18:06:17 +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