case 4038
This commit is contained in:
@@ -902,7 +902,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(custInfo.TechNotes))
|
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);
|
vc.Add(custInfo.Phone1, "custphone1", o.CustomerId);
|
||||||
|
|||||||
@@ -882,7 +882,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(custInfo.TechNotes))
|
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);
|
vc.Add(custInfo.Phone1, "custphone1", o.CustomerId);
|
||||||
|
|||||||
@@ -1031,7 +1031,7 @@ namespace AyaNova.Biz
|
|||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(custInfo.TechNotes))
|
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);
|
vc.Add(custInfo.Phone1, "custphone1", o.CustomerId);
|
||||||
|
|||||||
Reference in New Issue
Block a user