This commit is contained in:
@@ -2437,7 +2437,9 @@ namespace AyaNova.PlugIn.V8
|
||||
progress.Append("Exporting " + pl.Count.ToString() + " service bank records for object id " + bo.Key.ToString() + " type: " + bo.Value.ToString());
|
||||
|
||||
//foreach (ServiceBankListRI.ServiceBankListRIInfo i in pl)
|
||||
for (int x = 0; x < pl.Count; x++)
|
||||
//for (int x = 0; x < pl.Count; x++)
|
||||
//list is backwards order most recent first
|
||||
for (int x = pl.Count-1; x > -1; x--)
|
||||
{
|
||||
|
||||
if (!progress.KeepGoing) return;
|
||||
|
||||
@@ -454,6 +454,9 @@ namespace AyaNova.PlugIn.V8
|
||||
return AyaType.WorkOrderItemLabor;
|
||||
case biz.RootObjectTypes.WorkorderItemTravel:
|
||||
return AyaType.WorkOrderItemTravel;
|
||||
case biz.RootObjectTypes.ServiceBank:
|
||||
return AyaType.ServiceBank;
|
||||
|
||||
|
||||
default:
|
||||
throw new NotImplementedException("V8:util:RootObjectToAyaType -> type " + rot.ToString() + " is not coded yet");
|
||||
|
||||
Reference in New Issue
Block a user