From f60ec4af0db3724e53e0e8fd6a72a844df1f8d40 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 6 Jan 2021 16:25:00 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 74300a9..f6df30e 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -343,6 +343,8 @@ namespace AyaNova.PlugIn.V8 await ExportMemos(progress); await ExportServiceWorkorders(progress); + //MIGRATE_OUTSTANDING - here can fixup loanitem workorder id's + //todo: these are now invalid and awaiting RAVEN end implementation //after which can copy mostly from service workorder block // await ExportQuotes(progress); @@ -1326,6 +1328,19 @@ namespace AyaNova.PlugIn.V8 progress.Op(ObjectTypeName + " " + d.name); d.active = c.Active; d.notes = c.Notes; + d.serial = c.Serial; + //MIGRATE_OUTSTANDING + //fixup after workorders + // d.workorderItemLoanId= + d.rateHour = c.RateHour; + d.rateHalfDay = c.RateHalfDay; + d.rateDay = c.RateDay; + d.rateWeek = c.RateWeek; + d.rateMonth = c.RateMonth; + d.rateYear = c.RateYear; + d.defaultRate = 1; + + TagFromv7Guid(c.RegionID, tags); SetTags(d, tags);