雅达-动态设置接收文档类型
在 `WMS_U9C.cs` 中,将 `RcvDocType` 的赋值从硬编码的 `"RCV01"` 修改为使用 `input.RcvDocType`,以支持动态配置接收文档类型。
在 `U9CParameter.cs` 中新增 `RcvDocType` 属性,以便在接收参数中包含接收文档类型信息。
| | |
| | | { |
| | | 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" |
| | |
| | | /// 供应商 |
| | | /// </summary> |
| | | public string Supplier { get; set; } |
| | | public string RcvDocType { get; set; } |
| | | public List<RcvLine> RcvLines { get; set; } |
| | | } |
| | | |