Author: jleroux Date: Mon May 5 14:07:39 2014 New Revision: 1592531 URL: http://svn.apache.org/r1592531 Log: "Applied fix from trunk for revision: 1592530 " ------------------------------------------------------------------------ r1592530 | jleroux | 2014-05-05 16:06:47 +0200 (lun. 05 mai 2014) | 3 lignes
Fixes "Pagination at find WorkEffort screen does not work" https://issues.apache.org/jira/browse/OFBIZ-5629 I simply reused listIt in removeDuplicateWorkEfforts service which is called after performFind in ListWorkEfforts (itself extended by FoundWorkEfforts) ------------------------------------------------------------------------ Modified: ofbiz/branches/release13.07/ (props changed) ofbiz/branches/release13.07/applications/workeffort/widget/WorkEffortForms.xml Propchange: ofbiz/branches/release13.07/ ------------------------------------------------------------------------------ Merged /ofbiz/trunk:r1592530 Modified: ofbiz/branches/release13.07/applications/workeffort/widget/WorkEffortForms.xml URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/workeffort/widget/WorkEffortForms.xml?rev=1592531&r1=1592530&r2=1592531&view=diff ============================================================================== --- ofbiz/branches/release13.07/applications/workeffort/widget/WorkEffortForms.xml (original) +++ ofbiz/branches/release13.07/applications/workeffort/widget/WorkEffortForms.xml Mon May 5 14:07:39 2014 @@ -396,7 +396,7 @@ under the License. </sort-order> </form> - <form name="ListWorkEfforts" type="list" list-name="workEfforts" paginate-target="ListWorkEfforts" + <form name="ListWorkEfforts" type="list" list-name="listIt" paginate-target="ListWorkEfforts" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <service service-name="performFind" result-map="result" result-map-list="listIt"> @@ -406,7 +406,7 @@ under the License. <field-map field-name="viewIndex" from-field="viewIndex"/> <field-map field-name="viewSize" from-field="viewSize"/> </service> - <service service-name="removeDuplicateWorkEfforts" result-map="result" result-map-list="workEfforts"> + <service service-name="removeDuplicateWorkEfforts" result-map="result" result-map-list="listIt"> <field-map field-name="workEffortIterator" from-field="listIt"/> </service> </actions>

