diff --git a/process/Attribute_lib/process.js b/process/Attribute_lib/process.js index b6f4f0380639ea5cce991ad0f9fc62065b3c8cf5..7d900715602b77d44d300fd575a1ba088fed6f1e 100644 --- a/process/Attribute_lib/process.js +++ b/process/Attribute_lib/process.js @@ -692,6 +692,16 @@ AttributeRelationUtils.validateAttributeCount = function (pRowId, pObjectType, p this[row.AB_ATTRIBUTE_ID] = (this[row.AB_ATTRIBUTE_ID] || 0) + 1; }, countObj); } + if (changedRows) //append the new rows (if they are added by default but not filled with a value) + { + changedRows.forEach(function (row) + { + if(!row.DATE_NEW && !row.USER_NEW) + { + this[row.AB_ATTRIBUTE_ID] = (this[row.AB_ATTRIBUTE_ID] || 0) + 1; + } + }, countObj); + } var possibleAttributes = AttributeUtil.getPossibleAttributes(pObjectType, undefined, pFilteredAttributeIds); var minMaxCounts = [];