From 8d59d32ce8e495d40cd13c3283f7441d9563c53c Mon Sep 17 00:00:00 2001 From: "b.ulrich" <b.ulrich@adito.de> Date: Tue, 19 May 2020 14:21:31 +0200 Subject: [PATCH] =?UTF-8?q?[Projekt:=20Entwicklung=20-=20Neon][TicketNr.:?= =?UTF-8?q?=201056978][Automatische=20Adressbef=C3=BCllung=20=C3=BCberschr?= =?UTF-8?q?eibt=20Stra=C3=9Fe]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entity/Address_entity/Address_entity.aod | 2 -- .../entityfields/address/displayValueProcess.js | 6 ------ entity/Address_entity/entityfields/address/valueProcess.js | 6 ------ .../Address_entity/entityfields/address_ws/valueProcess.js | 4 +++- 4 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 entity/Address_entity/entityfields/address/displayValueProcess.js delete mode 100644 entity/Address_entity/entityfields/address/valueProcess.js diff --git a/entity/Address_entity/Address_entity.aod b/entity/Address_entity/Address_entity.aod index 5e6122b276..c7543e4c99 100644 --- a/entity/Address_entity/Address_entity.aod +++ b/entity/Address_entity/Address_entity.aod @@ -15,8 +15,6 @@ <mandatoryProcess>%aditoprj%/entity/Address_entity/entityfields/address/mandatoryProcess.js</mandatoryProcess> <textInputAllowed v="true" /> <stateProcess>%aditoprj%/entity/Address_entity/entityfields/address/stateProcess.js</stateProcess> - <valueProcess>%aditoprj%/entity/Address_entity/entityfields/address/valueProcess.js</valueProcess> - <displayValueProcess>%aditoprj%/entity/Address_entity/entityfields/address/displayValueProcess.js</displayValueProcess> <onValueChange>%aditoprj%/entity/Address_entity/entityfields/address/onValueChange.js</onValueChange> <onValueChangeTypes> <element>MASK</element> diff --git a/entity/Address_entity/entityfields/address/displayValueProcess.js b/entity/Address_entity/entityfields/address/displayValueProcess.js deleted file mode 100644 index 18985f7a00..0000000000 --- a/entity/Address_entity/entityfields/address/displayValueProcess.js +++ /dev/null @@ -1,6 +0,0 @@ -import("system.vars"); -import("system.result"); - -// Needed for instant refresh if set by neon.setFieldValue -// use the code if address webservice is active -//result.string(vars.get("$field.ADDRESS")); \ No newline at end of file diff --git a/entity/Address_entity/entityfields/address/valueProcess.js b/entity/Address_entity/entityfields/address/valueProcess.js deleted file mode 100644 index 2c9d496185..0000000000 --- a/entity/Address_entity/entityfields/address/valueProcess.js +++ /dev/null @@ -1,6 +0,0 @@ -import("system.result"); -import("WsValidation_lib"); -import("system.vars"); - -// use the code if address webservice is active -//result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value"))); \ No newline at end of file diff --git a/entity/Address_entity/entityfields/address_ws/valueProcess.js b/entity/Address_entity/entityfields/address_ws/valueProcess.js index 5ccdf5a99f..2c7449d49d 100644 --- a/entity/Address_entity/entityfields/address_ws/valueProcess.js +++ b/entity/Address_entity/entityfields/address_ws/valueProcess.js @@ -1,3 +1,5 @@ +import("system.vars"); import("WsValidation_lib"); -WsValidationFieldUtils.wsValueProcess(WsValidationType.get().TYPE_STREET_NOMINATIM, "$field.ADDRESS"); \ No newline at end of file +if(!vars.get("$this.value")) + WsValidationFieldUtils.wsValueProcess(WsValidationType.get().TYPE_STREET_NOMINATIM, "$field.ADDRESS"); \ No newline at end of file -- GitLab