case 4038

This commit is contained in:
2021-12-30 18:57:07 +00:00
parent 5dd79d2be3
commit f144f5bd18
3 changed files with 3 additions and 3 deletions

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);