diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index d138508..3e300c6 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -501,7 +501,6 @@ namespace AyaNova.PlugIn.V8 await ExportPartAssemblies(progress); await ExportProjects(progress); await ExportPurchaseOrders(progress); - await ExportAdjustmentSerials(progress); await ExportUnitModels(progress); await ExportUnits(progress); await ExportExternalUsers(progress);//needs vendors, clients and headoffices already exported so needs to be here late @@ -523,6 +522,7 @@ namespace AyaNova.PlugIn.V8 await ExportClientServiceRequests(progress); await SynchronizeInventory(progress); + await SynchronizeSerials(progress); await ExportGlobalSettings(progress); await ExportGlobalRegionalWiki(progress); @@ -2291,12 +2291,9 @@ namespace AyaNova.PlugIn.V8 } } #endregion PurchaseOrders - - - #region Inventory adjustment serials - - - private async System.Threading.Tasks.Task ExportAdjustmentSerials(ProgressForm progress) + + #region Synchronize serials + private async System.Threading.Tasks.Task SynchronizeSerials(ProgressForm progress) { if (!progress.KeepGoing) return; @@ -2348,8 +2345,7 @@ namespace AyaNova.PlugIn.V8 }//end of inventory item loop } #endregion Synchronize serials - - + #region Task groups private async System.Threading.Tasks.Task ExportTaskGroups(ProgressForm progress) {