This commit is contained in:
@@ -176,7 +176,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
//this holds all objects set to use banking
|
//this holds all objects set to use banking
|
||||||
//so that as a final step the servicebank can iterate
|
//so that as a final step the servicebank can iterate
|
||||||
//it and migrate (objects need to exist first in v8)
|
//it and migrate (objects need to exist first in v8)
|
||||||
private Dictionary<Guid, RootObjectTypes> BankedObjects = new Dictionary<Guid, RootObjectTypes>();
|
// private Dictionary<Guid, RootObjectTypes> BankedObjects = new Dictionary<Guid, RootObjectTypes>();
|
||||||
|
|
||||||
|
|
||||||
private Dictionary<Guid, long> V7ToV8IdMap = new Dictionary<Guid, long>();
|
private Dictionary<Guid, long> V7ToV8IdMap = new Dictionary<Guid, long>();
|
||||||
@@ -279,7 +279,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
V7ToV8IdMap.Clear();
|
V7ToV8IdMap.Clear();
|
||||||
V7ToV8WorkOrderItemStatusIdMap.Clear();
|
V7ToV8WorkOrderItemStatusIdMap.Clear();
|
||||||
TagMap.Clear();
|
TagMap.Clear();
|
||||||
BankedObjects.Clear();
|
// BankedObjects.Clear();
|
||||||
LocaleMap.Clear();
|
LocaleMap.Clear();
|
||||||
|
|
||||||
|
|
||||||
@@ -957,8 +957,8 @@ namespace AyaNova.PlugIn.V8
|
|||||||
d.techNotes = c.TechNotes;
|
d.techNotes = c.TechNotes;
|
||||||
d.accountNumber = c.AccountNumber;
|
d.accountNumber = c.AccountNumber;
|
||||||
d.usesBanking = c.UsesBanking;
|
d.usesBanking = c.UsesBanking;
|
||||||
if (c.UsesBanking)
|
//if (c.UsesBanking)
|
||||||
BankedObjects.Add(c.ID, RootObjectTypes.Client);
|
// BankedObjects.Add(c.ID, RootObjectTypes.Client);
|
||||||
|
|
||||||
if (c.ContractID != Guid.Empty)
|
if (c.ContractID != Guid.Empty)
|
||||||
{
|
{
|
||||||
@@ -1163,8 +1163,8 @@ namespace AyaNova.PlugIn.V8
|
|||||||
|
|
||||||
d.accountNumber = c.AccountNumber;
|
d.accountNumber = c.AccountNumber;
|
||||||
d.usesBanking = c.UsesBanking;
|
d.usesBanking = c.UsesBanking;
|
||||||
if (c.UsesBanking)
|
//if (c.UsesBanking)
|
||||||
BankedObjects.Add(c.ID, RootObjectTypes.HeadOffice);
|
// BankedObjects.Add(c.ID, RootObjectTypes.HeadOffice);
|
||||||
|
|
||||||
if (c.ContractID != Guid.Empty)
|
if (c.ContractID != Guid.Empty)
|
||||||
{
|
{
|
||||||
@@ -1813,8 +1813,8 @@ namespace AyaNova.PlugIn.V8
|
|||||||
|
|
||||||
SetTags(d, tags);
|
SetTags(d, tags);
|
||||||
|
|
||||||
if (c.UsesBanking)
|
//if (c.UsesBanking)
|
||||||
BankedObjects.Add(c.ID, RootObjectTypes.Unit);
|
// BankedObjects.Add(c.ID, RootObjectTypes.Unit);
|
||||||
|
|
||||||
//Custom fields?
|
//Custom fields?
|
||||||
if (ShouldExportCustom)
|
if (ShouldExportCustom)
|
||||||
|
|||||||
Reference in New Issue
Block a user