Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Applied bug fix from trunk r1478499.
Browse files Browse the repository at this point in the history
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.
=========================

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/branches/release10.04@1478505 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
ashishvijaywargiya committed May 2, 2013
1 parent 160c764 commit cd1f09e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit cd1f09e

Please sign in to comment.