From 4b3a027bc246298bdb5a179e24631b3afc9bef9f Mon Sep 17 00:00:00 2001 From: "p.neub" <p.neub@adito.de> Date: Thu, 30 Sep 2021 11:53:05 +0200 Subject: [PATCH] [Projekt: xRM-Sales][TicketNr.: 2001089][Fehler beim Klicken auf den Contaktlink eines Vertriebsprojektmitgliedes] --- entity/Member_entity/Member_entity.aod | 1 - .../entityfields/contact_id/dropDownProcess.js | 11 ----------- 2 files changed, 12 deletions(-) delete mode 100644 entity/Member_entity/entityfields/contact_id/dropDownProcess.js diff --git a/entity/Member_entity/Member_entity.aod b/entity/Member_entity/Member_entity.aod index 5c1fd6ebd5..592118582b 100644 --- a/entity/Member_entity/Member_entity.aod +++ b/entity/Member_entity/Member_entity.aod @@ -24,7 +24,6 @@ <consumer>Contacts</consumer> <linkedContext>Person</linkedContext> <mandatory v="true" /> - <dropDownProcess>%aditoprj%/entity/Member_entity/entityfields/contact_id/dropDownProcess.js</dropDownProcess> </entityField> <entityField> <name>OBJECT_ROWID</name> diff --git a/entity/Member_entity/entityfields/contact_id/dropDownProcess.js b/entity/Member_entity/entityfields/contact_id/dropDownProcess.js deleted file mode 100644 index e04712f996..0000000000 --- a/entity/Member_entity/entityfields/contact_id/dropDownProcess.js +++ /dev/null @@ -1,11 +0,0 @@ -import("system.result"); -import("Keyword_lib"); -import("KeywordRegistry_basic"); - -//This dropDownProcess exists, even though the fieldState is READONLY. -//-->So we can use it when using the filter -var res = KeywordUtils.getEntryNamesByContainer($KeywordRegistry.contactPosition()).map(function (e){ - return [e, e]; //currently the first column is ID, second view value - which is the same because there is no ID for keyword-containers -}); - -result.object(res); \ No newline at end of file -- GitLab