bug修复

This commit is contained in:
tongfei
2023-12-06 15:55:46 +08:00
parent acb90e8202
commit 95bc5d7ced
6 changed files with 21 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ namespace WMS.Web.Repositories
Stock = _singleDataService.GetSingleData(SingleAction.StocksJoinOrgCode, _loginRepositories.CompanyId, s.StockCode+s.OrgCode),
Qty = s.Qty,
SurplusQty=s.SurplusQty,
CreateTime = s.CreateTime
CreateTime = s.CreateTime.ToString("yyyy-MM-dd HH:mm:ss"),
}).OrderByDescending(x => x.Id).Skip((dto.PageNo - 1) * dto.PageSize).Take(dto.PageSize).ToListAsync();
return (list,total);