From 7118c1e6ba538b1ef68aba91353dbeb608443e81 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期三, 28 五月 2025 16:15:54 +0800 Subject: [PATCH] 1.现场收料和现场投入新增”任务单号“信息 --- service/Wom/WomdaaManager.cs | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/service/Wom/WomdaaManager.cs b/service/Wom/WomdaaManager.cs index 1f552d6..a56f9dd 100644 --- a/service/Wom/WomdaaManager.cs +++ b/service/Wom/WomdaaManager.cs @@ -678,7 +678,8 @@ { a.Daa001, a.CaaGuid, - a.Daa008 + a.Daa008, + a.Daa021 }).First(); if (womdaa?.Daa001 == null) throw new Exception("宸ュ崟鍙蜂笉瀛樺湪"); @@ -745,6 +746,7 @@ var dto = new XcslResultDto { GD_Num = womdaa.Daa008, + workNo = womdaa.Daa021, XcslItemList = XcslItem, XcslWjsBarList = XcslWjsBar, XcslYjsBarList = XcslYjsBar @@ -758,6 +760,7 @@ public class XcslResultDto { public int? GD_Num { get; set; } + public string? workNo { get; set; } public List<dynamic> XcslItemList { get; set; } public List<dynamic> XcslWjsBarList { get; set; } public List<dynamic> XcslYjsBarList { get; set; } @@ -933,7 +936,8 @@ { a.Daa001, a.CaaGuid, - a.Daa008 + a.Daa008, + a.Daa021 }).First(); if (womdaa?.Daa001 == null) throw new Exception("宸ュ崟鍙蜂笉瀛樺湪"); @@ -1009,6 +1013,7 @@ var dto = new XcslResultDto { GD_Num = womdaa.Daa008, + workNo = womdaa.Daa021, XcslItemList = XcslItem, XcslWjsBarList = XcslWjsBar, XcslYjsBarList = XcslYjsBar -- Gitblit v1.9.3