[ofbiz-framework] branch trunk updated: Improved: The leads which are converted is displayed on the Find lead page (OFBIZ-10237)

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

[ofbiz-framework] branch trunk updated: Improved: The leads which are converted is displayed on the Find lead page (OFBIZ-10237)

akashjain
This is an automated email from the ASF dual-hosted git repository.

akashjain pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new d6569c6  Improved: The leads which are converted is displayed on the Find lead page (OFBIZ-10237)
d6569c6 is described below

commit d6569c6306a9ca419d31a6c810879923d299fb30
Author: Akash Jain <[hidden email]>
AuthorDate: Sun Aug 30 12:44:51 2020 +0530

    Improved: The leads which are converted is displayed on the Find lead page (OFBIZ-10237)
   
    Thanks, Pradeep Choudhary and Rubia Elza Joshep.
---
 applications/marketing/widget/sfa/forms/LeadForms.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/applications/marketing/widget/sfa/forms/LeadForms.xml b/applications/marketing/widget/sfa/forms/LeadForms.xml
index de7bd19..59070b6 100644
--- a/applications/marketing/widget/sfa/forms/LeadForms.xml
+++ b/applications/marketing/widget/sfa/forms/LeadForms.xml
@@ -192,9 +192,15 @@ under the License.
                 <field-map field-name="distinct" value="Y"/>
             </service>
         </actions>
+        <row-actions>
+            <set field="statusId" value="${party.statusId}"/>
+        </row-actions>
     </form>
 
     <form name="ListLeads" extends="listLeads">
+        <field name="statusId" title="${uiLabelMap.CommonStatus}">
+            <display-entity entity-name="StatusItem" key-field-name="statusId"/>
+        </field>
         <field name="assignToMe" use-when="existRelationship==null&amp;&amp;!&quot;false&quot;.equals(parameters.get(&quot;all&quot;))"
                 title="${uiLabelMap.SfaAssignToMe}" widget-style="buttontext">
             <hyperlink description="${uiLabelMap.SfaAssignToMe}" target="createPartyRelationshipAndRole">
@@ -212,6 +218,7 @@ under the License.
             <sort-field name="city"/>
             <sort-field name="countryGeoId"/>
             <sort-field name="relatedCompany"/>
+            <sort-field name="statusId"/>
             <sort-field name="assignToMe"/>
         </sort-order>
     </form>