svn commit: r1859981 - /ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1859981 - /ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml

jleroux@apache.org
Author: jleroux
Date: Sat May 25 14:24:30 2019
New Revision: 1859981

URL: http://svn.apache.org/viewvc?rev=1859981&view=rev
Log:
Fixed: Runtime error exceptions at Leads page
(OFBIZ-11059)

Step to recreate issue -

    Login to https://demo-trunk.ofbiz.apache.org/ordermgr/control/main
    Application > SFA
    SFA > Lead Manager
    Leads > Click on All Leads button

Application throw Runtime error exception in My Leads section.

Thanks: Sanjay Yadav for report, Kumar Rahul for the fix and Pierre Smits
for help on Jira issue

Modified:
    ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml

Modified: ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml?rev=1859981&r1=1859980&r2=1859981&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml (original)
+++ ofbiz/ofbiz-framework/trunk/applications/marketing/widget/sfa/forms/AccountForms.xml Sat May 25 14:24:30 2019
@@ -137,22 +137,22 @@ under the License.
             <set field="relatedCompanyPartyId" from-field="relatedCompanies[0].partyIdFrom" type="Object"/>
             <set field="existRelationship" from-field="existRelationships[0]"/>
         </row-actions>
-        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;${roleTypeId=='ACCOUNT'}">
+        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;roleTypeId=='ACCOUNT'">
             <hyperlink description="${partyName} [${partyId}]" target="ViewAccountProfile">
                 <parameter param-name="partyId"/>
             </hyperlink>
         </field>
-        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;${roleTypeId=='CONTACT'}">
+        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;roleTypeId=='CONTACT'">
             <hyperlink description="${partyName} [${partyId}]" target="ViewContactProfile">
                 <parameter param-name="partyId"/>
             </hyperlink>
         </field>
-        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;${roleTypeId=='LEAD'}">
+        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;roleTypeId=='LEAD'">
             <hyperlink description="${partyName} [${partyId}]" target="ViewLeadProfile">
                 <parameter param-name="partyId"/>
             </hyperlink>
         </field>
-        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;${roleTypeId=='ACCOUNT_LEAD'}">
+        <field name="partyId" title="${uiLabelMap.PartyPartyId}" use-when="roleTypeId!=null&amp;roleTypeId=='ACCOUNT_LEAD'">
             <hyperlink description="${partyName} [${partyId}]" target="ViewAccountLeadProfile">
                 <parameter param-name="partyId"/>
             </hyperlink>