From 9ccc1c43b428f3fd0a2660f316f69f56ffbbb550 Mon Sep 17 00:00:00 2001 From: Vinzent Broens <v.broens@adito.de> Date: Mon, 12 Jul 2021 09:37:44 +0000 Subject: [PATCH] [Projekt: xRM-Marketing][TicketNr.: 1081635][Einheitliche Bezeichnung des Status "Nicht versendet" oder "Ausstehend"] --- .../basic/2021.1.2/Bulkmail/changelog.xml | 4 + .../insertBulkmailRecipientStatus.xml | 17 ++++ .../Data_alias/basic/2021.1.2/changelog.xml | 5 ++ .liquibase/Data_alias/changelog.xml | 2 +- .../BulkMailRecipient_entity.aod | 1 + .../tooltipProcess.js | 2 +- .../startmarketingworkflows/tooltipProcess.js | 4 + .../entityfields/status/valueProcess.js | 2 +- entity/BulkMail_entity/BulkMail_entity.aod | 88 ++++++++++++------- .../cancelobservation/onActionProcess.js | 3 + .../cancelobservation/stateProcess.js | 6 ++ .../cancelobservation/titleProcess.js | 5 ++ .../children/observe/onActionProcess.js | 3 + .../children/observe/stateProcess.js | 5 ++ .../children/observe/titleProcess.js | 5 ++ .../entityfields/sendmail/onActionProcess.js | 4 + .../CampaignStep_entity.aod | 5 ++ .../group/children/movedown/tooltipProcess.js | 4 + .../group/children/moveup/tooltipProcess.js | 4 + .../WeblinkClick_entity.aod | 2 +- .../WeblinkTag_entity/WeblinkTag_entity.aod | 2 +- entity/Weblink_entity/Weblink_entity.aod | 2 +- .../entityfields/url/onValidation.js | 4 +- .../_____LANGUAGE_EXTRA.aod | 49 ++--------- .../_____LANGUAGE_de/_____LANGUAGE_de.aod | 30 +++++-- .../_____LANGUAGE_en/_____LANGUAGE_en.aod | 33 +++++-- process/KeywordRegistry_basic/process.js | 1 + process/Observation_lib/process.js | 1 + 28 files changed, 196 insertions(+), 97 deletions(-) create mode 100644 .liquibase/Data_alias/basic/2021.1.2/Bulkmail/changelog.xml create mode 100644 .liquibase/Data_alias/basic/2021.1.2/Bulkmail/insertBulkmailRecipientStatus.xml create mode 100644 .liquibase/Data_alias/basic/2021.1.2/changelog.xml create mode 100644 entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/tooltipProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/onActionProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/stateProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/titleProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/onActionProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/stateProcess.js create mode 100644 entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/titleProcess.js create mode 100644 entity/CampaignStep_entity/entityfields/group/children/movedown/tooltipProcess.js create mode 100644 entity/CampaignStep_entity/entityfields/group/children/moveup/tooltipProcess.js diff --git a/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/changelog.xml b/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/changelog.xml new file mode 100644 index 0000000000..d87ac0cd40 --- /dev/null +++ b/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/changelog.xml @@ -0,0 +1,4 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> + <include relativeToChangelogFile="true" file="insertBulkmailRecipientStatus.xml"/> +</databaseChangeLog> \ No newline at end of file diff --git a/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/insertBulkmailRecipientStatus.xml b/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/insertBulkmailRecipientStatus.xml new file mode 100644 index 0000000000..e6e1464108 --- /dev/null +++ b/.liquibase/Data_alias/basic/2021.1.2/Bulkmail/insertBulkmailRecipientStatus.xml @@ -0,0 +1,17 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> + <changeSet author="v.broens" id="c1ecd92d-3bc2-47ac-8403-d5a5b6f65a5d"> + <insert tableName="AB_KEYWORD_ENTRY"> + <column name="AB_KEYWORD_ENTRYID" value="2d5cacf8-1834-4ab0-98a6-442c20ec5fd6"/> + <column name="CONTAINER" value="BulkMailRecipientStatus"/> + <column name="AB_KEYWORD_CATEGORY_ID" value="25cb446a-24cd-4ebd-aad2-320da20830da"/> + <column name="ISESSENTIAL" valueNumeric="0"/> + <column name="ISACTIVE" valueNumeric="1"/> + <column name="KEYID" value="EMAILADDED"/> + <column name="TITLE" value="Added"/> + <column name="SORTING" valueNumeric="6"/> + </insert> + </changeSet> +</databaseChangeLog> \ No newline at end of file diff --git a/.liquibase/Data_alias/basic/2021.1.2/changelog.xml b/.liquibase/Data_alias/basic/2021.1.2/changelog.xml new file mode 100644 index 0000000000..0d2d913b1a --- /dev/null +++ b/.liquibase/Data_alias/basic/2021.1.2/changelog.xml @@ -0,0 +1,5 @@ +<?xml version="1.1" encoding="UTF-8" standalone="no"?> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> + <include relativeToChangelogFile="true" file="Bulkmail/changelog.xml"/> +</databaseChangeLog> \ No newline at end of file diff --git a/.liquibase/Data_alias/changelog.xml b/.liquibase/Data_alias/changelog.xml index e1bc0e56ff..be798212ab 100644 --- a/.liquibase/Data_alias/changelog.xml +++ b/.liquibase/Data_alias/changelog.xml @@ -25,7 +25,7 @@ <include relativeToChangelogFile="true" file="basic/2021.0.3/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2021.1.0/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/2021.1.1/changelog.xml"/> - + <include relativeToChangelogFile="true" file="basic/2021.1.2/changelog.xml"/> <include relativeToChangelogFile="true" file="basic/workflows/changelog.xml" context="workflow"/> <include relativeToChangelogFile="true" file="basic/_demoData/changelog.xml" context="example"/> </databaseChangeLog> \ No newline at end of file diff --git a/entity/BulkMailRecipient_entity/BulkMailRecipient_entity.aod b/entity/BulkMailRecipient_entity/BulkMailRecipient_entity.aod index c2ddff2ba4..d1e20d541e 100644 --- a/entity/BulkMailRecipient_entity/BulkMailRecipient_entity.aod +++ b/entity/BulkMailRecipient_entity/BulkMailRecipient_entity.aod @@ -122,6 +122,7 @@ <onActionProcess>%aditoprj%/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/onActionProcess.js</onActionProcess> <isObjectAction v="false" /> <iconId>VAADIN:ENVELOPES</iconId> + <tooltipProcess>%aditoprj%/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/tooltipProcess.js</tooltipProcess> </entityActionField> </children> </entityActionGroup> diff --git a/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/removewithcommrestriction/tooltipProcess.js b/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/removewithcommrestriction/tooltipProcess.js index 0cd89c71d0..fb725e50d9 100644 --- a/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/removewithcommrestriction/tooltipProcess.js +++ b/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/removewithcommrestriction/tooltipProcess.js @@ -1,4 +1,4 @@ import("system.translate"); import("system.result"); -result.string(translate.text("Remove recipients with advertising ban")); \ No newline at end of file +result.string(translate.text("Remove recipients with communication rejection")); \ No newline at end of file diff --git a/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/tooltipProcess.js b/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/tooltipProcess.js new file mode 100644 index 0000000000..f10ca98d11 --- /dev/null +++ b/entity/BulkMailRecipient_entity/entityfields/recipientactions/children/startmarketingworkflows/tooltipProcess.js @@ -0,0 +1,4 @@ +import("system.translate"); +import("system.result"); + +result.string(translate.text("Start marketing mailing")); \ No newline at end of file diff --git a/entity/BulkMailRecipient_entity/entityfields/status/valueProcess.js b/entity/BulkMailRecipient_entity/entityfields/status/valueProcess.js index 4f0cac5243..0908c9f5d8 100644 --- a/entity/BulkMailRecipient_entity/entityfields/status/valueProcess.js +++ b/entity/BulkMailRecipient_entity/entityfields/status/valueProcess.js @@ -4,4 +4,4 @@ import("system.result"); import("KeywordRegistry_basic"); if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW) - result.string($KeywordRegistry.bulkMailRecipientStatus$pending()); \ No newline at end of file + result.string($KeywordRegistry.bulkMailRecipientStatus$added()); \ No newline at end of file diff --git a/entity/BulkMail_entity/BulkMail_entity.aod b/entity/BulkMail_entity/BulkMail_entity.aod index 3427e561fc..f026a8f964 100644 --- a/entity/BulkMail_entity/BulkMail_entity.aod +++ b/entity/BulkMail_entity/BulkMail_entity.aod @@ -275,40 +275,6 @@ <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/emleditinfo/stateProcess.js</stateProcess> <valueProcess>%aditoprj%/entity/BulkMail_entity/entityfields/emleditinfo/valueProcess.js</valueProcess> </entityField> - <entityActionField> - <name>sendMail</name> - <title>Send</title> - <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js</onActionProcess> - <iconId>VAADIN:PAPERPLANE</iconId> - <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/stateProcess.js</stateProcess> - <tooltipProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/tooltipProcess.js</tooltipProcess> - </entityActionField> - <entityActionField> - <name>testMail</name> - <title>Test email</title> - <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/testmail/onActionProcess.js</onActionProcess> - <iconId>VAADIN:CLIPBOARD_CHECK</iconId> - </entityActionField> - <entityActionField> - <name>downloadTemplate</name> - <title>Download template</title> - <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/downloadtemplate/onActionProcess.js</onActionProcess> - <iconId>VAADIN:FILE_FONT</iconId> - <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/downloadtemplate/stateProcess.js</stateProcess> - </entityActionField> - <entityActionField> - <name>copyBulkmail</name> - <title>Copy bulkmail</title> - <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/copybulkmail/onActionProcess.js</onActionProcess> - <iconId>VAADIN:COPY</iconId> - </entityActionField> - <entityActionField> - <name>openAdminView</name> - <title>Open admin view</title> - <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/openadminview/onActionProcess.js</onActionProcess> - <iconId>VAADIN:CURLY_BRACKETS</iconId> - <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/openadminview/stateProcess.js</stateProcess> - </entityActionField> <entityField> <name>DATE_TO_SEND</name> <title>Send Date</title> @@ -502,6 +468,60 @@ </entityParameter> </children> </entityConsumer> + <entityActionGroup> + <name>observeActionoGroup</name> + <children> + <entityActionField> + <name>observe</name> + <title>Observe</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/onActionProcess.js</onActionProcess> + <iconId>VAADIN:EYE</iconId> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/stateProcess.js</stateProcess> + <titleProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/titleProcess.js</titleProcess> + </entityActionField> + <entityActionField> + <name>cancelObservation</name> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/onActionProcess.js</onActionProcess> + <iconId>VAADIN:EYE_SLASH</iconId> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/stateProcess.js</stateProcess> + <titleProcess>%aditoprj%/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/titleProcess.js</titleProcess> + </entityActionField> + </children> + </entityActionGroup> + <entityActionField> + <name>sendMail</name> + <title>Send</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js</onActionProcess> + <iconId>VAADIN:PAPERPLANE</iconId> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/stateProcess.js</stateProcess> + <tooltipProcess>%aditoprj%/entity/BulkMail_entity/entityfields/sendmail/tooltipProcess.js</tooltipProcess> + </entityActionField> + <entityActionField> + <name>testMail</name> + <title>Test email</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/testmail/onActionProcess.js</onActionProcess> + <iconId>VAADIN:CLIPBOARD_CHECK</iconId> + </entityActionField> + <entityActionField> + <name>downloadTemplate</name> + <title>Download template</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/downloadtemplate/onActionProcess.js</onActionProcess> + <iconId>VAADIN:FILE_FONT</iconId> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/downloadtemplate/stateProcess.js</stateProcess> + </entityActionField> + <entityActionField> + <name>copyBulkmail</name> + <title>Copy bulkmail</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/copybulkmail/onActionProcess.js</onActionProcess> + <iconId>VAADIN:COPY</iconId> + </entityActionField> + <entityActionField> + <name>openAdminView</name> + <title>Open admin view</title> + <onActionProcess>%aditoprj%/entity/BulkMail_entity/entityfields/openadminview/onActionProcess.js</onActionProcess> + <iconId>VAADIN:CURLY_BRACKETS</iconId> + <stateProcess>%aditoprj%/entity/BulkMail_entity/entityfields/openadminview/stateProcess.js</stateProcess> + </entityActionField> <entityActionField> <name>openMosaico</name> <title>Open Mosaico</title> diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/onActionProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/onActionProcess.js new file mode 100644 index 0000000000..35102b677c --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/onActionProcess.js @@ -0,0 +1,3 @@ +import("Observation_lib"); + +Observation.cancelAction(); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/stateProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/stateProcess.js new file mode 100644 index 0000000000..6ed1e38413 --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/stateProcess.js @@ -0,0 +1,6 @@ +import("system.vars"); +import("system.result"); +import("Observation_lib"); +import("system.neon"); + +result.string(Observation.actionState(vars.get("$sys.selection"), true)); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/titleProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/titleProcess.js new file mode 100644 index 0000000000..87553a373a --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/cancelobservation/titleProcess.js @@ -0,0 +1,5 @@ +import("system.result"); +import("system.vars"); +import("Observation_lib"); + +result.string(Observation.cancelActionTitle(vars.get("$sys.selection"))); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/onActionProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/onActionProcess.js new file mode 100644 index 0000000000..66cf7bc299 --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/onActionProcess.js @@ -0,0 +1,3 @@ +import("Observation_lib"); + +Observation.insertAction(); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/stateProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/stateProcess.js new file mode 100644 index 0000000000..84fd36a56b --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/stateProcess.js @@ -0,0 +1,5 @@ +import("system.vars"); +import("system.result"); +import("Observation_lib"); + +result.string(Observation.actionState(vars.get("$sys.selection"))); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/titleProcess.js b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/titleProcess.js new file mode 100644 index 0000000000..abdfbd3d7c --- /dev/null +++ b/entity/BulkMail_entity/entityfields/observeactionogroup/children/observe/titleProcess.js @@ -0,0 +1,5 @@ +import("system.result"); +import("Observation_lib"); +import("system.vars"); + +result.string(Observation.observeActionTitle(vars.get("$sys.selection"))); \ No newline at end of file diff --git a/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js b/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js index d44bc14c4c..117715d516 100644 --- a/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js +++ b/entity/BulkMail_entity/entityfields/sendmail/onActionProcess.js @@ -10,8 +10,12 @@ import("KeywordRegistry_basic"); var send = question.askYesNo(translate.text("Bulk mail"), translate.text("Should the mail be sent now?"), false); if (send) { + //UPDATE BULKMAIL STATUS newWhere("BULKMAIL.BULKMAILID", "$field.BULKMAILID") .updateFields({"STATUS" : $KeywordRegistry.bulkMailStatus$beingSent()}); + //UPDATE RECIPIENT STATUS + newWhere("BULKMAILRECIPIENT.BULKMAIL_ID", "$field.BULKMAILID") + .updateFields({"STATUS" : $KeywordRegistry.bulkMailRecipientStatus$pending()}); neon.refreshAll(); BulkMailUtils.sendBulkMailOnServer(vars.get("$field.BULKMAILID")); diff --git a/entity/CampaignStep_entity/CampaignStep_entity.aod b/entity/CampaignStep_entity/CampaignStep_entity.aod index 98f8c9ab6b..80eba01b15 100644 --- a/entity/CampaignStep_entity/CampaignStep_entity.aod +++ b/entity/CampaignStep_entity/CampaignStep_entity.aod @@ -384,16 +384,21 @@ <children> <entityActionField> <name>moveUp</name> + <title>Move up</title> <onActionProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/moveup/onActionProcess.js</onActionProcess> <iconId>VAADIN:ARROW_UP</iconId> <state>DISABLED</state> <stateProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/moveup/stateProcess.js</stateProcess> + <tooltipProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/moveup/tooltipProcess.js</tooltipProcess> </entityActionField> <entityActionField> <name>moveDown</name> + <title>Move down</title> + <description></description> <onActionProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/movedown/onActionProcess.js</onActionProcess> <iconId>VAADIN:ARROW_DOWN</iconId> <stateProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/movedown/stateProcess.js</stateProcess> + <tooltipProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/movedown/tooltipProcess.js</tooltipProcess> </entityActionField> </children> </entityActionGroup> diff --git a/entity/CampaignStep_entity/entityfields/group/children/movedown/tooltipProcess.js b/entity/CampaignStep_entity/entityfields/group/children/movedown/tooltipProcess.js new file mode 100644 index 0000000000..ff28377208 --- /dev/null +++ b/entity/CampaignStep_entity/entityfields/group/children/movedown/tooltipProcess.js @@ -0,0 +1,4 @@ +import("system.translate"); +import("system.result"); + +result.string(translate.text("Move selection down")); \ No newline at end of file diff --git a/entity/CampaignStep_entity/entityfields/group/children/moveup/tooltipProcess.js b/entity/CampaignStep_entity/entityfields/group/children/moveup/tooltipProcess.js new file mode 100644 index 0000000000..83334efc4a --- /dev/null +++ b/entity/CampaignStep_entity/entityfields/group/children/moveup/tooltipProcess.js @@ -0,0 +1,4 @@ +import("system.translate"); +import("system.result"); + +result.string(translate.text("Move selection up")); \ No newline at end of file diff --git a/entity/WeblinkClick_entity/WeblinkClick_entity.aod b/entity/WeblinkClick_entity/WeblinkClick_entity.aod index 9e8e4288f6..beecca47e3 100644 --- a/entity/WeblinkClick_entity/WeblinkClick_entity.aod +++ b/entity/WeblinkClick_entity/WeblinkClick_entity.aod @@ -72,7 +72,7 @@ </entityProvider> <entityField> <name>URL</name> - <title>Url</title> + <title>URL</title> </entityField> <entityParameter> <name>WeblinkId_param</name> diff --git a/entity/WeblinkTag_entity/WeblinkTag_entity.aod b/entity/WeblinkTag_entity/WeblinkTag_entity.aod index a57d8a2881..a2976f0f06 100644 --- a/entity/WeblinkTag_entity/WeblinkTag_entity.aod +++ b/entity/WeblinkTag_entity/WeblinkTag_entity.aod @@ -32,7 +32,7 @@ </entityField> <entityField> <name>WEBLINK_ID</name> - <title>Url</title> + <title>URL</title> <valueProcess>%aditoprj%/entity/WeblinkTag_entity/entityfields/weblink_id/valueProcess.js</valueProcess> </entityField> <entityField> diff --git a/entity/Weblink_entity/Weblink_entity.aod b/entity/Weblink_entity/Weblink_entity.aod index 7d8d107457..433b65f149 100644 --- a/entity/Weblink_entity/Weblink_entity.aod +++ b/entity/Weblink_entity/Weblink_entity.aod @@ -14,7 +14,7 @@ </entityProvider> <entityField> <name>URL</name> - <title>Url</title> + <title>URL</title> <mandatory v="true" /> <stateProcess>%aditoprj%/entity/Weblink_entity/entityfields/url/stateProcess.js</stateProcess> <onValidation>%aditoprj%/entity/Weblink_entity/entityfields/url/onValidation.js</onValidation> diff --git a/entity/Weblink_entity/entityfields/url/onValidation.js b/entity/Weblink_entity/entityfields/url/onValidation.js index 789eb86303..e6206fe51d 100644 --- a/entity/Weblink_entity/entityfields/url/onValidation.js +++ b/entity/Weblink_entity/entityfields/url/onValidation.js @@ -7,10 +7,10 @@ import("Sql_lib"); if (vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW && vars.get("$local.value")) { if (newSelect("URL").from("WEBLINK").where("WEBLINK.URL", vars.get("$local.value")).cell()) - result.string(translate.text("Url must be unique")); + result.string(translate.text("URL must be unique")); if (vars.get("$field.ISREDIRECT") == "1" && !/^(?:http(s)?:\/\/)[\w.-]+(?:\.[\w\.-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=.]+$/g.test(vars.get("$local.value"))) { - result.string(translate.text("Redirect needs a full Url with http/https")); + result.string(translate.text("Redirect needs a full URL with http/https")); } } diff --git a/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod b/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod index 5e69b9dfd9..ec885fdd3b 100644 --- a/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod +++ b/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod @@ -8238,9 +8238,6 @@ <entry> <key>Recipient filter</key> </entry> - <entry> - <key>Url must be unique</key> - </entry> <entry> <key>Volume(€)</key> </entry> @@ -8409,9 +8406,6 @@ <entry> <key>Invalid attribute count</key> </entry> - <entry> - <key>Redirect needs a full Url with http/https</key> - </entry> <entry> <key>${IGNORE_DUPLICATE}</key> </entry> @@ -8662,9 +8656,6 @@ <entry> <key>Maillogs</key> </entry> - <entry> - <key>Url</key> - </entry> <entry> <key>[TEST] Util_lib</key> </entry> @@ -9098,52 +9089,28 @@ <key>Is contact without a contract</key> </entry> <entry> - <key>The chosen attributes were successfully set for %0 %1</key> - </entry> - <entry> - <key>SerialLetter</key> - </entry> - <entry> - <key>Bulkmail</key> - </entry> - <entry> - <key>%0 recipient will be added to the serial letter.</key> - </entry> - <entry> - <key>The attribute \"%0\" couldn't be set for %1 %2, because %3.</key> - </entry> - <entry> - <key>the max amount of this attribute has been reached</key> + <key>Move down</key> </entry> <entry> - <key>set attribute (use filter result)</key> + <key>Move selection up</key> </entry> <entry> - <key>The chosen attribute was successfully set for %0 %1</key> + <key>BulkMail</key> </entry> <entry> - <key>Volume (Euro)</key> + <key>Move up</key> </entry> <entry> - <key>add Attributes</key> + <key>Move selection down</key> </entry> <entry> - <key>%0 recipient will be added to the bulk mail.</key> + <key>URL must be unique</key> </entry> <entry> - <key>Attribute \"%0\" can only be inserted once with the same value.</key> + <key>URL</key> </entry> <entry> - <key>Set attribute (use filter result)</key> - </entry> - <entry> - <key>set attribute (selected data)</key> - </entry> - <entry> - <key>affected rows:</key> - </entry> - <entry> - <key>this attribute with the same value exists already</key> + <key>Redirect needs a full URL with http/https</key> </entry> <entry> <key>Interest already assign to contact</key> diff --git a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod index 86b8ae703f..f333233b07 100644 --- a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod +++ b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod @@ -26,13 +26,17 @@ <key>Number of clicks</key> <value>Anzahl Klicks</value> </entry> + <entry> + <key>Move selection up</key> + <value>Auswahl nach oben verschieben</value> + </entry> <entry> <key>Attributes of attribute group \"%0\" have to be used at least %1.</key> <value>Eigenschaften der Eigenschaftsgruppe \"%0\" müssen mindestens %1 verwendet werden.</value> </entry> <entry> - <key>Redirect needs a full Url with http/https</key> - <value>Für die Weiterleitung wird eine vollständige Url mit http/https benötigt</value> + <key>Redirect needs a full URL with http/https</key> + <value>Für die Weiterleitung wird eine vollständige URL mit http/https benötigt</value> </entry> <entry> <key>My Bulkmails</key> @@ -51,8 +55,8 @@ <value>Testempfänger setzen</value> </entry> <entry> - <key>Url must be unique</key> - <value>Die Url muss eindeutig sein!</value> + <key>URL must be unique</key> + <value>Die URL muss eindeutig sein!</value> </entry> <entry> <key>Opening Date</key> @@ -70,6 +74,10 @@ <key>This setting is overridden by the setting '%0'</key> <value>Diese Einstellung wird durch die Einstellung '%0' überschrieben</value> </entry> + <entry> + <key>Move down</key> + <value>Nach oben verschieben</value> + </entry> <entry> <key>Value is too big, the maximum is %0</key> <value>Wert ist zu groß, das Maximum ist %0</value> @@ -6441,6 +6449,10 @@ <key>Loyalty</key> <value>Loyalität</value> </entry> + <entry> + <key>Move selection down</key> + <value>Auswahl nach unten verschieben</value> + </entry> <entry> <key>Data table</key> <value>Tabellen Daten</value> @@ -8862,6 +8874,10 @@ Bitte Datumseingabe prüfen</value> <key>Export columns using a exporttemplate</key> <value>Exportiere Spalten mithilfe einer Exportvorlage</value> </entry> + <entry> + <key>Move up</key> + <value>Nach unten verschieben</value> + </entry> <entry> <key>Permission procurer</key> <value>Rechteempfänger</value> @@ -11585,7 +11601,8 @@ Bitte Datumseingabe prüfen</value> <key>Maillogs</key> </entry> <entry> - <key>Url</key> + <key>URL</key> + <value></value> </entry> <entry> <key>[TEST] Util_lib</key> @@ -11914,6 +11931,9 @@ Bitte Datumseingabe prüfen</value> <key>Is contact without a contract</key> <value>Ist ein Kontakt ohne Vertrag</value> </entry> + <entry> + <key>Bulkmail</key> + </entry> </keyValueMap> <font name="Dialog" style="0" size="11" /> </language> diff --git a/language/_____LANGUAGE_en/_____LANGUAGE_en.aod b/language/_____LANGUAGE_en/_____LANGUAGE_en.aod index a080e0a82c..14283d7447 100644 --- a/language/_____LANGUAGE_en/_____LANGUAGE_en.aod +++ b/language/_____LANGUAGE_en/_____LANGUAGE_en.aod @@ -8319,9 +8319,6 @@ <entry> <key>Recipient filter</key> </entry> - <entry> - <key>Url must be unique</key> - </entry> <entry> <key>Volume(€)</key> </entry> @@ -8493,9 +8490,6 @@ <entry> <key>Invalid attribute count</key> </entry> - <entry> - <key>Redirect needs a full Url with http/https</key> - </entry> <entry> <key>${IGNORE_DUPLICATE}</key> <value>Record is not a duplicate</value> @@ -8753,9 +8747,6 @@ <entry> <key>Maillogs</key> </entry> - <entry> - <key>Url</key> - </entry> <entry> <key>[TEST] Util_lib</key> </entry> @@ -9188,6 +9179,30 @@ <entry> <key>Is contact without a contract</key> </entry> + <entry> + <key>Move down</key> + </entry> + <entry> + <key>Move selection up</key> + </entry> + <entry> + <key>BulkMail</key> + </entry> + <entry> + <key>Move up</key> + </entry> + <entry> + <key>Move selection down</key> + </entry> + <entry> + <key>URL must be unique</key> + </entry> + <entry> + <key>URL</key> + </entry> + <entry> + <key>Redirect needs a full URL with http/https</key> + </entry> </keyValueMap> <font name="Dialog" style="0" size="11" /> </language> diff --git a/process/KeywordRegistry_basic/process.js b/process/KeywordRegistry_basic/process.js index 86bfc66259..b71e5b84d7 100644 --- a/process/KeywordRegistry_basic/process.js +++ b/process/KeywordRegistry_basic/process.js @@ -239,6 +239,7 @@ $KeywordRegistry.bulkMailRecipientStatus$sent = function(){return "EMAILSENT";}; $KeywordRegistry.bulkMailRecipientStatus$failed = function(){return "EMAILFAILED";}; $KeywordRegistry.bulkMailRecipientStatus$softBounce = function(){return "EMAILBOUNCED_SOFT";}; $KeywordRegistry.bulkMailRecipientStatus$hardBounce = function(){return "EMAILBOUNCED_HARD";}; +$KeywordRegistry.bulkMailRecipientStatus$added = function(){return "EMAILADDED";}; $KeywordRegistry.bulkMailStatus = function(){return "BulkMailStatus";}; $KeywordRegistry.bulkMailStatus$notSent = function(){return "BULKMAILNOTSENT";}; diff --git a/process/Observation_lib/process.js b/process/Observation_lib/process.js index 469abca037..9c04c665fa 100644 --- a/process/Observation_lib/process.js +++ b/process/Observation_lib/process.js @@ -64,6 +64,7 @@ Observation.RECORDS_SPECIFIC_VALUES = function () Observation.OBSERVABLE_ENTITIES = function () { return [ "Activity_entity", + "BulkMail_entity", "Campaign_entity", "Contract_entity", "Employee_entity", -- GitLab