服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-03-11 bdf2aaa385eb9b2d0f2366017536b542156da4fd
雅达-动态设置接收文档类型

在 `WMS_U9C.cs` 中,将 `RcvDocType` 的赋值从硬编码的 `"RCV01"` 修改为使用 `input.RcvDocType`,以支持动态配置接收文档类型。

在 `U9CParameter.cs` 中新增 `RcvDocType` 属性,以便在接收参数中包含接收文档类型信息。
已修改2个文件
3 ■■■■ 文件已修改
Tiger.Business.WMS/ERP/WMS_U9C.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Tiger.Business.WMS/ERP/WMS_U9C.cs
@@ -142,7 +142,7 @@
                    {
                        BusinessDate = DateTime.Now,
                        Supplier = new() { m_code = input.Supplier },
                        RcvDocType = new() { m_code = "RCV01" },
                        RcvDocType = new() { m_code = input.RcvDocType },
                        RcvLines= input.RcvLines,
                    },
                    OtherID = "WMS"
Tiger.Model.Net/Entitys/MES/ParameterEntity/U9CParameter.cs
@@ -291,6 +291,7 @@
        /// 供应商
        /// </summary>
        public string Supplier { get; set; }
        public string RcvDocType { get; set; }
        public List<RcvLine> RcvLines { get; set; }
    }