日志优化,成品库添加移库,AGV上料功能修正,出库计划过滤呆料,毛坯仓库添加实际操作时间

This commit is contained in:
2024-07-10 17:11:01 +08:00
parent 5d42e9e196
commit 13cf1be5a7
16 changed files with 359 additions and 183 deletions

View File

@@ -365,6 +365,7 @@ namespace ZR.Service.mes.wms
// 该物料下 ,现有货物列表,零件号相同,根据批次号从小到大排序
List<WmGoodsNowProduction> wmGoodsNowsList = Context.Queryable<WmGoodsNowProduction>()
.Where(it => it.Partnumber == partnumber)
.Where(it => it.LocationCode != "Z1-01")
.OrderBy(it => it.PackageCodeClient)
.ToList();