clear error

This commit is contained in:
2023-06-16 09:55:52 +08:00
parent 19e49ab740
commit 1fe1eb41df
7 changed files with 11 additions and 8 deletions

View File

@@ -127,7 +127,8 @@ namespace Tnb.WarehouseMgr
preTaskUpInput.LocationIds = points.Select(x => x.location_id).ToList();
preTaskUpInput.PreTaskRecords = preTasks.Adapt<List<WmsHandleH>>();
preTaskUpInput.PreTaskRecords.ForEach(x => x.id = SnowflakeIdHelper.NextId());
await _wareHouseService.GenInStockTaskHandleAfter(preTaskUpInput);
await _wareHouseService.GenInStockTaskHandleAfter(preTaskUpInput, null, null);
}
}