ilscipio/scipio-erp

View on GitHub
applications/shop/widget/QuoteScreens.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="ListQuotes">
        <section>
            <actions>
                <set field="rightbarScreenName" value="rightbar"/>
                <set field="MainColumnStyle" value="rightonly"/>

                <set field="titleProperty" value="PageTitleListQuotes"/>
                <!--<set field="activeMainMenuItem" value="Shopping List"/>-->
                <entity-condition entity-name="Quote" list="quoteList">
                    <condition-list combine="and">
                        <condition-expr field-name="partyId" from-field="userLogin.partyId"/>
                        <condition-expr field-name="statusId" operator="not-equals" value="QUO_CREATED"/>
                    </condition-list>
                    <order-by field-name="-validFromDate"/>
                </entity-condition>
            </actions>
            <widgets>
                <decorator-screen name="CommonShopAppDecorator" location="${parameters.mainDecoratorLocation}">
                    <decorator-section name="body">
                        <section>
                            <condition>
                                <if-true field="userHasAccount" />
                            </condition>
                            <widgets>
                                <platform-specific>
                                    <html><html-template location="component://shop/webapp/shop/quote/QuoteList.ftl"/></html>
                                </platform-specific>
                            </widgets>
                            <fail-widgets>
                                <label style="common-msg-error-perm" text="${uiLabelMap.ShopViewPermissionError}"/>
                            </fail-widgets>
                        </section>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
    <screen name="ViewQuote">
        <section>
            <actions>
                <set field="rightbarScreenName" value="rightbar"/>
                <set field="MainColumnStyle" value="rightonly"/>

                <set field="titleProperty" value="PageTitleViewQuote"/>
                <!--<set field="activeMainMenuItem" value="Shopping List"/>-->
                <set field="quoteId" from-field="parameters.quoteId"/>
                <entity-one entity-name="Quote" value-field="quote"/>
                <get-related-one value-field="quote" relation-name="QuoteType" to-value-field="quoteType"/>
                <get-related-one value-field="quote" relation-name="StatusItem" to-value-field="statusItem"/>
                <get-related-one value-field="quote" relation-name="Uom" to-value-field="currency"/>
                <get-related-one value-field="quote" relation-name="ProductStore" to-value-field="store"/>

                <get-related value-field="quote" relation-name="QuoteItem" list="quoteItems"/>
                <get-related value-field="quote" relation-name="QuoteAdjustment" list="quoteAdjustments"/>
                <get-related value-field="quote" relation-name="QuoteRole" list="quoteRoles"/>

            </actions>
            <widgets>
                <decorator-screen name="CommonShopAppDecorator" location="${parameters.mainDecoratorLocation}">
                    <decorator-section name="body">
                        <section>
                            <condition>
                                <if-true field="userHasAccount" />
                            </condition>
                            <widgets>
                                <section>
                                      <condition>
                                          <if-compare-field field="quote.partyId" operator="equals" to-field="userLogin.partyId"></if-compare-field>
                                      </condition>
                                      <widgets>
                                          <platform-specific>
                                              <html><html-template location="component://shop/webapp/shop/quote/CreateOrderQuote.ftl"/></html>
                                          </platform-specific>
                                          <include-screen name="ViewQuoteTemplate" location="component://order/widget/ordermgr/QuoteScreens.xml"/>
                                      </widgets>
                                      <fail-widgets>
                                          <label style="common-msg-error">${uiLabelMap.OrderNoQuoteFound}</label>
                                      </fail-widgets>
                                  </section>
                            </widgets>
                            <fail-widgets>
                                <label style="common-msg-error-perm" text="${uiLabelMap.ShopViewPermissionError}"/>
                            </fail-widgets>
                        </section>
                    </decorator-section>
                </decorator-screen>
            </widgets>
        </section>
    </screen>
</screens>