This commit is contained in:
赵正易 2024-04-23 18:54:40 +08:00
parent b3fc2394e7
commit 70bcb9f5d3

View File

@ -39,6 +39,7 @@ namespace ZR.Service.mes.wms
.LeftJoin<WmMaterial>((wgo, wml) => wgo.Partnumber == wml.Partnumber)
.Where(predicate.ToExpression())
.Select((wgo, wml) => new WmGoodsOutProductionDto { Description = wml.Description }, true)
.OrderBy(wml=>wml.OutTime,OrderByType.Desc)
.ToPageList(parm.PageNum, parm.PageSize,ref total);
return (response,total);