This commit is contained in:
2020-11-24 23:00:17 +00:00
parent e89f508f99
commit dd967b4e27
4 changed files with 23 additions and 11 deletions

View File

@@ -180,8 +180,7 @@ namespace AyaNova.Biz
var orderedList = from id in batch join z in batchResults on id equals z.Id select z;
foreach (CustomerNote w in orderedList)
{
var jo = JObject.FromObject(w);
// jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
var jo = JObject.FromObject(w);
ReportData.Add(jo);
}
}