调整时间显示
This commit is contained in:
@@ -8,6 +8,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto;
|
||||
using WMS.Web.Core.Dto.ChangeBoxRecord;
|
||||
using WMS.Web.Core.Help;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
using WMS.Web.Domain.Infrastructure;
|
||||
using WMS.Web.Repositories.Configuration;
|
||||
@@ -91,7 +92,7 @@ namespace WMS.Web.Repositories
|
||||
SrcSubStock = "",
|
||||
DestSubStock = "",
|
||||
Creator = "",
|
||||
CreateTime =s.CreateTime
|
||||
CreateTime =s.CreateTime.DateToStringSeconds()
|
||||
#endregion
|
||||
|
||||
}).Skip((dto.PageNo - 1) * dto.PageSize).Take(dto.PageSize).ToListAsync();
|
||||
|
||||
@@ -7,6 +7,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.MoveBoxRecord;
|
||||
using WMS.Web.Core.Help;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
using WMS.Web.Domain.Infrastructure;
|
||||
using WMS.Web.Repositories.Configuration;
|
||||
@@ -87,7 +88,7 @@ namespace WMS.Web.Repositories
|
||||
Qty = 0,
|
||||
Type = "",
|
||||
Creator = "",
|
||||
CreateTime = s.CreateTime
|
||||
CreateTime = s.CreateTime.DateToStringSeconds()
|
||||
#endregion
|
||||
|
||||
}).Skip((dto.PageNo - 1) * dto.PageSize).Take(dto.PageSize).ToListAsync();
|
||||
|
||||
@@ -7,6 +7,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.OutStock;
|
||||
using WMS.Web.Core.Help;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
using WMS.Web.Domain.Infrastructure;
|
||||
using WMS.Web.Repositories.Configuration;
|
||||
@@ -84,7 +85,7 @@ namespace WMS.Web.Repositories
|
||||
Status = "",
|
||||
Type = "",
|
||||
Creator = "",
|
||||
CreateTime=s.CreateTime,
|
||||
CreateTime=s.CreateTime.DateToStringSeconds(),
|
||||
SuccessSync = s.SuccessSync,
|
||||
Stock = "",
|
||||
SourceBillNo="",
|
||||
|
||||
@@ -7,6 +7,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.TakeStock;
|
||||
using WMS.Web.Core.Help;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
using WMS.Web.Domain.Infrastructure;
|
||||
using WMS.Web.Repositories.Configuration;
|
||||
@@ -91,7 +92,7 @@ namespace WMS.Web.Repositories
|
||||
ResultType="",
|
||||
Remark="",
|
||||
Creator = "",
|
||||
Date = s.Date,
|
||||
Date = s.Date.DateToStringSeconds(),
|
||||
SuccessSync=s.SuccessSync
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user