From 4db492a2a25fd73738ede8596938e6a9a6012672 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Fri, 10 Sep 2021 22:03:09 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index bfe63ce..ab6d012 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -3042,6 +3042,7 @@ namespace AyaNova.PlugIn.V8 if (!progress.KeepGoing) return; dynamic d = new JObject(); d.name = GetUniqueName(s.Name); + d.notes = s.Description; progress.Op("WorkOrder status " + d.name); d.active = s.Active; d.locked = false; @@ -3064,6 +3065,7 @@ namespace AyaNova.PlugIn.V8 if (!progress.KeepGoing) return; dynamic d = new JObject(); d.name = GetUniqueName(s.Name); + d.notes = s.Description; progress.Op("WorkOrder ITEM status " + d.name); d.active = s.Active; d.color = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(s.ARGB));