This commit is contained in:
2018-08-30 19:25:09 +00:00
parent b016795875
commit 436e80a9eb
2 changed files with 29 additions and 2 deletions

View File

@@ -132,8 +132,23 @@ namespace AyaNova.Biz
//Now can do user locale settings properly //Now can do user locale settings properly
await DoImport("GZTW.AyaNova.BLL.User-locale", AyaType.User, job.GId, importMap, importFileName, zipEntries); await DoImport("GZTW.AyaNova.BLL.User-locale", AyaType.User, job.GId, importMap, importFileName, zipEntries);
//CLIENT
//do import for client here
//Now can do user client settings properly
//await DoImport("GZTW.AyaNova.BLL.User-client", AyaType.User, job.GId, importMap, importFileName, zipEntries);
//HEADOFFICE
//do import for ho here
//Now can do user ho settings properly
//await DoImport("GZTW.AyaNova.BLL.User-headoffice", AyaType.User, job.GId, importMap, importFileName, zipEntries);
//TODO: second pass now that all objects are in the db, need to go through again and set properties based on all imported data, e.g. scheduleableUserGroups are tags that must now be set on users //TODO: second pass now that all objects are in the db, need to go through again and set properties based on all imported data, e.g. scheduleableUserGroups are tags that must now be set on users
//----------------
JobsBiz.LogJob(job.GId, "ImportAyaNova7 finished", ct); JobsBiz.LogJob(job.GId, "ImportAyaNova7 finished", ct);
JobsBiz.UpdateJobStatus(job.GId, JobStatus.Completed, ct); JobsBiz.UpdateJobStatus(job.GId, JobStatus.Completed, ct);

View File

@@ -465,6 +465,18 @@ namespace AyaNova.Biz
//handle tag entries for users now that we have the SUG tags created //handle tag entries for users now that we have the SUG tags created
throw new System.NotImplementedException(); throw new System.NotImplementedException();
} }
//break;
case "GZTW.AyaNova.BLL.User-client":
{
//handle setting client id for user client login
throw new System.NotImplementedException();
}
//break;
case "GZTW.AyaNova.BLL.User-headoffice":
{
//handle setting ho id for user headoffice login
throw new System.NotImplementedException();
}
//break; //break;
} }