Author: ashish
Date: Thu May 2 19:50:13 2013
New Revision: 1478505
URL: http://svn.apache.org/r1478505
Log:
Applied bug fix from trunk r1478499.
Applied bug fix from - OFBIZ-5085 - Search result for "Find Communications" does not work.
Refer following section from OFBIZ-5085.
=========================
And secondly I think that in ListCommEvents form of CommunicationEventForms.xml partyId should
be passed in place of the partyIdFrom. As in ViewCommunicationEvent screen, value of the partyIdFrom
is set via parameters.partyId.
=========================
Modified:
ofbiz/branches/release10.04/applications/party/widget/partymgr/CommunicationEventForms.xml
Modified: ofbiz/branches/release10.04/applications/party/widget/partymgr/CommunicationEventForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release10.04/applications/party/widget/partymgr/CommunicationEventForms.xml?rev=1478505&r1=1478504&r2=1478505&view=diff
==============================================================================
--- ofbiz/branches/release10.04/applications/party/widget/partymgr/CommunicationEventForms.xml
(original)
+++ ofbiz/branches/release10.04/applications/party/widget/partymgr/CommunicationEventForms.xml
Thu May 2 19:50:13 2013
@@ -410,7 +410,7 @@ under the License.
<field name="subject">
<hyperlink description="${subject}[${communicationEventId}]" target="ViewCommunicationEvent">
<parameter param-name="communicationEventId"/>
- <parameter param-name="partyIdFrom" from-field="partyId"/>
+ <parameter param-name="partyId"/>
<parameter param-name="roleTypeId"/>
<parameter param-name="headerItem" from-field="parameters.headerItem"/>
</hyperlink>
@@ -480,7 +480,7 @@ under the License.
<field name="subject">
<hyperlink description="${subject}" target="ViewCommunicationEvent">
<parameter param-name="communicationEventId"/>
- <parameter param-name="partyIdFrom" from-field="partyId"/>
+ <parameter param-name="partyId"/>
<parameter param-name="roleTypeId"/>
</hyperlink>
</field>
|