Skip to content
Snippets Groups Projects
Commit 09e5d6d2 authored by daniel's avatar daniel Committed by Daniel Tran
Browse files

#1046801 - Fixed HTML in report description.

parent b68dbc20
No related branches found
No related tags found
No related merge requests found
...@@ -149,20 +149,13 @@ OrgUtils.openOrgReport = function(pOrgId) ...@@ -149,20 +149,13 @@ OrgUtils.openOrgReport = function(pOrgId)
.where("CONTACT.ORGANISATION_ID", pOrgId) //= all activities linked to the organization or an employee .where("CONTACT.ORGANISATION_ID", pOrgId) //= all activities linked to the organization or an employee
.orderBy("ENTRYDATE desc") .orderBy("ENTRYDATE desc")
.table(); .table();
var infoAsHtml = histData[0][4];
var infoWithoutHtml = text.html2text(infoAsHtml);
histData[0][4] = infoWithoutHtml;
var dateFormat = translate.text("dd.MM.yyyy"); var dateFormat = translate.text("dd.MM.yyyy");
histData.forEach(function (row) histData.forEach(function (row)
{ {
row[0] = datetime.toDate(row[0], dateFormat); row[0] = datetime.toDate(row[0], dateFormat);
// convert html to text // convert html to text
if (row[1] == $KeywordRegistry.activityCategory$mail()) row[4] = text.html2text(row[4]);
{
row[4] = text.html2text(row[4]);
}
row[1] = KeywordUtils.getViewValue($KeywordRegistry.activityCategory(), row[1]); row[1] = KeywordUtils.getViewValue($KeywordRegistry.activityCategory(), row[1]);
_joinArrayVals(row, 2, 2); _joinArrayVals(row, 2, 2);
......
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