This commit is contained in:
tongfei
2024-03-27 11:21:49 +08:00
parent 465463e229
commit 16bc90ac0a
2 changed files with 6 additions and 0 deletions

View File

@@ -23,5 +23,10 @@ namespace WMS.Web.Core.Dto
/// 仓位名称
/// </summary>
public string SubStock { get; set; }
/// <summary>
/// 组织
/// </summary>
public string OrgCode { get; set; }
}
}

View File

@@ -241,6 +241,7 @@ namespace WMS.Web.Repositories
{
MaterialNumber=x.MaterialNumber,
SubStockCode=x.SubStockCode,
OrgCode=x.OrgCode,
SubStock = _singleDataService.GetSingleData(SingleAction.SubStocksJoinOrgCode, companyId, x.SubStockCode + x.StockCode + x.OrgCode),
}).ToListAsync();
}