Hi Team,
Please help to fix below issue:
Can not apply operator ‘||’ to operands of type ‘System.Nullable`1[System.Boolean]’ and ‘System.Boolean’."
Template is in attachment.Template.docx (36.3 KB)
JSON Data
{
"JDEOrderDetails": {
"Header": {
"TotalAmount": 0.00
}
},
"Address":"India",
"CurrencySymbol": "$",
"IsCreditOrder": false
}
Below is code I am using:
ReportingEngine reportingEngine = new ReportingEngine();
JsonDataSource documentJsonData = new JsonDataSource(myData);
reportingEngine.BuildReport(templateDocument, documentJsonData);
templateDocument.Save(generatedDocument, PDF);