mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
RM-1066: Set Property action node value substitution breaks declare record when no value set.
RM-1065 Unable to hide completed records. RM-1067 Key French RM term is incorrect git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@56489 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -108,8 +108,16 @@ public class NodeParameterProcessor extends ParameterProcessor
|
||||
QName type = propertyDefinition.getDataType().getName();
|
||||
if (ArrayUtils.contains(supportedDataTypes, type) == true)
|
||||
{
|
||||
Serializable propertyValue = nodeService.getProperty(actionedUponNodeRef, qname);
|
||||
result = propertyValue.toString();
|
||||
Serializable propertyValue = nodeService.getProperty(actionedUponNodeRef, qname);
|
||||
if (propertyValue != null)
|
||||
{
|
||||
result = propertyValue.toString();
|
||||
}
|
||||
else
|
||||
{
|
||||
// set the result to the empty string
|
||||
result = "";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user