ilscipio/scipio-erp

View on GitHub
applications/marketing/widget/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">

    <!-- SegmentGroup Lookup Screen -->
    <screen name="LookupSegmentGroup">
        <section>
            <condition>
                <if-has-permission permission="MARKETING" action="_VIEW"/>
            </condition>
            <actions>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>

                <set field="title" value="${uiLabelMap.PageTitleLookupSegmentGroup}"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/>
                <property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
                <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="LookupSegmentGroup" location="component://marketing/widget/LookupForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupSegmentGroup" location="component://marketing/widget/LookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
    <!-- SalesForecast Lookup Screen -->
    <screen name="LookupSalesForecast">
        <section>
            <condition>
                <if-has-permission permission="MARKETING" action="_VIEW"/>
            </condition>
            <actions>
                <property-map resource="MarketingUiLabels" map-name="uiLabelMap" global="true"/>

                <set field="title" value="${uiLabelMap.PageTitleLookupSalesForecast}"/>
                <set field="queryString" from-field="result.queryString"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="LookupSalesForecast" location="component://marketing/widget/LookupForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="ListLookupSalesForecast" location="component://marketing/widget/LookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
</screens>