This commit is contained in:
@@ -269,7 +269,8 @@ namespace AyaNova.Biz
|
|||||||
foreach (Customer w in orderedList)
|
foreach (Customer w in orderedList)
|
||||||
{
|
{
|
||||||
var jo = JObject.FromObject(w);
|
var jo = JObject.FromObject(w);
|
||||||
jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
|
if (!JsonUtil.JTokenIsNullOrEmpty(jo["CustomFields"]))
|
||||||
|
jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
|
||||||
ReportData.Add(jo);
|
ReportData.Add(jo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -295,7 +296,7 @@ namespace AyaNova.Biz
|
|||||||
public async Task<List<string>> ImportData(JArray ja)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
{
|
{
|
||||||
List<string> ImportResult = new List<string>();
|
List<string> ImportResult = new List<string>();
|
||||||
string ImportTag=$"imported-{FileUtil.GetSafeDateFileName()}";
|
string ImportTag = $"imported-{FileUtil.GetSafeDateFileName()}";
|
||||||
|
|
||||||
var jsset = JsonSerializer.CreateDefault(new JsonSerializerSettings { ContractResolver = new AyaNova.Util.JsonUtil.ShouldSerializeContractResolver(new string[] { "Concurrency", "Id", "CustomFields" }) });
|
var jsset = JsonSerializer.CreateDefault(new JsonSerializerSettings { ContractResolver = new AyaNova.Util.JsonUtil.ShouldSerializeContractResolver(new string[] { "Concurrency", "Id", "CustomFields" }) });
|
||||||
foreach (JObject j in ja)
|
foreach (JObject j in ja)
|
||||||
|
|||||||
@@ -181,7 +181,6 @@ namespace AyaNova.Biz
|
|||||||
foreach (CustomerNote w in orderedList)
|
foreach (CustomerNote w in orderedList)
|
||||||
{
|
{
|
||||||
var jo = JObject.FromObject(w);
|
var jo = JObject.FromObject(w);
|
||||||
// jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
|
|
||||||
ReportData.Add(jo);
|
ReportData.Add(jo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -303,7 +303,8 @@ namespace AyaNova.Biz
|
|||||||
foreach (Widget w in orderedList)
|
foreach (Widget w in orderedList)
|
||||||
{
|
{
|
||||||
var jo = JObject.FromObject(w);
|
var jo = JObject.FromObject(w);
|
||||||
jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
|
if (!JsonUtil.JTokenIsNullOrEmpty(jo["CustomFields"]))
|
||||||
|
jo["CustomFields"] = JObject.Parse((string)jo["CustomFields"]);
|
||||||
ReportData.Add(jo);
|
ReportData.Add(jo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -332,7 +333,7 @@ namespace AyaNova.Biz
|
|||||||
public async Task<List<string>> ImportData(JArray ja)
|
public async Task<List<string>> ImportData(JArray ja)
|
||||||
{
|
{
|
||||||
List<string> ImportResult = new List<string>();
|
List<string> ImportResult = new List<string>();
|
||||||
string ImportTag=$"imported-{FileUtil.GetSafeDateFileName()}";
|
string ImportTag = $"imported-{FileUtil.GetSafeDateFileName()}";
|
||||||
|
|
||||||
var jsset = JsonSerializer.CreateDefault(new JsonSerializerSettings { ContractResolver = new AyaNova.Util.JsonUtil.ShouldSerializeContractResolver(new string[] { "Concurrency", "Id", "CustomFields" }) });
|
var jsset = JsonSerializer.CreateDefault(new JsonSerializerSettings { ContractResolver = new AyaNova.Util.JsonUtil.ShouldSerializeContractResolver(new string[] { "Concurrency", "Id", "CustomFields" }) });
|
||||||
foreach (JObject j in ja)
|
foreach (JObject j in ja)
|
||||||
|
|||||||
@@ -69,6 +69,15 @@ namespace AyaNova.Util
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool JTokenIsNullOrEmpty(JToken token)
|
||||||
|
{
|
||||||
|
return (token == null) ||
|
||||||
|
(token.Type == JTokenType.Array && !token.HasValues) ||
|
||||||
|
(token.Type == JTokenType.Object && !token.HasValues) ||
|
||||||
|
(token.Type == JTokenType.String && token.ToString() == String.Empty) ||
|
||||||
|
(token.Type == JTokenType.Null);
|
||||||
|
}
|
||||||
|
|
||||||
//Contract resolver used for exporting to file translations and report templates
|
//Contract resolver used for exporting to file translations and report templates
|
||||||
//and ignoring specified propertes
|
//and ignoring specified propertes
|
||||||
public class ShouldSerializeContractResolver : DefaultContractResolver
|
public class ShouldSerializeContractResolver : DefaultContractResolver
|
||||||
@@ -88,6 +97,8 @@ namespace AyaNova.Util
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}//eoc
|
}//eoc
|
||||||
|
|
||||||
}//eons
|
}//eons
|
||||||
Reference in New Issue
Block a user