ilscipio/scipio-erp

View on GitHub
applications/party/widget/partymgr/PartyContactListScreens.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="ListPartyContactLists">
        <section>
            <actions>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap"/>
                <set field="titleProperty" value="PageTitleListContactList"/>
                <set field="activeSubMenuItem" value="ContactList"/>
                <set field="partyId" value="${parameters.partyId}"/>
                <set field="entityName" value="ContactListParty"/>
            </actions>
            <widgets>
                <decorator-screen name="CommonPartyDecorator" location="${parameters.mainDecoratorLocation}">
                    <decorator-section name="body">
                        <screenlet id="AddPartyContactListPanel" title="${uiLabelMap.PartyContactListPartyCreate}" collapsible="true">
                            <include-form location="component://party/widget/partymgr/PartyContactListForms.xml" name="AddPartyContactList"/>
                        </screenlet>
                        <include-form location="component://party/widget/partymgr/PartyContactListForms.xml" name="ListPartyContactLists"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
   <screen name="ListLookupContactList">
        <section>
            <actions>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap"/>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="activeSubMenuItem" value="ContactList"/>
                <set field="labelTitleProperty" value="${uiLabelMap.PageTitleListContactList}"/>
                <set field="title" value="${uiLabelMap.PageTitleListContactList}"/>
                <set field="donePage" from-field="parameters.DONE_PAGE" default-value="/marketing/control/ListContactList"/>
                <set field="contactListId" from-field="parameters.contactListId"/>
                <set field="entityName" value="ContactList"/>
                <set field="searchFields" value="[contactListId, contactListName, description]"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-results">
                        <include-form location="component://party/widget/partymgr/PartyContactListForms.xml" name="ListLookupContactList"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
</screens>