This commit is contained in:
2021-08-12 15:23:14 +00:00
parent a2fa258766
commit 047cdbe485

View File

@@ -131,13 +131,13 @@ namespace AyaNova.PlugIn.V8
return; return;
} }
//#if(!DEBUG) #if(!DEBUG)
if (!AyaBizUtils.AyaNovaConnectionSetting.SingleUserConnection) if (!AyaBizUtils.AyaNovaConnectionSetting.SingleUserConnection)
{ {
MessageBox.Show("** WARNING: before proceeding ensure no other users are logged into AyaNova to ensure the integrity of your exported data. Failing to do so *will* result in damaged data. ***"); MessageBox.Show("** WARNING: before proceeding ensure no other users are logged into AyaNova to ensure the integrity of your exported data. Failing to do so *will* result in damaged data. ***");
MessageBox.Show("** WARNING: before proceeding make sure your AyaNova Generator service is STOPPED to ensure the integrity of your exported data. Failing to do so *will* result in damaged data. ***"); MessageBox.Show("** WARNING: before proceeding make sure your AyaNova Generator service is STOPPED to ensure the integrity of your exported data. Failing to do so *will* result in damaged data. ***");
} }
//#endif #endif
util.Initialized = false; util.Initialized = false;
Auth d = new Auth(); Auth d = new Auth();
@@ -1605,6 +1605,10 @@ namespace AyaNova.PlugIn.V8
foreach (PartWarehouse i in pl) foreach (PartWarehouse i in pl)
{ {
if (!progress.KeepGoing) return; if (!progress.KeepGoing) return;
if (i.ID == PartWarehouse.DefaultWarehouseID) {
Addv7v8IdMap(i.ID, 1);
continue;
}
List<string> tags = new List<string>(); List<string> tags = new List<string>();
AddImportTag(tags); AddImportTag(tags);
dynamic d = new JObject(); dynamic d = new JObject();