修复bug

This commit is contained in:
18942506660
2024-08-06 16:57:08 +08:00
parent 27d8caaa49
commit b88b9b20cc
3 changed files with 4 additions and 3 deletions

View File

@@ -88,6 +88,7 @@ namespace WMS.Web.Api.Controllers
[Route("hj")] [Route("hj")]
public async Task<string> TestHJ() public async Task<string> TestHJ()
{ {
await _inStockTaskService.ErpDel(DateTime.Now.AddHours(-8));
// List<int> boxIds = new List<int>(); // List<int> boxIds = new List<int>();
// boxIds.Add(5324); // boxIds.Add(5324);
//var b= await _inStockService.UnBind(boxIds, true); //var b= await _inStockService.UnBind(boxIds, true);

View File

@@ -836,7 +836,7 @@ namespace WMS.Web.Repositories
.Where(f => f.WmsUpdateTime >= begin) .Where(f => f.WmsUpdateTime >= begin)
.ToListAsync(); .ToListAsync();
return res.Clone(); return res;
} }
} }
} }