From bd9282661683d0d2be5dfeb7b2c148a4a4407bc3 Mon Sep 17 00:00:00 2001 From: Daniel Tran <d.tran@adito.de> Date: Thu, 27 May 2021 16:06:53 +0000 Subject: [PATCH] [Projekt: xRM-ContactManagement][TicketNr.: 1078470][Dokumentenvorlage nicht editierbar] - Fixed bug, that changes which were made to the binary behind the document template are not saved. --- .../recordcontainers/db/onDBUpdate.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/entity/DocumentTemplate_entity/recordcontainers/db/onDBUpdate.js b/entity/DocumentTemplate_entity/recordcontainers/db/onDBUpdate.js index dee24321b4..868bf99d8d 100644 --- a/entity/DocumentTemplate_entity/recordcontainers/db/onDBUpdate.js +++ b/entity/DocumentTemplate_entity/recordcontainers/db/onDBUpdate.js @@ -7,10 +7,13 @@ var rowdata = vars.get("$local.rowdata"); var content = vars.get("$field.Content"); var upload = new FileUpload(vars.get("$field.BINDATA")); var rowId = vars.get("$local.uid"); +var htmlEdit = vars.get("$field.HtmlEdit"); -DocumentTemplateUtils.updateTemplateData(rowId, upload, rowdata["DOCUMENTTEMPLATE.KIND"], content, rowdata["DOCUMENTTEMPLATE.CLASSIFICATION"], rowdata["DOCUMENTTEMPLATE.NAME"]); +if(htmlEdit != null && htmlEdit === DocumentTemplateUtils.getTemplateContent(rowId, upload)) +{ + content = htmlEdit; +} -if(vars.get("$field.HtmlEdit") != null) - DocumentTemplateUtils.updateTemplateData(rowId, upload, rowdata["DOCUMENTTEMPLATE.KIND"], vars.get("$field.HtmlEdit"), rowdata["DOCUMENTTEMPLATE.CLASSIFICATION"], rowdata["DOCUMENTTEMPLATE.NAME"]) - -WorkflowSignalSender.updated(); \ No newline at end of file +DocumentTemplateUtils.updateTemplateData(rowId, upload, rowdata["DOCUMENTTEMPLATE.KIND"], content, + rowdata["DOCUMENTTEMPLATE.CLASSIFICATION"], rowdata["DOCUMENTTEMPLATE.NAME"]); +WorkflowSignalSender.updated(); -- GitLab