From b54ad90424dd78d4202e08ec338de0e3e751d31d Mon Sep 17 00:00:00 2001 From: "S.Listl" <S.Listl@slistl-nb.aditosoftware.local> Date: Fri, 17 Apr 2020 13:36:13 +0000 Subject: [PATCH] 1056286 Bulkmail bugfixing (cherry picked from commit 26e9dd334faf5808f5c892606c5fa2f98cd69482) --- entity/BulkMail_entity/BulkMail_entity.aod | 18 +++++++----------- .../entityfields/bindata/onValueChange.js | 4 ++-- .../content/contentTypeProcess.js | 2 +- .../content/displayValueProcess.js | 4 ++-- .../entityfields/content/stateProcess.js | 19 ++++--------------- .../entityfields/content/valueProcess.js | 6 +++--- .../stateProcess.js | 0 .../valueProcess.js | 0 .../documenttemplate_id/onValueChange.js | 2 +- .../entityfields/subject/valueProcess.js | 4 ++++ .../subjectpreview/documentation.adoc | 5 +++++ .../viewmode_preview/stateProcess.js | 12 ------------ .../viewmode_preview/valueProcess.js | 4 ---- .../recordcontainers/db/onDBInsert.js | 2 +- .../recordcontainers/db/onDBUpdate.js | 2 +- .../BulkMailContent_view.aod | 6 +----- .../BulkMailEdit_view/BulkMailEdit_view.aod | 4 ++-- process/Bulkmail_lib/process.js | 2 +- 18 files changed, 35 insertions(+), 61 deletions(-) rename entity/BulkMail_entity/entityfields/{preview => contentpreview}/stateProcess.js (100%) rename entity/BulkMail_entity/entityfields/{preview => contentpreview}/valueProcess.js (100%) create mode 100644 entity/BulkMail_entity/entityfields/subjectpreview/documentation.adoc delete mode 100644 entity/BulkMail_entity/entityfields/viewmode_preview/stateProcess.js delete mode 100644 entity/BulkMail_entity/entityfields/viewmode_preview/valueProcess.js diff --git a/entity/BulkMail_entity/BulkMail_entity.aod b/entity/BulkMail_entity/BulkMail_entity.aod index 78ee23cd08..6df0d2818b 100644 --- a/entity/BulkMail_entity/BulkMail_entity.aod +++ b/entity/BulkMail_entity/BulkMail_entity.aod @@ -135,6 +135,7 @@ <entityFieldGroup> <name>subjectPreview</name> <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/subjectpreview/valueProcess.js</valueProcess> + <documentation>%aditoprj%/entity/BulkMail_entity/entityfields/subjectpreview/documentation.adoc</documentation> <fields> <element>SUBJECT</element> </fields> @@ -148,7 +149,6 @@ <title>Content</title> <contentType>HTML</contentType> <contentTypeProcess>%aditoprj%/entity/BulkMail_entity/entityfields/content/contentTypeProcess.js</contentTypeProcess> - <state>EDITABLE</state> <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/content/stateProcess.js</stateProcess> <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/content/valueProcess.js</valueProcess> <displayValueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/content/displayValueProcess.js</displayValueProcess> @@ -258,19 +258,12 @@ <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/openadminview/stateProcess.js</stateProcess> </entityActionField> <entityField> - <name>preview</name> + <name>contentPreview</name> <title>Preview</title> <contentType>HTML</contentType> <state>INVISIBLE</state> - <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/preview/stateProcess.js</stateProcess> - <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/preview/valueProcess.js</valueProcess> - </entityField> - <entityField> - <name>viewmode_preview</name> - <description></description> - <contentType>HTML</contentType> - <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/viewmode_preview/stateProcess.js</stateProcess> - <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/viewmode_preview/valueProcess.js</valueProcess> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/contentpreview/stateProcess.js</stateProcess> + <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/contentpreview/valueProcess.js</valueProcess> </entityField> <entityField> <name>USE_TEMPLATE_ATTACHMENTS</name> @@ -318,6 +311,9 @@ <name>BulkMailStatus_param</name> <expose v="true" /> </entityParameter> + <entityField> + <name>templateType</name> + </entityField> </entityFields> <recordContainers> <dbRecordContainer> diff --git a/entity/BulkMail_entity/entityfields/bindata/onValueChange.js b/entity/BulkMail_entity/entityfields/bindata/onValueChange.js index 524732a96e..3110c01b0a 100644 --- a/entity/BulkMail_entity/entityfields/bindata/onValueChange.js +++ b/entity/BulkMail_entity/entityfields/bindata/onValueChange.js @@ -7,8 +7,8 @@ import("Document_lib"); // --> only set in $field.content.valueProcess if $field.content is null and set it from here only if MASK triggered change if(vars.get("$sys.viewmode") == neon.FRAME_VIEWMODE_DATASET) { - [content, type] = DocumentTemplateUtils.getTemplateContent(vars.get("$field.DOCUMENTTEMPLATE_ID"), new FileUpload(vars.get("$local.value"))); + var [content, type] = DocumentTemplateUtils.getTemplateContent(vars.get("$field.DOCUMENTTEMPLATE_ID"), new FileUpload(vars.get("$local.value"))); vars.set("$field.content", content); - vars.set("$context.currentTemplateType", type); + vars.set("$field.templateType", type); } diff --git a/entity/BulkMail_entity/entityfields/content/contentTypeProcess.js b/entity/BulkMail_entity/entityfields/content/contentTypeProcess.js index 8f43fce966..05b67f21cb 100644 --- a/entity/BulkMail_entity/entityfields/content/contentTypeProcess.js +++ b/entity/BulkMail_entity/entityfields/content/contentTypeProcess.js @@ -5,6 +5,6 @@ import("Document_lib"); import("system.vars"); import("DocumentTemplate_lib"); -result.string(vars.exists("$context.currentTemplateType") && vars.get("$context.currentTemplateType") == DocumentTemplate.types.TXT +result.string(vars.get("$field.templateType") == DocumentTemplate.types.TXT ? "LONG_TEXT" : "HTML"); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/content/displayValueProcess.js b/entity/BulkMail_entity/entityfields/content/displayValueProcess.js index 577d092a84..6c8a26aa36 100644 --- a/entity/BulkMail_entity/entityfields/content/displayValueProcess.js +++ b/entity/BulkMail_entity/entityfields/content/displayValueProcess.js @@ -10,12 +10,12 @@ import("DocumentTemplate_lib"); // if this was done for every row, like in a lookup, the performance would be very bad if (vars.get("$sys.viewmode") == neon.FRAME_VIEWMODE_DATASET && vars.get("$field.content")) { - var template = new DocumentTemplate(util.encodeBase64String(vars.get("$field.content")), vars.get("$context.currentTemplateType"), undefined, true) + var template = new DocumentTemplate(util.encodeBase64String(vars.get("$field.content")), vars.get("$field.templateType"), undefined, true) var contactId = EmployeeUtils.getCurrentContactId(); var preview = template.getReplacedContentByContactId(contactId, false, true); - if (vars.get("$context.currentTemplateType") == DocumentTemplate.types.TXT) + if (vars.get("$field.templateType") == DocumentTemplate.types.TXT) result.string(text.text2html(preview, false)); else result.string(preview); diff --git a/entity/BulkMail_entity/entityfields/content/stateProcess.js b/entity/BulkMail_entity/entityfields/content/stateProcess.js index 1debaa6926..24b49f027e 100644 --- a/entity/BulkMail_entity/entityfields/content/stateProcess.js +++ b/entity/BulkMail_entity/entityfields/content/stateProcess.js @@ -4,20 +4,9 @@ import("system.neon"); import("DocumentTemplate_lib"); // in edit mode -if (vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW && vars.exists("$context.currentTemplateType") && - (vars.get("$context.currentTemplateType") == DocumentTemplate.types.EML - || vars.get("$context.currentTemplateType") == DocumentTemplate.types.HTML)) // TODO: invisible for html as there are problems with images which are removed by the html-editor -{ - - result.string(neon.COMPONENTSTATE_INVISIBLE); -} -// in view mode disable, show preview instead: directly after save (in edit view) the state is changed to OPERATINGSTATE_VIEW and this triggers the initionalisation of the html editor (if it is visible) -// For EML-files or other large files this is very bad, as the editor needs a very long time to initialize -else if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_VIEW) -{ +if (vars.get("$sys.recordstate") != neon.OPERATINGSTATE_VIEW && vars.get("$field.templateType") == DocumentTemplate.types.EML) // TODO: invisible for html as there are problems with images which are removed by the html-editor result.string(neon.COMPONENTSTATE_INVISIBLE); -} +else if (vars.get("$field.templateType") == DocumentTemplate.types.EML) + result.string(neon.COMPONENTSTATE_READONLY); else -{ - result.string(neon.COMPONENTSTATE_EDITABLE); -} \ No newline at end of file + result.string(neon.COMPONENTSTATE_EDITABLE); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/content/valueProcess.js b/entity/BulkMail_entity/entityfields/content/valueProcess.js index 6795b3dc6e..074df4370f 100644 --- a/entity/BulkMail_entity/entityfields/content/valueProcess.js +++ b/entity/BulkMail_entity/entityfields/content/valueProcess.js @@ -14,12 +14,12 @@ if (vars.get("$sys.viewmode") == neon.FRAME_VIEWMODE_DATASET && vars.get("$this. { var content = util.decodeBase64String(template.content); var type = template.type; - vars.set("$context.currentTemplateType", type); + vars.set("$field.templateType", type); result.string(content); } } -else if (!vars.get("$field.DOCUMENTTEMPLATE_ID")) +else if (!vars.get("$field.DOCUMENTTEMPLATE_ID") && vars.get("$this.value") == null) { result.string(""); - vars.set("$context.currentTemplateType", ""); + vars.set("$field.templateType", ""); } diff --git a/entity/BulkMail_entity/entityfields/preview/stateProcess.js b/entity/BulkMail_entity/entityfields/contentpreview/stateProcess.js similarity index 100% rename from entity/BulkMail_entity/entityfields/preview/stateProcess.js rename to entity/BulkMail_entity/entityfields/contentpreview/stateProcess.js diff --git a/entity/BulkMail_entity/entityfields/preview/valueProcess.js b/entity/BulkMail_entity/entityfields/contentpreview/valueProcess.js similarity index 100% rename from entity/BulkMail_entity/entityfields/preview/valueProcess.js rename to entity/BulkMail_entity/entityfields/contentpreview/valueProcess.js diff --git a/entity/BulkMail_entity/entityfields/documenttemplate_id/onValueChange.js b/entity/BulkMail_entity/entityfields/documenttemplate_id/onValueChange.js index 6673df6b95..5f100fbe60 100644 --- a/entity/BulkMail_entity/entityfields/documenttemplate_id/onValueChange.js +++ b/entity/BulkMail_entity/entityfields/documenttemplate_id/onValueChange.js @@ -10,7 +10,7 @@ if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW || vars.get("$sys.re // note: could not use only the valueProcess from $field.content because then it refreshed $field.content just before save. // --> only set in $field.content.valueProcess if $field.content is null and set it from here only if MASK triggered change [content, type] = DocumentTemplateUtils.getTemplateContent(vars.get("$local.value"), new FileUpload(vars.get("$field.bindata"))); - vars.set("$context.currentTemplateType", type); + vars.set("$field.templateType", type); vars.set("$field.content", content); // TODO: load subject without loadTemplate again... maybe return with getTemplateContent() above? diff --git a/entity/BulkMail_entity/entityfields/subject/valueProcess.js b/entity/BulkMail_entity/entityfields/subject/valueProcess.js index 757195e128..6972d86ddb 100644 --- a/entity/BulkMail_entity/entityfields/subject/valueProcess.js +++ b/entity/BulkMail_entity/entityfields/subject/valueProcess.js @@ -5,6 +5,10 @@ import("DocumentTemplate_lib"); import("system.neon"); import("system.vars"); +/* external field changes can be done by: + * - DOCUMENTTEMPLATE_ID.onValueChange + */ + if (vars.get("$this.value") == null && vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW) { var upload = new FileUpload(vars.get("$field.bindata")); diff --git a/entity/BulkMail_entity/entityfields/subjectpreview/documentation.adoc b/entity/BulkMail_entity/entityfields/subjectpreview/documentation.adoc new file mode 100644 index 0000000000..a845e1eba2 --- /dev/null +++ b/entity/BulkMail_entity/entityfields/subjectpreview/documentation.adoc @@ -0,0 +1,5 @@ += subjectPreview + +This FieldGroup uses the field "SUBJECT" and replaces its placeholders with the data of the current user so that the user can see what the result +will look like in the end. The reason for using a FieldGroup instead of the displayValueProcess of the field itself is to maintain the possibility +to display the subject without replaced placeholders by putting the field itself on the ViewTemplate. \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/viewmode_preview/stateProcess.js b/entity/BulkMail_entity/entityfields/viewmode_preview/stateProcess.js deleted file mode 100644 index 7bd814b3e1..0000000000 --- a/entity/BulkMail_entity/entityfields/viewmode_preview/stateProcess.js +++ /dev/null @@ -1,12 +0,0 @@ -import("system.neon"); -import("system.result"); -import("system.vars"); - -if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_VIEW) -{ - result.string(neon.COMPONENTSTATE_EDITABLE); -} -else -{ - result.string(neon.COMPONENTSTATE_INVISIBLE); -} \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/viewmode_preview/valueProcess.js b/entity/BulkMail_entity/entityfields/viewmode_preview/valueProcess.js deleted file mode 100644 index 03c92562f2..0000000000 --- a/entity/BulkMail_entity/entityfields/viewmode_preview/valueProcess.js +++ /dev/null @@ -1,4 +0,0 @@ -import("system.vars"); -import("system.result"); - -result.string(vars.get("$field.content.displayValue")); \ No newline at end of file diff --git a/entity/BulkMail_entity/recordcontainers/db/onDBInsert.js b/entity/BulkMail_entity/recordcontainers/db/onDBInsert.js index e8fcb2f9e5..37e06209f5 100644 --- a/entity/BulkMail_entity/recordcontainers/db/onDBInsert.js +++ b/entity/BulkMail_entity/recordcontainers/db/onDBInsert.js @@ -9,7 +9,7 @@ import("system.util"); import("Document_lib"); import("Bulkmail_lib"); -if (vars.get("$context.currentTemplateType") != DocumentTemplate.types.EML) +if (vars.get("$field.templateType") != DocumentTemplate.types.EML) var content = vars.get("$field.content"); var bindata = vars.get("$field.bindata"); diff --git a/entity/BulkMail_entity/recordcontainers/db/onDBUpdate.js b/entity/BulkMail_entity/recordcontainers/db/onDBUpdate.js index 258fff593d..99d5ba31c2 100644 --- a/entity/BulkMail_entity/recordcontainers/db/onDBUpdate.js +++ b/entity/BulkMail_entity/recordcontainers/db/onDBUpdate.js @@ -9,7 +9,7 @@ import("Document_lib"); import("Bulkmail_lib"); // eml is not editable -if (vars.get("$context.currentTemplateType") != DocumentTemplate.types.EML) +if (vars.get("$field.templateType") != DocumentTemplate.types.EML) var content = vars.get("$field.content"); var bindata = vars.get("$field.bindata"); diff --git a/neonView/BulkMailContent_view/BulkMailContent_view.aod b/neonView/BulkMailContent_view/BulkMailContent_view.aod index dbca131c4a..ba5614086a 100644 --- a/neonView/BulkMailContent_view/BulkMailContent_view.aod +++ b/neonView/BulkMailContent_view/BulkMailContent_view.aod @@ -32,13 +32,9 @@ <entityField>#ENTITY</entityField> <fields> <entityFieldLink> - <name>af0d45a2-a96f-4031-a93d-62ac177efb43</name> + <name>30f0e67c-3965-4506-b924-9d0e2693c2af</name> <entityField>content</entityField> </entityFieldLink> - <entityFieldLink> - <name>3843d183-f2ed-4cc3-9202-e2414e0fb594</name> - <entityField>viewmode_preview</entityField> - </entityFieldLink> </fields> </genericViewTemplate> </children> diff --git a/neonView/BulkMailEdit_view/BulkMailEdit_view.aod b/neonView/BulkMailEdit_view/BulkMailEdit_view.aod index 6a053917c6..48c0705557 100644 --- a/neonView/BulkMailEdit_view/BulkMailEdit_view.aod +++ b/neonView/BulkMailEdit_view/BulkMailEdit_view.aod @@ -83,8 +83,8 @@ <entityField>#ENTITY</entityField> <fields> <entityFieldLink> - <name>cd6a398f-de68-433d-aa67-4f1084ab4971</name> - <entityField>preview</entityField> + <name>1c1edba7-ad81-4e91-97cc-9017cfda3d31</name> + <entityField>contentPreview</entityField> </entityFieldLink> </fields> </genericViewTemplate> diff --git a/process/Bulkmail_lib/process.js b/process/Bulkmail_lib/process.js index be29041942..ee3eb81dd4 100644 --- a/process/Bulkmail_lib/process.js +++ b/process/Bulkmail_lib/process.js @@ -222,7 +222,7 @@ BulkMailUtils.addRecipients = function (pBulkMailId, pContactIds) */ BulkMailUtils.getBulkMailTemplate = function (pBulkMailId, pDocumentTemplateId, pResolveSubtemplates, pUseTemplateAttachments, pUpload) { - if (pUpload.isFilled() && BulkMailUtils.isValidMimeType(pUpload.mimeType)) + if (pUpload && pUpload.isFilled() && BulkMailUtils.isValidMimeType(pUpload.mimeType)) return DocumentTemplate.fromUpload(pUpload); var bulkTemplate = DocumentTemplate.loadTemplate(pBulkMailId, "BULKMAIL", pResolveSubtemplates); -- GitLab