case 4341

This commit is contained in:
2022-12-14 00:55:01 +00:00
parent 6c9169fa07
commit 33828ca682
2 changed files with 12 additions and 4 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("8.0.3.0")]
[assembly: AssemblyFileVersion("8.0.3.0")]
[assembly: AssemblyVersion("8.0.4.0")]
[assembly: AssemblyFileVersion("8.0.4.0")]

View File

@@ -35,7 +35,7 @@ namespace AyaNova.PlugIn.V8
public string PluginVersion
{
get { return "8.0.3"; }
get { return "8.0.4"; }
}
public string About
@@ -162,7 +162,8 @@ namespace AyaNova.PlugIn.V8
ImportTag = util.NormalizeTag(dOpt.Tags);
util.HTTPCLIENT_TIMEOUT_SECONDS = dOpt.HTTPTimeOut;
util.InitClient();
MessageBox.Show("Migration will stop and fail immediately if you login to the AyaNova 8 server before migration has completed.", "Beware");
MessageBox.Show("- Migration will stop and fail immediately if you login to the AyaNova 8 server before migration has completed.\r\n\r\n- Older data may contain unexpected values requiring a work-around to migrate.\r\nIf this happens contact Support with the migration log for assistance.", "Note");
//here because we logged in fine and can proceed
if (MessageBox.Show("Warning: if you continue the AyaNova 8 destination server's database will be erased.\r\nAre you sure you want to continue?", "Erase data warning", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return;
if (MessageBox.Show("Last chance: the next step will start migration and the AyaNova 8 target server's data will be erased.\r\nAre you sure you want to proceed?", "Continue migration", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) return;
@@ -1259,6 +1260,7 @@ namespace AyaNova.PlugIn.V8
d.city = c.GoToAddress.City;
d.region = c.GoToAddress.StateProv;
d.country = c.GoToAddress.Country;
d.addressPostal = c.GoToAddress.Postal;
d.latitude = c.GoToAddress.Latitude;
d.longitude = c.GoToAddress.Longitude;
@@ -1469,6 +1471,7 @@ namespace AyaNova.PlugIn.V8
d.city = c.GoToAddress.City;
d.region = c.GoToAddress.StateProv;
d.country = c.GoToAddress.Country;
d.addressPostal = c.GoToAddress.Postal;
d.latitude = c.GoToAddress.Latitude;
d.longitude = c.GoToAddress.Longitude;
@@ -2635,6 +2638,7 @@ namespace AyaNova.PlugIn.V8
d.city = c.GoToAddress.City;
d.region = c.GoToAddress.StateProv;
d.country = c.GoToAddress.Country;
d.addressPostal = c.GoToAddress.Postal;
d.latitude = c.GoToAddress.Latitude;
d.longitude = c.GoToAddress.Longitude;
}
@@ -2909,6 +2913,7 @@ namespace AyaNova.PlugIn.V8
d.city = c.GoToAddress.City;
d.region = c.GoToAddress.StateProv;
d.country = c.GoToAddress.Country;
d.addressPostal = c.GoToAddress.Postal;
d.latitude = c.GoToAddress.Latitude;
d.longitude = c.GoToAddress.Longitude;
switch (c.VendorType)
@@ -3463,6 +3468,7 @@ namespace AyaNova.PlugIn.V8
d.city = client.GoToAddress.City;
d.region = client.GoToAddress.StateProv;
d.country = client.GoToAddress.Country;
d.addressPostal = client.GoToAddress.Postal;
d.latitude = client.GoToAddress.Latitude;
d.longitude = client.GoToAddress.Longitude;
}
@@ -4037,6 +4043,7 @@ namespace AyaNova.PlugIn.V8
d.city = client.GoToAddress.City;
d.region = client.GoToAddress.StateProv;
d.country = client.GoToAddress.Country;
d.addressPostal = client.GoToAddress.Postal;
d.latitude = client.GoToAddress.Latitude;
d.longitude = client.GoToAddress.Longitude;
}
@@ -4404,6 +4411,7 @@ namespace AyaNova.PlugIn.V8
d.city = client.GoToAddress.City;
d.region = client.GoToAddress.StateProv;
d.country = client.GoToAddress.Country;
d.addressPostal = client.GoToAddress.Postal;
d.latitude = client.GoToAddress.Latitude;
d.longitude = client.GoToAddress.Longitude;
}