入库任务单的实体优化

This commit is contained in:
tongfei
2023-11-11 13:47:56 +08:00
parent 7707c1615d
commit 3df1988a89
5 changed files with 15 additions and 13 deletions

View File

@@ -143,7 +143,7 @@ namespace WMS.Web.Repositories
ReceiveTime = s.order.ReceiveTime.HasValue ? s.order.ReceiveTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : "",
Shelfer = "",
ShelfTime = s.order.ShelfTime.HasValue ? s.order.ShelfTime.Value.ToString("yyyy-MM-dd HH:mm:ss") : "",
CreateTime = s.detail.CreateTime.ToString("yyyy-MM-dd HH:mm:ss"),
CreateTime = s.order.CreateTime.ToString("yyyy-MM-dd HH:mm:ss"),
}).OrderByDescending(x => x.Id).Skip((dto.PageNo - 1) * dto.PageSize).Take(dto.PageSize).ToListAsync();
response.Data = list;