From 163c3cde48ad9bda082a1ba26c55f7141094201f Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Mon, 13 Sep 2021 20:15:44 +0000 Subject: [PATCH] --- source/Plugins/AyaNova.Plugin.V8/V8.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 94053bd..adc2976 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -816,6 +816,11 @@ namespace AyaNova.PlugIn.V8 d = rOptions.ObjectResponse["data"]; d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; + d.phone1 = c.Phone1; + d.phone2 = c.Phone2; + d.phone3 = c.PageAddress; + + if (LocaleMap.ContainsKey(c.DefaultLanguage)) d.translationId = LocaleMap[c.DefaultLanguage]; else @@ -993,6 +998,10 @@ namespace AyaNova.PlugIn.V8 d = rOptions.ObjectResponse["data"]; d.uiColor = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(c.ScheduleBackColor)); d.emailAddress = string.IsNullOrWhiteSpace(c.EmailAddress) ? null : c.EmailAddress; + d.phone1 = c.Phone1; + d.phone2 = c.Phone2; + d.phone3 = c.PageAddress; + if (LocaleMap.ContainsKey(c.DefaultLanguage)) d.translationId = LocaleMap[c.DefaultLanguage]; else