盘点增加序列号

This commit is contained in:
18942506660
2023-11-23 14:38:39 +08:00
parent 3080c50e0b
commit 8cf8dab210
5 changed files with 19 additions and 3 deletions

View File

@@ -72,6 +72,11 @@ namespace WMS.Web.Domain.Services
if (ex.Count() > 0)
return Result.ReFailure(ResultCodes.OutStockMaterialError);
//1.需要验证物料对应箱和序列号是否存在库存
//如果是按箱出库从库存拿取数据
if(dto.Method==1)
{
}
var mIds = dto.Details.GroupBy(g => g.MaterialId).Select(s => s.Key).ToList();
OutStock entity = new OutStock();