You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pr...@apache.org on 2015/01/17 15:59:54 UTC

svn commit: r1652619 - /ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml

Author: pranayp
Date: Sat Jan 17 14:59:54 2015
New Revision: 1652619

URL: http://svn.apache.org/r1652619
Log:
Applied bug fix from trunk r1652617.
==========================================================
Applied patch from jira issue - OFBIZ-5951. Product Costs page actions cause incorrect listings.

Thanks Christian Carlow for reporting the issue and thanks Amardeep for providing patch for the fix.
==========================================================

Modified:
    ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml

Modified: ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml?rev=1652619&r1=1652618&r2=1652619&view=diff
==============================================================================
--- ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml (original)
+++ ofbiz/branches/release13.07/applications/product/widget/catalog/ProductForms.xml Sat Jan 17 14:59:54 2015
@@ -1235,8 +1235,9 @@ under the License.
     <form name="ListCostComponents" type="list" title="" list-name="listIt"
         odd-row-style="alternate-row" default-table-style="basic-table" paginate-target="EditProductCosts">
         <actions>
+        	<set field="InParam.productId" from-field="requestParameters.productId"/>
             <service service-name="performFind" result-map="result" result-map-list="listIt">
-                <field-map field-name="inputFields" from-field="requestParameters"/>
+                <field-map field-name="inputFields" from-field="InParam"/>
                 <field-map field-name="entityName" value="CostComponent"/>
                 <field-map field-name="viewIndex" from-field="viewIndex"/>
                 <field-map field-name="viewSize" from-field="viewSize"/>