From 33828ca68220cfd32e02cd0c603b77952fd6268d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 14 Dec 2022 00:55:01 +0000 Subject: [PATCH] case 4341 --- .../AyaNova.Plugin.V8/Properties/AssemblyInfo.cs | 4 ++-- source/Plugins/AyaNova.Plugin.V8/V8.cs | 12 ++++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/source/Plugins/AyaNova.Plugin.V8/Properties/AssemblyInfo.cs b/source/Plugins/AyaNova.Plugin.V8/Properties/AssemblyInfo.cs index 4caf614..9f8f9ef 100644 --- a/source/Plugins/AyaNova.Plugin.V8/Properties/AssemblyInfo.cs +++ b/source/Plugins/AyaNova.Plugin.V8/Properties/AssemblyInfo.cs @@ -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")] diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 3b74578..ef47a57 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -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; }