Author: hansbak
Date: Fri Apr 27 04:33:21 2012
New Revision: 1331216
URL: http://svn.apache.org/viewvc?rev=1331216&view=rev
Log:
fixed error at
https://localhost:8443/webtools/control/FindGeneric?entityName=OrderHeaderAndRoleSummary
and press find, thanks Nop
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
Modified:
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy?rev=1331216&r1=1331215&r2=1331216&view=diff
==============================================================================
---
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
(original)
+++
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/FindGeneric.groovy
Fri Apr 27 04:33:21 2012
@@ -166,7 +166,7 @@ if ("true".equals(find)) {
if (groupByFields || functionFields) {
fieldsToSelect = FastSet.newInstance();
- for (ModelField groupByField : groupByFields) {
+ for (String groupByField : groupByFields) {
fieldsToSelect.add(groupByField);
}