You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ad...@apache.org on 2013/05/08 14:26:25 UTC

svn commit: r1480248 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/entity/ViewRelations.groovy

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();