ilscipio/scipio-erp

View on GitHub
applications/product/widget/facility/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="LookupFacility">
        <section>
            <condition>
                <if-service-permission service-name="facilityGenericPermission" main-action="VIEW"/>
            </condition>
            <actions>
                <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="title" value="${uiLabelMap.PageTitleLookupFacility}"/>
                <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}"/>
                <set field="entityName" value="Facility"/>
                <set field="searchFields" value="[facilityId, facilityName, description]"/>                 
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="lookupFacility" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupFacility" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
    <screen name="LookupFacilityLocation">
        <section>
            <condition>
                <if-service-permission service-name="facilityGenericPermission" main-action="VIEW"/>
            </condition>
            <actions>
                <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="title" value="${uiLabelMap.PageTitleLookupFacility}"/>
                <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}"/>
                <set field="entityName" value="FacilityLocation"/>
                <set field="searchFields" value="[locationSeqId, facilityId, locationTypeEnumId]"/>                 
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="lookupFacilityLocation" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listLookupFacilityLocation" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>

    <screen name="LookupShipment">
        <section>
            <actions>
                <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="title" value="${uiLabelMap.ProductLookupShipment}"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/>
                <property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/>
                <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/>
                <set field="entityName" value="Shipment"/>
                <set field="searchFields" value="[shipmentId, shipmentTypeId]"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-options">
                        <include-form name="lookupShipment" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                    <decorator-section name="search-results">
                        <include-form name="listShipment" location="component://product/widget/facility/FieldLookupForms.xml"/>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>

    <screen name="LookupInventoryItem">
        <section>
            <actions>
                <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="title" value="${uiLabelMap.ProductLookupInventory}"/>
                <set field="queryString" from-field="result.queryString"/>
                <set field="entityName" value="InventoryItem"/>
                <set field="searchFields" value="[inventoryItemId]"/>
                <script location="component://product/webapp/catalog/WEB-INF/actions/GetSupplierInventories.groovy"/>
                <set field="andCondition" value="${context.andCondition}"/>
                <script location="component://product/webapp/facility/WEB-INF/actions/inventory/LookupInventoryItems.groovy"/>
            </actions>
            <widgets>
                <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                    <decorator-section name="search-results">
                        <platform-specific><html><html-template location="component://product/webapp/facility/lookup/LookupInventoryItems.ftl"/></html></platform-specific>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
    <screen name="LookupProductInventoryLocation">
        <section>
            <condition>
                <if-service-permission service-name="facilityGenericPermission" main-action="VIEW"/>
            </condition>
            <actions>
                <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/>
                <property-map resource="ProductErrorUiLabels" map-name="uiLabelMap" global="true"/>
                <set field="title" value="${uiLabelMap.ProductListFacilityLocation}"/>
                <set field="facilityId" from-field="parameters.facilityId"/>
                <set field="productId" from-field="parameters.productId"/>
                <service service-name="findProductInventorylocations">
                    <field-map field-name="facilityId"/>
                    <field-map field-name="productId"/>
                </service>
            </actions>
            <widgets>
                <section>
                    <condition>
                        <not><if-empty field="LocationList"/></not>
                    </condition>
                    <widgets>
                        <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                            <decorator-section name="search-results">
                                <include-form name="ListProductInventoryLocation" location="component://product/widget/facility/FieldLookupForms.xml"/>
                            </decorator-section>
                        </decorator-screen>
                    </widgets>
                    <fail-widgets>
                        <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml">
                            <decorator-section name="search-results">
                                <label text="${uiLabelMap.ProductNotInAnyLocation}"/>
                            </decorator-section>
                        </decorator-screen>
                    </fail-widgets>
                </section>
            </widgets>
            <fail-widgets>
                <label style="common-msg-error-perm">${uiLabelMap.ProductFacilityViewPermissionError}</label>
            </fail-widgets>
        </section>
    </screen>
</screens>