ilscipio/scipio-erp

View on GitHub
applications/marketing/widget/sfa/LookupScreens.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is subject to the terms and conditions defined in the
files 'LICENSE' and 'NOTICE', which are part of this source
code package.
-->

<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd">

     <screen name="LookupLeads">
        <section>
            <actions>
                <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="partyRelationshipTypeId" value="LEAD_OWNER"/>
                <set field="title" value="${uiLabelMap.SfaFindLeads}"/>
                <set field="partyTypeId" value="PERSON"/>
                <set field="currentUrl" value="LookupLeads"/>
                <set field="entityName" value="PartyRoleAndContactMechDetail"/>
                <set field="searchFields" value="[partyId, firstName, lastName, middleName, groupName]"/>
                <set field="searchDistinct" value="true"/>
                <service service-name="findParty" auto-field-map="true"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="FindLeads" location="component://marketing/widget/sfa/forms/LeadForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupLead" location="component://marketing/widget/sfa/forms/LookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
     <screen name="LookupAccounts">
        <section>
            <actions>
                <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="partyRelationshipTypeId" value="ACCOUNT"/>
                <set field="title" value="${uiLabelMap.SfaFindAccounts}"/>
                <set field="partyTypeId" value="PARTY_GROUP"/>
                <set field="currentUrl" value="LookupAccounts"/>
                <set field="entityName" value="PartyRoleAndContactMechDetail"/>
                <set field="searchFields" value="[partyId, firstName, lastName, middleName, groupName]"/>
                <set field="searchDistinct" value="true"/>
                <service service-name="findParty" auto-field-map="true"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="FindAccounts" location="component://marketing/widget/sfa/forms/AccountForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupAccount" location="component://marketing/widget/sfa/forms/LookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
    <screen name="LookupAccountLeads">
        <section>
            <actions>
                <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="partyRelationshipTypeId" value="ACCOUNT"/>
                <set field="title" value="${uiLabelMap.SfaFindAccountLeads}"/>
                <set field="partyTypeId" value="PARTY_GROUP"/>
                <set field="currentUrl" value="LookupAccountLeads"/>
                <set field="entityName" value="PartyRoleAndContactMechDetail"/>
                <set field="searchFields" value="[partyId, firstName, lastName, middleName, groupName]"/>
                <set field="searchDistinct" value="true"/>
                <service service-name="findParty" auto-field-map="true"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="FindAccounts" location="component://marketing/widget/sfa/forms/AccountForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupAccountLead" location="component://marketing/widget/sfa/forms/LookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>

</screens>