Skip to content
Snippets Groups Projects
Commit d010efa2 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

Merge branch '2020.1'

parents c235a9a5 481e6613
No related branches found
No related tags found
No related merge requests found
Showing
with 6 additions and 98 deletions
......@@ -1712,7 +1712,7 @@
<entityDb>
<name>ASYS_PERMISSIONSET</name>
<dbName></dbName>
<idColumn>PERMISSIONSETID</idColumn>
<idColumn>ASYS_PERMISSIONSETID</idColumn>
<idGeneratorType v="0" />
<idGeneratorInterval v="1" />
<documentation></documentation>
......@@ -1816,7 +1816,7 @@
<entityDb>
<name>ASYS_PERMISSIONACTION</name>
<dbName></dbName>
<idColumn>PERMISSIONACTIONID</idColumn>
<idColumn>ASYS_PERMISSIONACTIONID</idColumn>
<idGeneratorType v="0" />
<idGeneratorInterval v="1" />
<documentation></documentation>
......
......@@ -488,11 +488,6 @@
<entityName>Appointment_entity</entityName>
<fieldName>LinkedAppointments</fieldName>
</dependency>
<children>
<entityParameter>
<name>LinkedObjectId_param</name>
</entityParameter>
</children>
</entityConsumer>
<entityActionField>
<name>newSupportticket</name>
......
import("system.vars");
import("system.result");
result.string(vars.get("$field.ACTIVITYID"));
\ No newline at end of file
import("system.result");
import("Context_lib");
result.string(ContextUtils.getCurrentContextId());
\ No newline at end of file
import("system.result");
import("Keyword_lib");
import("KeywordRegistry_basic");
result.string($KeywordRegistry.activityCategory());
\ No newline at end of file
import("system.vars");
import("system.result");
result.string(vars.get("$field.ACTIVITYID"));
\ No newline at end of file
import("system.result");
result.string("Activity");
\ No newline at end of file
import("system.db");
import("system.vars");
import("system.neon");
import("KeywordRegistry_basic");
var params = {
"DocumentTemplateType_param" : $KeywordRegistry.documentTemplateType$mail()
}
//neon.openContext("DocumentTemplate", "DocumentTemplateFilterSmall_view", null, neon.OPERATINGSTATE_SEARCH, params);
//neon.openContext("DocumentTemplate", "DocumentTemplateFilterSmall_view", null, null, null, params);
neon.openContext("DocumentTemplate", null, null, neon.OPERATINGSTATE_SEARCH, params);
import("WsValidation_lib");
import("system.result");
result.string(AddressValidationType.get().TYPE_CITY_NOMINATIM.key);
\ No newline at end of file
import("WsValidation_lib");
import("system.result");
result.string(AddressValidationType.get().TYPE_ZIP_NOMINATIM.key);
\ No newline at end of file
......@@ -451,6 +451,7 @@
</entityField>
<entityProvider>
<name>QuickEntryAdresses</name>
<documentation>%aditoprj%/entity/Address_entity/entityfields/quickentryadresses/documentation.adoc</documentation>
<dependencies>
<entityDependency>
<name>d677a301-2038-4ccd-baa1-5f986e290564</name>
......
import("Sql_lib");
import("system.db");
import("system.result");
//TODO: use a preparedCondition (.build instead of .toString) when available #1030812 #1034026
result.string(newWhereIfSet("ADDRESS.CONTACT_ID", "$param.ContactId_param").toString());
import("system.result");
import("Keyword_lib");
import("KeywordRegistry_basic");
result.string($KeywordRegistry.addressType());
\ No newline at end of file
import("system.result");
result.object(1);
\ No newline at end of file
import("system.result");
result.object(2);
\ No newline at end of file
= QuickEntry_entity - Addresses
Provides all addresses for QuickEntry
\ No newline at end of file
import("system.vars");
import("system.result");
result.object([vars.getString("$local.idvalue")]);
\ No newline at end of file
import("Sql_lib");
import("system.db");
import("system.result");
import("system.vars");
var affectedIds;
if (vars.exists("$local.idvalue")) {
affectedIds = vars.get("$local.idvalue");
}
var addressSelect = newSelect("ADDRESS.ADDRESSID as \"_uid_\", \n\
ADDRESS.ADDRESSID, \n\
ADDRESS.ZIP as ZIP, \n\
ADDRESS.CITY as CITY, \n\
ADDRESS.COUNTRY, \n\
ADDRESS.ADDRESS, \n\
ADDRESS.BUILDINGNO")
.from("ADDRESS")
.whereIfSet("ADDRESS.ADDRESSID", affectedIds, SqlBuilder.IN())
.orderBy("ADDRESS.ADDRESSID")
result.string(addressSelect.toString("1=2"));
\ No newline at end of file
......@@ -107,7 +107,6 @@
<description>Relation type. Value is based on the existance or non-existance of ORGANISATION_ID and PERSON_ID.
See ContactUtils.getRelationTypeByPersOrg for possible values</description>
<contentType>NUMBER</contentType>
<valueProcess>%aditoprj%/entity/AnyContact_entity/entityfields/contactType/valueProcess.js</valueProcess>
</entityField>
<entityField>
<name>ORGANISATION_NAME</name>
......
import("system.result");
import("system.vars");
import("Contact_lib")
result.object(ContactUtils.getContactType(vars.get("$field.CONTACTID"), vars.get("$field.PERSON_ID"), vars.get("$field.ORGANISATION_ID")));
\ 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