This commit is contained in:
2018-08-31 17:53:21 +00:00
parent 9067f9695f
commit 4121cb5928
4 changed files with 30 additions and 26 deletions

View File

@@ -383,9 +383,9 @@ namespace AyaNova.Biz
public async Task<bool> ImportV7Async(JObject j, List<ImportAyaNova7MapItem> importMap, Guid jobId)
{
//some types need to import from more than one source hence the seemingly redundant switch statement for futureproofing
switch (j["V7_TYPE"].Value<string>())
switch (j["IMPORT_TASK"].Value<string>())
{
case "GZTW.AyaNova.BLL.Locale":
case "main":
{
//Get source locale name from filename using regex
var SourceLocaleFileName = j["V7_SOURCE_FILE_NAME"].Value<string>();