Author: jonesde
Date: Tue Jan 6 00:52:26 2009
New Revision: 731880
URL: http://svn.apache.org/viewvc?rev=731880&view=rev
Log:
Fixed issue with filter-list-by-and operation which wasnt looking for the map
attribute, renamed from map-name
Modified:
ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/FilterListByAnd.java
Modified:
ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/FilterListByAnd.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/FilterListByAnd.java?rev=731880&r1=731879&r2=731880&view=diff
==============================================================================
---
ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/FilterListByAnd.java
(original)
+++
ofbiz/trunk/framework/minilang/src/org/ofbiz/minilang/method/entityops/FilterListByAnd.java
Tue Jan 6 00:52:26 2009
@@ -54,7 +54,7 @@
if (toListAcsr.isEmpty()) {
toListAcsr = listAcsr;
}
- mapAcsr = new ContextAccessor<Map<String, ? extends
Object>>(element.getAttribute("map-name"));
+ mapAcsr = new ContextAccessor<Map<String, ? extends
Object>>(element.getAttribute("map"), element.getAttribute("map-name"));
}
public boolean exec(MethodContext methodContext) {