Skip to content
Snippets Groups Projects
Commit 4ba4b930 authored by S.Listl's avatar S.Listl
Browse files

Attribute min-/maxCount validation

parent 6f0e8f19
No related branches found
No related tags found
No related merge requests found
Showing
with 65 additions and 26 deletions
......@@ -363,6 +363,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Activity_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -3,6 +3,7 @@
<name>AttributeRelation_entity</name>
<majorModelMode>DISTRIBUTED</majorModelMode>
<title>Attribute</title>
<onValidation>%aditoprj%/entity/AttributeRelation_entity/onValidation.js</onValidation>
<titlePlural>Attributes</titlePlural>
<recordContainer>jdito</recordContainer>
<entityFields>
......
import("Attribute_lib");
import("system.result");
import("system.db");
import("Sql_lib");
import("system.vars");
var objectType = vars.exists("$param.ObjectType_param") && vars.get("$param.ObjectType_param");
var rowId = vars.exists("$param.ObjectRowId_param") && vars.get("$param.ObjectRowId_param");
if (rowId)
{
var condition = SqlCondition.begin()
.andPrepare("AB_ATTRIBUTERELATION.OBJECT_ROWID", rowId);
if (objectType)
condition.andPrepare("AB_ATTRIBUTERELATION.OBJECT_TYPE", objectType);
var relationCounts = db.table(condition.buildSql(
"select AB_ATTRIBUTE_ID, count(AB_ATTRIBUTE_ID) from AB_ATTRIBUTERELATION",
"1=2",
"group by AB_ATTRIBUTE_ID"
));
var countObj = {};
relationCounts.forEach(function (row)
{
this[row[0]] = row[1];
}, countObj);
result.object(countObj);
}
\ No newline at end of file
result.object(AttributeRelationUtils.countAttributeRelations(rowId, objectType));
\ No newline at end of file
......@@ -350,6 +350,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Campaign_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -35,8 +35,8 @@
<contentType>DATE</contentType>
<resolution>DAY</resolution>
<outputFormat>dd.MM.yyyy</outputFormat>
<onValidation>%aditoprj%/entity/Contract_entity/entityfields/contractend/onValidation.js</onValidation>
<onValueChange>%aditoprj%/entity/Contract_entity/entityfields/contractend/onValueChange.js</onValueChange>
<onValidation>%aditoprj%/entity/Contract_entity/entityfields/contractend/onValidation.js</onValidation>
</entityField>
<entityField>
<name>CONTRACTID</name>
......@@ -51,8 +51,8 @@
<resolution>DAY</resolution>
<outputFormat>dd.MM.yyyy</outputFormat>
<valueProcess>%aditoprj%/entity/Contract_entity/entityfields/contractstart/valueProcess.js</valueProcess>
<onValidation>%aditoprj%/entity/Contract_entity/entityfields/contractstart/onValidation.js</onValidation>
<onValueChange>%aditoprj%/entity/Contract_entity/entityfields/contractstart/onValueChange.js</onValueChange>
<onValidation>%aditoprj%/entity/Contract_entity/entityfields/contractstart/onValidation.js</onValidation>
</entityField>
<entityField>
<name>CONTRACTSTATUS</name>
......@@ -294,6 +294,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Contract_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -113,6 +113,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/DocumentTemplate_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -32,8 +32,8 @@
<linkedContext>Person</linkedContext>
<mandatory v="true" />
<stateProcess>%aditoprj%/entity/Employee_entity/entityfields/contact_id/stateProcess.js</stateProcess>
<onValidation>%aditoprj%/entity/Employee_entity/entityfields/contact_id/onValidation.js</onValidation>
<onValueChange>%aditoprj%/entity/Employee_entity/entityfields/contact_id/onValueChange.js</onValueChange>
<onValidation>%aditoprj%/entity/Employee_entity/entityfields/contact_id/onValidation.js</onValidation>
</entityField>
<entityField>
<name>FIRSTNAME</name>
......@@ -107,6 +107,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Employee_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Employee_lib");
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(EmployeeUtils.sliceUserId(vars.get("$field.UID")),
ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -613,6 +613,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Offer_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -435,6 +435,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Order_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$field.SALESORDERID"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ No newline at end of file
......@@ -259,9 +259,6 @@
<fieldName>Documents</fieldName>
</dependency>
<children>
<entityParameter>
<name>AssignmentName_param</name>
</entityParameter>
<entityParameter>
<name>AssignmentRowId_param</name>
<valueProcess>%aditoprj%/entity/Organisation_entity/entityfields/documents/children/assignmentrowid_param/valueProcess.js</valueProcess>
......@@ -370,6 +367,7 @@
<entityConsumer>
<name>Attributes</name>
<fieldType>DEPENDENCY_OUT</fieldType>
<onValidation>%aditoprj%/entity/Organisation_entity/entityfields/attributes/onValidation.js</onValidation>
<dependency>
<name>dependency</name>
<entityName>AttributeRelation_entity</entityName>
......
import("system.vars");
import("system.result");
result.string(vars.get("$field.ORGANISATIONID"));
\ No newline at end of file
result.string(vars.get("$sys.uid"));
\ No newline at end of file
import("Context_lib");
import("system.vars");
import("Attribute_lib");
import("system.result");
result.string(AttributeRelationUtils.validateAttributeCount(vars.get("$sys.uid"), ContextUtils.getCurrentContextId(), vars.get("$field.Attributes.insertedRows")));
\ 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