From 70f2f1d5598086153da1000ac5d6881e4938fb5e Mon Sep 17 00:00:00 2001 From: zhou keda <1315948824@qq.com> Date: Wed, 9 Oct 2024 14:36:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9D=90=E6=96=99=E5=87=BA=E5=BA=93=E5=8D=95?= =?UTF-8?q?=E5=8A=A0=E7=A0=94=E7=A9=B6=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Tnb.WarehouseMgr.Entities/Entity/WmsRawmatOutstockH.cs | 6 ++++++ WarehouseMgr/Tnb.WarehouseMgr/WmsRawmatOutstockService.cs | 1 + 2 files changed, 7 insertions(+) diff --git a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsRawmatOutstockH.cs b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsRawmatOutstockH.cs index 6b3ccedd..adaf2acd 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsRawmatOutstockH.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr.Entities/Entity/WmsRawmatOutstockH.cs @@ -97,5 +97,11 @@ public partial class WmsRawmatOutstockH : BaseEntity /// erp成本域 /// public string? erp_org_costregion { get; set; } = "1001A1100000001MNB3H"; + + /// + /// erp研发项目id + /// + public string? erp_project_id { get; set; } + } diff --git a/WarehouseMgr/Tnb.WarehouseMgr/WmsRawmatOutstockService.cs b/WarehouseMgr/Tnb.WarehouseMgr/WmsRawmatOutstockService.cs index 0670ea75..b7f82f05 100644 --- a/WarehouseMgr/Tnb.WarehouseMgr/WmsRawmatOutstockService.cs +++ b/WarehouseMgr/Tnb.WarehouseMgr/WmsRawmatOutstockService.cs @@ -157,6 +157,7 @@ namespace Tnb.WarehouseMgr erpRequestData.Add("vbillcode", wmsRawmatOutstockH.bill_code); erpRequestData.Add("vtrantypecode", wmsRawmatOutstockH.outstock_type); erpRequestData.Add("vdef20", true); + erpRequestData.Add("vdef4", wmsRawmatOutstockH.erp_project_id); List> erpRequestDataDetails = new List>(); foreach(var item in wmsCarryCodes)