diff --git a/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs b/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs index 1a21e971..9d5faede 100644 --- a/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs +++ b/ProductionMgr/Tnb.ProductionMgr/PrdInstockService.cs @@ -59,7 +59,7 @@ namespace Tnb.ProductionMgr { Dictionary? queryJson = !string.IsNullOrEmpty(input.queryJson) ? Newtonsoft.Json.JsonConvert.DeserializeObject>(input.queryJson) : new Dictionary(); string moCode = queryJson.ContainsKey("mo_task_code") ? queryJson["mo_task_code"].ToString() : ""; - List list = await _repository.AsSugarClient().Queryable() + var list = await _repository.AsSugarClient().Queryable() .LeftJoin((a, b) => a.material_id == b.id) .LeftJoin((a, b, c) => a.mold_id == c.id) .LeftJoin((a, b, c, d) => a.eqp_id == d.id) @@ -78,20 +78,20 @@ namespace Tnb.ProductionMgr estimated_start_date = a.estimated_start_date!.ToString(), estimated_end_date = a.estimated_end_date.ToString(), create_time = a.create_time.ToString() - }).ToListAsync(); - List treeList = list.ToTree(); - treeList = treeList.Skip((input.currentPage - 1) * input.pageSize).Take(input.pageSize).ToList(); - SqlSugarPagedList pagedList = new() - { - list = treeList, - pagination = new Pagination - { - CurrentPage = input.currentPage, - PageSize = input.pageSize, - Total = treeList.Count - } - }; - return PageResult.SqlSugarPageResult(pagedList); + }).ToPagedListAsync(input.currentPage, input.pageSize); + // List treeList = list.ToTree(); + // treeList = treeList.Skip((input.currentPage - 1) * input.pageSize).Take(input.pageSize).ToList(); + // SqlSugarPagedList pagedList = new() + // { + // list = treeList, + // pagination = new Pagination + // { + // CurrentPage = input.currentPage, + // PageSize = input.pageSize, + // Total = treeList.Count + // } + // }; + return PageResult.SqlSugarPageResult(list); } [HttpPost]