Skip to content
Snippets Groups Projects
Commit d9afcc54 authored by Tobias Feldmann's avatar Tobias Feldmann
Browse files

Address webservice code in fields deactivated

parent e8805706
No related branches found
No related tags found
No related merge requests found
Showing with 18 additions and 12 deletions
......@@ -12,7 +12,6 @@
<entityField>
<name>ADDRESS</name>
<title>Street</title>
<consumer>StreetValidation</consumer>
<mandatoryProcess>%aditoprj%/entity/Address_entity/entityfields/address/mandatoryProcess.js</mandatoryProcess>
<textInputAllowed v="true" />
<valueProcess>%aditoprj%/entity/Address_entity/entityfields/address/valueProcess.js</valueProcess>
......@@ -48,7 +47,6 @@
<entityField>
<name>CITY</name>
<title>City</title>
<consumer>CityValidation</consumer>
<mandatoryProcess>%aditoprj%/entity/Address_entity/entityfields/city/mandatoryProcess.js</mandatoryProcess>
<textInputAllowed v="true" />
<valueProcess>%aditoprj%/entity/Address_entity/entityfields/city/valueProcess.js</valueProcess>
......@@ -86,7 +84,6 @@
<entityField>
<name>ZIP</name>
<title>Postcode</title>
<consumer>ZipValidation</consumer>
<mandatoryProcess>%aditoprj%/entity/Address_entity/entityfields/zip/mandatoryProcess.js</mandatoryProcess>
<textInputAllowed v="true" />
<valueProcess>%aditoprj%/entity/Address_entity/entityfields/zip/valueProcess.js</valueProcess>
......
......@@ -2,4 +2,5 @@ import("system.vars");
import("system.result");
// Needed for instant refresh if set by neon.setFieldValue
result.string(vars.get("$field.ADDRESS"));
\ No newline at end of file
// use the code if address webservice is active
//result.string(vars.get("$field.ADDRESS"));
\ No newline at end of file
import("system.vars");
import("WsValidation_lib");
WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
// use the code if address webservice is active
//WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
......@@ -2,4 +2,5 @@ import("system.result");
import("WsValidation_lib");
import("system.vars");
result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
// use the code if address webservice is active
//result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
......@@ -2,4 +2,5 @@ import("system.vars");
import("system.result");
// Needed for instant refresh if set by neon.setFieldValue
result.string(vars.get("$field.CITY"));
\ No newline at end of file
// use the code if address webservice is active
//result.string(vars.get("$field.CITY"));
\ No newline at end of file
import("system.vars");
import("WsValidation_lib");
WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
// use the code if address webservice is active
//WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
......@@ -2,4 +2,5 @@ import("system.result");
import("WsValidation_lib");
import("system.vars");
result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
// use the code if address webservice is active
//result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
......@@ -2,4 +2,5 @@ import("system.vars");
import("system.result");
// Needed for instant refresh if set by neon.setFieldValue
result.string(vars.get("$field.ZIP"));
\ No newline at end of file
// use the code if address webservice is active
//result.string(vars.get("$field.ZIP"));
\ No newline at end of file
import("system.vars");
import("WsValidation_lib");
WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
// use the code if address webservice is active
//WsValidationUtils.setAddressFields(vars.get("$local.value"));
\ No newline at end of file
......@@ -2,4 +2,5 @@ import("system.vars");
import("system.result");
import("WsValidation_lib");
result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
// use the code if address webservice is active
//result.string(WsValidationUtils.valueFromJSON(vars.get("$this.value")));
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment