From f144f5bd18b3e170f7eebe91c821e367f741cb15 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 30 Dec 2021 18:57:07 +0000 Subject: [PATCH] case 4038 --- server/AyaNova/biz/PMBiz.cs | 2 +- server/AyaNova/biz/QuoteBiz.cs | 2 +- server/AyaNova/biz/WorkOrderBiz.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server/AyaNova/biz/PMBiz.cs b/server/AyaNova/biz/PMBiz.cs index ac07c45e..fa2d5de9 100644 --- a/server/AyaNova/biz/PMBiz.cs +++ b/server/AyaNova/biz/PMBiz.cs @@ -902,7 +902,7 @@ namespace AyaNova.Biz if (!string.IsNullOrWhiteSpace(custInfo.TechNotes)) { - vc.Add($"{await Translate("CustomerTechNotes")}\n{custInfo.TechNotes}\n\n", "custtechnotes", o.CustomerId); + vc.Add(custInfo.TechNotes, "custtechnotes", o.CustomerId); } vc.Add(custInfo.Phone1, "custphone1", o.CustomerId); diff --git a/server/AyaNova/biz/QuoteBiz.cs b/server/AyaNova/biz/QuoteBiz.cs index a0be228a..446996d0 100644 --- a/server/AyaNova/biz/QuoteBiz.cs +++ b/server/AyaNova/biz/QuoteBiz.cs @@ -882,7 +882,7 @@ namespace AyaNova.Biz if (!string.IsNullOrWhiteSpace(custInfo.TechNotes)) { - vc.Add($"{await Translate("CustomerTechNotes")}\n{custInfo.TechNotes}\n\n", "custtechnotes", o.CustomerId); + vc.Add(custInfo.TechNotes, "custtechnotes", o.CustomerId); } vc.Add(custInfo.Phone1, "custphone1", o.CustomerId); diff --git a/server/AyaNova/biz/WorkOrderBiz.cs b/server/AyaNova/biz/WorkOrderBiz.cs index 918a0a1a..539f2b16 100644 --- a/server/AyaNova/biz/WorkOrderBiz.cs +++ b/server/AyaNova/biz/WorkOrderBiz.cs @@ -1031,7 +1031,7 @@ namespace AyaNova.Biz if (!string.IsNullOrWhiteSpace(custInfo.TechNotes)) { - vc.Add($"{await Translate("CustomerTechNotes")}\n{custInfo.TechNotes}\n\n", "custtechnotes", o.CustomerId); + vc.Add(custInfo.TechNotes, "custtechnotes", o.CustomerId); } vc.Add(custInfo.Phone1, "custphone1", o.CustomerId);