Skip to content
Snippets Groups Projects
Commit 657542ca authored by Benjamin Ulrich's avatar Benjamin Ulrich :speech_balloon:
Browse files

Merge branch '2021.0_1077022_attributeedit' into '2021.0'

[Projekt: xRM-Sales][TicketNr.: 1077022][Vertriebsprojekt Eigenschaften können...

See merge request xrm/basic!779
parents 617a0a73 b0aee067
No related branches found
No related tags found
No related merge requests found
import("system.translate");
import("Util_lib");
import("system.result");
import("system.vars");
import("Attribute_lib");
if(vars.get("$field.AB_ATTRIBUTE_ID") && !AttributeRelationUtils.validateSingleCount(
vars.get("$param.ObjectType_param"),
vars.get("$param.ObjectRowId_param"),
vars.get("$field.AB_ATTRIBUTE_ID")
)) {
result.string(translate.text("Invalid attribute count"));
}
else
{
var attributeType = AttributeTypes.get(vars.get("$field.ATTRIBUTE_TYPE"));
if (attributeType && !attributeType.useLookup)
{
var validationResult = attributeType.validateValue(vars.get("$local.value"), Utils.parseJSON(vars.get("$field.VALIDATIONPARAMETERS")));
if (validationResult && validationResult !== true)
{
result.string(validationResult);
}
}
}
\ No newline at end of file
import("system.translate");
import("Util_lib");
import("system.result");
import("system.vars");
import("Attribute_lib");
if(vars.get("$field.AB_ATTRIBUTE_ID") && !AttributeRelationUtils.validateSingleCount(
vars.get("$param.ObjectType_param"),
vars.get("$param.ObjectRowId_param"),
vars.get("$field.AB_ATTRIBUTE_ID")
)) {
result.string(translate.text("Invalid attribute count"));
}
else
{
var attributeType = AttributeTypes.get(vars.get("$field.ATTRIBUTE_TYPE"));
if (attributeType && attributeType.useLookup)
{
var validationResult = attributeType.validateValue(vars.get("$local.value"), Utils.parseJSON(vars.get("$field.VALIDATIONPARAMETERS")));
if (validationResult && validationResult !== true)
{
result.string(validationResult);
}
\ No newline at end of file
}
}
}
......@@ -8214,6 +8214,36 @@
<entry>
<key>Shows the new daily Covid Cases</key>
</entry>
<entry>
<key>Shows the global Covid Cases in a Table</key>
</entry>
<entry>
<key>Buyer</key>
</entry>
<entry>
<key>Internal responsible</key>
</entry>
<entry>
<key>Global Cases Table</key>
</entry>
<entry>
<key>Global Cases</key>
</entry>
<entry>
<key>Initiator</key>
</entry>
<entry>
<key>New Cases</key>
</entry>
<entry>
<key>Internal Sales</key>
</entry>
<entry>
<key>Influencer</key>
</entry>
<entry>
<key>Shows the new daily Covid Cases</key>
</entry>
</keyValueMap>
<font name="Dialog" style="0" size="11" />
<sqlModels>
......
......@@ -10789,6 +10789,10 @@ Bitte Datumseingabe prüfen</value>
<key>Internal responsible</key>
<value>Intern: Gebietsverantwortlich</value>
</entry>
<entry>
<key>Invalid attribute count</key>
<value>Unzulässige Attributanzahl</value>
</entry>
<entry>
<key>Set not completed</key>
<value>Nicht erledigt setzen</value>
......
......@@ -808,6 +808,30 @@ AttributeRelationUtils.countAttributeRelations = function (pRowId, pObjectType,
return countObj;
}
/**
* Checks weather the passed attribute can be added to the given object using the min and max count.
*
* @param {string} pObjectType the object type
* @param {string} pObjectRowId the id of the object
* @param {string} pAttributeId the attribute witch needs to be validated
*
* @returns {boolean} weather it is valid to add the attribute or not
*/
AttributeRelationUtils.validateSingleCount = function(pObjectType, pObjectRowId, pAttributeId)
{
var [min, max] = newSelect(["AB_ATTRIBUTEUSAGE.MIN_COUNT", "AB_ATTRIBUTEUSAGE.MAX_COUNT"])
.from("AB_ATTRIBUTEUSAGE")
.where("AB_ATTRIBUTEUSAGE.AB_ATTRIBUTE_ID", pAttributeId)
.and("AB_ATTRIBUTEUSAGE.OBJECT_TYPE", pObjectType).arrayRow();
var attrCount = AttributeRelationUtils.countAttributeRelations(
pObjectRowId,
pObjectType,
{}
);
var count = attrCount[vars.get("$field.AB_ATTRIBUTE_ID")] || 0;
return count >= parseInt(min || -Infinity) && count <= parseInt(max || Infinity);
}
/*********************************************************************************************************************/
......
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