修复bug

This commit is contained in:
18942506660
2023-11-27 14:15:16 +08:00
parent a8fc592398
commit 1db1f14256

View File

@@ -86,7 +86,7 @@ namespace WMS.Web.Domain.Services
{
var l = d.Details.Select(s => (s.MaterialId, s.Qty, s.SerialNumbers)).ToList();
var srcBox = srcBoxs.FirstOrDefault(f => f.Id == d.SrcBoxId);
var destBox = srcBoxs.FirstOrDefault(f => f.Id == d.DestBoxId);
var destBox = destBoxs.FirstOrDefault(f => f.Id == d.DestBoxId);
//原箱移出
Result res;
if (srcBox != null)