Skip to content
Snippets Groups Projects
Commit b68dbc20 authored by daniel's avatar daniel
Browse files

#1046801 - Fixed HTML in report description.

parent 7b45cab6
No related branches found
No related tags found
No related merge requests found
......@@ -149,6 +149,10 @@ OrgUtils.openOrgReport = function(pOrgId)
.where("CONTACT.ORGANISATION_ID", pOrgId) //= all activities linked to the organization or an employee
.orderBy("ENTRYDATE desc")
.table();
var infoAsHtml = histData[0][4];
var infoWithoutHtml = text.html2text(infoAsHtml);
histData[0][4] = infoWithoutHtml;
var dateFormat = translate.text("dd.MM.yyyy");
histData.forEach(function (row)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment