Author: adrianc
Date: Wed May  8 12:26:24 2013
New Revision: 1480248

URL: http://svn.apache.org/r1480248
Log:
Fixed a problem in Web Tools that was caused by recent entity model changes. 
Reported by Atul Vani on the user mailing list.

Modified:
    
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy

Modified: 
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy?rev=1480248&r1=1480247&r2=1480248&view=diff
==============================================================================
--- 
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy
 (original)
+++ 
ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy
 Wed May  8 12:26:24 2013
@@ -40,7 +40,7 @@ for (rit = modelEntity.getRelationsItera
 
     modelRelation = rit.next();
     relFields = [];
-    for (kit = modelRelation.getKeyMapsIterator(); kit.hasNext();) {
+    for (kit = modelRelation.getKeyMaps().iterator(); kit.hasNext();) {
         mapFields = [:];
         keyMap = kit.next();
         mapFields.fieldName = keyMap.getFieldName();


Reply via email to