Tag ops initial add test working!! eod

This commit is contained in:
2020-05-17 00:03:24 +00:00
parent 58df7cf308
commit a99ffc0fc7

View File

@@ -346,7 +346,8 @@ namespace AyaNova.Biz
if (jobData.ContainsKey("idList"))
{
idList = jobData["idList"].Value<List<long>>();
idList = ((JArray)jobData["idList"]).ToObject<List<long>>();
// jobData["idList"].Value<List<long>>();
}
else
{
@@ -354,8 +355,7 @@ namespace AyaNova.Biz
//If they wanted to filter (say by Active=true) they can do that from a grid list mass op
idList = await ct.Widget.Select(m => m.Id).ToListAsync();
}
var seedLevel = (Seeder.SeedLevel)jobData["seedLevel"].Value<int>();
var timeZoneOffset = jobData["timeZoneOffset"].Value<decimal>();
bool SaveIt = false;
//Iterate the list fetching each in turn and sending to the processor to handle