Tag ops initial add test working!! eod
This commit is contained in:
@@ -346,7 +346,8 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
if (jobData.ContainsKey("idList"))
|
if (jobData.ContainsKey("idList"))
|
||||||
{
|
{
|
||||||
idList = jobData["idList"].Value<List<long>>();
|
idList = ((JArray)jobData["idList"]).ToObject<List<long>>();
|
||||||
|
// jobData["idList"].Value<List<long>>();
|
||||||
}
|
}
|
||||||
else
|
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
|
//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();
|
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;
|
bool SaveIt = false;
|
||||||
//Iterate the list fetching each in turn and sending to the processor to handle
|
//Iterate the list fetching each in turn and sending to the processor to handle
|
||||||
|
|||||||
Reference in New Issue
Block a user