From fcaecf92b1b6c8348f340c4598baec14fb0be3e5 Mon Sep 17 00:00:00 2001 From: "p.neub" <p.neub@adito.de> Date: Wed, 27 Jan 2021 11:11:44 +0100 Subject: [PATCH] =?UTF-8?q?[Projekt:=20Entwicklung=20-=20xRM][TicketNr.:?= =?UTF-8?q?=201069458][xRM:=20Kommunikations=20Medium=20Vorbelegung=20?= =?UTF-8?q?=C3=A4ndert=20sich=20nicht,=20wenn=20Medium=20gewechselt=20wird?= =?UTF-8?q?]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entity/Communication_entity/Communication_entity.aod | 1 + .../entityfields/medium_id/onValueChange.js | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 entity/Communication_entity/entityfields/medium_id/onValueChange.js diff --git a/entity/Communication_entity/Communication_entity.aod b/entity/Communication_entity/Communication_entity.aod index fa0187084e..1e27e281e8 100644 --- a/entity/Communication_entity/Communication_entity.aod +++ b/entity/Communication_entity/Communication_entity.aod @@ -27,6 +27,7 @@ <consumer>KeywordMediums</consumer> <mandatory v="true" /> <displayValueProcess>%aditoprj%/entity/Communication_entity/entityfields/medium_id/displayValueProcess.js</displayValueProcess> + <onValueChange>%aditoprj%/entity/Communication_entity/entityfields/medium_id/onValueChange.js</onValueChange> </entityField> <entityField> <name>CONTACT_ID</name> diff --git a/entity/Communication_entity/entityfields/medium_id/onValueChange.js b/entity/Communication_entity/entityfields/medium_id/onValueChange.js new file mode 100644 index 0000000000..83357319d7 --- /dev/null +++ b/entity/Communication_entity/entityfields/medium_id/onValueChange.js @@ -0,0 +1,7 @@ +import("system.neon"); +import("system.vars"); + +var recordstate = vars.get("$sys.recordstate"); +if (recordstate == neon.OPERATINGSTATE_NEW || recordstate == neon.OPERATINGSTATE_EDIT) { + neon.setFieldValue("$field.ADDR", null); +} -- GitLab