From 0f3c32c5241302db78e7d23dbf0bb1375fec9b58 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 11 Aug 2021 18:41:34 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index d87ec75..75543ef 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -176,7 +176,7 @@ namespace AyaNova.PlugIn.V8 //this holds all objects set to use banking //so that as a final step the servicebank can iterate //it and migrate (objects need to exist first in v8) - private Dictionary BankedObjects = new Dictionary(); + // private Dictionary BankedObjects = new Dictionary(); private Dictionary V7ToV8IdMap = new Dictionary(); @@ -279,7 +279,7 @@ namespace AyaNova.PlugIn.V8 V7ToV8IdMap.Clear(); V7ToV8WorkOrderItemStatusIdMap.Clear(); TagMap.Clear(); - BankedObjects.Clear(); + // BankedObjects.Clear(); LocaleMap.Clear(); @@ -957,8 +957,8 @@ namespace AyaNova.PlugIn.V8 d.techNotes = c.TechNotes; d.accountNumber = c.AccountNumber; d.usesBanking = c.UsesBanking; - if (c.UsesBanking) - BankedObjects.Add(c.ID, RootObjectTypes.Client); + //if (c.UsesBanking) + // BankedObjects.Add(c.ID, RootObjectTypes.Client); if (c.ContractID != Guid.Empty) { @@ -1163,8 +1163,8 @@ namespace AyaNova.PlugIn.V8 d.accountNumber = c.AccountNumber; d.usesBanking = c.UsesBanking; - if (c.UsesBanking) - BankedObjects.Add(c.ID, RootObjectTypes.HeadOffice); + //if (c.UsesBanking) + // BankedObjects.Add(c.ID, RootObjectTypes.HeadOffice); if (c.ContractID != Guid.Empty) { @@ -1813,8 +1813,8 @@ namespace AyaNova.PlugIn.V8 SetTags(d, tags); - if (c.UsesBanking) - BankedObjects.Add(c.ID, RootObjectTypes.Unit); + //if (c.UsesBanking) + // BankedObjects.Add(c.ID, RootObjectTypes.Unit); //Custom fields? if (ShouldExportCustom)