|
|
@@ -163,7 +163,7 @@ public class TriggerDeviceUtil {
|
|
|
Condition cond = (Condition)conditionList.get(i);
|
|
|
String condition = cond.getCondition();
|
|
|
String identifier = cond.getIdentifier();
|
|
|
- if (valueMap.get(identifier) == null) {
|
|
|
+ if (valueMap.get(identifier.toLowerCase()) == null) {
|
|
|
booleanExpression.append(false);
|
|
|
} else {
|
|
|
BigDecimal value = new BigDecimal((String)valueMap.get(identifier.toLowerCase()));
|