Skip to content
Snippets Groups Projects
Commit cf7fb290 authored by Sebastian Listl's avatar Sebastian Listl :speech_balloon:
Browse files

Merge branch '2021.0_1062018_PostOfficeBoxTitle_mw' into '2021.0'

[Projekt: Entwicklung - xRM][TicketNr.: 1062018][Adressvalidierung bei Postfach]

See merge request xrm/basic!615
parents 993a8951 79ea736b
No related branches found
No related tags found
No related merge requests found
......@@ -445,6 +445,7 @@
<mandatoryProcess>%aditoprj%/entity/Address_entity/entityfields/address_ws/mandatoryProcess.js</mandatoryProcess>
<textInputAllowed v="true" />
<stateProcess>%aditoprj%/entity/Address_entity/entityfields/address_ws/stateProcess.js</stateProcess>
<titleProcess>%aditoprj%/entity/Address_entity/entityfields/address_ws/titleProcess.js</titleProcess>
<valueProcess>%aditoprj%/entity/Address_entity/entityfields/address_ws/valueProcess.js</valueProcess>
<displayValueProcess>%aditoprj%/entity/Address_entity/entityfields/address_ws/displayValueProcess.js</displayValueProcess>
<onValueChange>%aditoprj%/entity/Address_entity/entityfields/address_ws/onValueChange.js</onValueChange>
......
import("system.result");
import("system.vars");
import("KeywordRegistry_basic");
import("Keyword_lib");
var key = vars.get("$field.ADDR_TYPE");
if (key == $KeywordRegistry.addressType$post())
{
result.string("Post office box number");
}
\ No newline at end of file
......@@ -107,6 +107,7 @@ $KeywordRegistry.activityCategory$visit = function(){return "VISIT";};
$KeywordRegistry.addressType = function(){return "AddressType";};
$KeywordRegistry.addressType$private = function(){return "HOMEADDR";};
$KeywordRegistry.addressType$office = function(){return "OFFICEADDR";};
$KeywordRegistry.addressType$post = function(){return "POSTADDR";};
$KeywordRegistry.offerProbability = function(){return "OfferProbability";};
......
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