Skip to content
Snippets Groups Projects
Commit 741198f5 authored by gpawel's avatar gpawel
Browse files

bugfix

SVN: 24524
parent 1eb28a71
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ public class PropertiesBatchManager implements IPropertiesBatchManager ...@@ -146,7 +146,7 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
{ {
EntityProperty entityProperty = EntityProperty entityProperty =
evaluateManagedProperty(code, entry.getValue(), evalContext); evaluateManagedProperty(code, entry.getValue(), evalContext);
if (entityProperty.getValue() != null) if (false == ManagedProperty.isSpecialValue(entityProperty.getValue()))
{ {
newProperties.add(entityProperty); newProperties.add(entityProperty);
} }
...@@ -178,10 +178,7 @@ public class PropertiesBatchManager implements IPropertiesBatchManager ...@@ -178,10 +178,7 @@ public class PropertiesBatchManager implements IPropertiesBatchManager
ManagedProperty managedProperty = new ManagedProperty(); ManagedProperty managedProperty = new ManagedProperty();
managedProperty.setPropertyTypeCode(code); managedProperty.setPropertyTypeCode(code);
evaluator.updateFromBatchInput(managedProperty, bindings); evaluator.updateFromBatchInput(managedProperty, bindings);
if (false == managedProperty.isSpecialValue()) entityProperty.setValue(managedProperty.getValue());
{
entityProperty.setValue(managedProperty.getValue());
}
} }
return entityProperty; return entityProperty;
} }
......
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