This commit is contained in:
jl
2024-12-04 17:04:16 +08:00
parent a867e6244c
commit 261fde99ce
4 changed files with 19 additions and 17 deletions

View File

@ -45,7 +45,7 @@ namespace Epost.TestToolsWeb
foreach (DataRow row in dt.Rows) {
AgvSchedulingTaskModel reqmodel = new AgvSchedulingTaskModel();
reqmodel.reqCode =DateTime.Now.Month+DateTime.Now.Day+ row["id"].ToString();;
reqmodel.reqCode = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds().ToString()+ row["id"].ToString();;
List<Positioncodepath> positionList = new List<Positioncodepath>();
Positioncodepath pathModel = new Positioncodepath();
pathModel.positionCode = inboundBLL.GetLocation(" and wmsloc ='"+ row["spositionCode"].ToString() + "'");