Author: jleroux
Date: Thu Mar 24 06:36:58 2011
New Revision: 1084855
URL:
http://svn.apache.org/viewvc?rev=1084855&view=revLog:
A patch from Leon "Minor related patch after OFBIZ-4225 issue (Lookup target-parameter in form widget is not working) fixed"
https://issues.apache.org/jira/browse/OFBIZ-4228 - OFBIZ-4228
n
https://issues.apache.org/jira/browse/OFBIZ-4225, Deepak Dixit fixed a bug in fieldlookup.js which caused "Lookup target-parameter in form widget is not working"。
Now the form widget framework behaves same as widget-form.xsd specifies: using parameters.parmI (where I is the position number in the "target-parameter" list) in the related lookup screen. The position number in the list begins from 1. That implictes "parm0" is invalid.
So I searched the whole project to look up whether there's "parm0" left out. That's what this patch for.
Modified:
ofbiz/trunk/applications/order/widget/ordermgr/LookupScreens.xml
Modified: ofbiz/trunk/applications/order/widget/ordermgr/LookupScreens.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/LookupScreens.xml?rev=1084855&r1=1084854&r2=1084855&view=diff==============================================================================
--- ofbiz/trunk/applications/order/widget/ordermgr/LookupScreens.xml (original)
+++ ofbiz/trunk/applications/order/widget/ordermgr/LookupScreens.xml Thu Mar 24 06:36:58 2011
@@ -137,7 +137,7 @@ under the License.
<actions>
<property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PageTitleLookupCustomerRequestItem}"/>
- <set field="custRequestId" from-field="parameters.custRequestId" default-value="${parameters.parm0}"/>
+ <set field="custRequestId" from-field="parameters.custRequestId" default-value="${parameters.parm1}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/>
@@ -190,7 +190,7 @@ under the License.
<actions>
<property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
<set field="title" value="${uiLabelMap.PageTitleLookupQuoteItem}"/>
- <set field="quoteId" from-field="parameters.quoteId" default-value="${parameters.parm0}"/>
+ <set field="quoteId" from-field="parameters.quoteId" default-value="${parameters.parm1}"/>
<set field="queryString" from-field="result.queryString"/>
<set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/>
<set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/>