applications/accounting/widget/CommonScreens.xml (325 lines of code) (raw):

<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ofbiz.apache.org/Widget-Screen" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen http://ofbiz.apache.org/dtds/widget-screen.xsd"> <screen name="main-decorator"> <section> <actions> <property-map resource="AccountingUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="WorkEffortUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="ManufacturingUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> <set field="layoutSettings.companyName" from-field="uiLabelMap.AccountingCompanyName" global="true"/> <set field="layoutSettings.companySubtitle" from-field="uiLabelMap.AccountingCompanySubtitle" global="true"/> <!-- layoutSettings.headerImageUrl can be used to specify an application specific logo; if not set, then the global layoutSettings.commonHeaderImageUrl (specified in GlobalDecorator) will be used. --> <!--<set field="layoutSettings.headerImageUrl" value="/images/ofbiz_logo.png" global="true"/>--> <set field="activeApp" value="accounting" global="true"/> <set field="applicationMenuName" value="AccountingAppBar" global="true"/> <set field="applicationMenuLocation" value="${parameters.mainMenuLocation}" global="true"/> <set field="applicationTitle" from-field="uiLabelMap.AccountingManagerApplication" global="true"/> <set field="helpAnchor" from-field="helpAnchor" default-value="_accounting"/> </actions> <widgets> <include-screen name="ApplicationDecorator" location="component://commonext/widget/CommonScreens.xml"/> </widgets> </section> </screen> <screen name="ShortcutApp"> <section> <actions> <property-map resource="AccountingUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/> <set field="mainMenuLocation" from-field="parameters.mainMenuLocation" default-value="component://accounting/widget/AccountingMenus.xml"/> </actions> <widgets> <decorator-screen name="ShortcutDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="body"> <include-menu name="AccountingShortcutAppBar" location="${mainMenuLocation}"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonFinAccountDecorator"> <section> <actions> <set field="headerItem" value="FindFinAccount"/> <entity-one entity-name="FinAccount" value-field="finAccount"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainDecoratorLocation}"/> <section> <condition> <if-service-permission service-name="acctgFinAcctPermissionCheck" main-action="VIEW"/> </condition> <widgets> <section> <condition><not><if-empty field="finAccountId"/></not></condition> <widgets> <include-menu name="FinAccountTabBar" location="${parameters.mainMenuLocation}"/> </widgets> <fail-widgets> <include-menu name="FinAccountMainTabBar" location="${parameters.mainMenuLocation}"/> </fail-widgets> </section> </widgets> </section> </decorator-section> <decorator-section name="body"> <section> <condition> <not><if-service-permission service-name="acctgFinAcctPermissionCheck" main-action="VIEW"/></not> </condition> <widgets> <label style="h3" text="${uiLabelMap.AccountingViewPermissionError}"/> </widgets> </section> <decorator-section-include name="body"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonPaymentDecorator"> <section> <actions> <set field="headerItem" value="payments"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainMenuLocation}"/> <section> <condition> <if-service-permission service-name="acctgBasePermissionCheck" main-action="VIEW"/> </condition> <widgets> <include-menu name="PaymentTabBar" location="${parameters.mainMenuLocation}"/> <include-menu name="PaymentSubTabBar" location="${parameters.mainMenuLocation}"/> </widgets> </section> </decorator-section> <decorator-section name="body"> <section> <condition> <if-service-permission service-name="acctgBasePermissionCheck" main-action="VIEW"/> </condition> <widgets> <container style="leftclear"> <section> <condition> <not><if-empty field="paymentId"/></not> </condition> <widgets> <include-menu name="PaymentSubTabBar" location="${parameters.mainMenuLocation}"/> <label style="h1" text="${uiLabelMap[labelTitleProperty]} ${uiLabelMap.CommonId}:[${paymentId}] ${${extraFunctionName}}"/> </widgets> </section> </container> <decorator-section-include name="body"/> </widgets> <fail-widgets> <label style="h3" text="${uiLabelMap.AccountingViewPermissionError}"/> </fail-widgets> </section> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonPaymentGroupDecorator"> <section> <actions> <set field="headerItem" value="PaymentGroup"/> <set field="paymentGroupId" from-field="parameters.paymentGroupId"/> <entity-one entity-name="PaymentGroup" value-field="paymentGroup"/> <entity-and entity-name="PaymentGroupMember" list="paymentGroupMembers" filter-by-date="true"> <field-map field-name="paymentGroupId"/> </entity-and> </actions> <widgets> <decorator-screen name="main-decorator"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainMenuLocation}"/> <section> <condition> <and> <if-service-permission service-name="acctgBasePermissionCheck" main-action="VIEW"/> <not><if-empty field="paymentGroup"/></not> </and> </condition> <widgets> <label style="h1">${uiLabelMap.AccountingPaymentGroup}: ${paymentGroupId}</label> <include-menu name="PaymentGroupTabBar" location="${parameters.mainMenuLocation}"/> <include-menu name="PaymentGroupSubTabBar" location="${parameters.mainMenuLocation}"/> </widgets> <fail-widgets> <label style="h1">${uiLabelMap.AccountingNewPaymentGroup}</label> </fail-widgets> </section> </decorator-section> <decorator-section name="body"> <section> <condition> <if-service-permission service-name="acctgBasePermissionCheck" main-action="VIEW"/> </condition> <widgets> <decorator-section-include name="body"/> </widgets> <fail-widgets> <label style="h3">${uiLabelMap.AccountingViewPermissionError}</label> </fail-widgets> </section> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonPartyDecorator"> <section> <actions> <set field="headerItem" value="companies"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainMenuLocation}"/> <section> <condition> <not><if-empty field="organizationPartyId"/></not> </condition> <widgets> <label style="h1">${uiLabelMap[labelTitleProperty]} ${uiLabelMap.CommonFor}: ${currentOrganization.groupName} [${organizationPartyId}]</label> <include-menu name="PartyTopTabBar" location="${parameters.mainMenuLocation}"/> </widgets> </section> </decorator-section> <decorator-section name="body"> <section> <condition> <not><if-empty field="organizationPartyId"/></not> </condition> <widgets> <decorator-section-include name="body"/> </widgets> </section> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonOrganizationAccountingReportsDecorator"> <section> <actions> <set field="tabButtonItemTop" value="PartyAccounts"/> <entity-one entity-name="PartyNameView" value-field="currentOrganization" auto-field-map="false"> <field-map field-name="partyId" value="${groovy:parameters.get('ApplicationDecorator|organizationPartyId')}"/> </entity-one> </actions> <widgets> <decorator-screen name="CommonPartyDecorator" location="${parameters.partyDecoratorLocation}"> <decorator-section name="body"> <include-menu name="OrganizationAccountingTabBar" location="${parameters.mainMenuLocation}"/> <include-menu name="OrganizationAccountingReportsTabBar" location="${parameters.mainMenuLocation}"/> <decorator-section-include name="body"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonAdminChecksDecorator"> <section> <actions> <set field="tabButtonItemTop" value="PartyAccounts"/> <entity-one entity-name="PartyNameView" value-field="currentOrganization" auto-field-map="false"> <field-map field-name="partyId" value="${groovy:parameters.get('ApplicationDecorator|organizationPartyId')}"/> </entity-one> </actions> <widgets> <decorator-screen name="CommonPartyDecorator" location="${parameters.partyDecoratorLocation}"> <decorator-section name="body"> <include-menu name="OrganizationAccountingTabBar" location="${parameters.mainMenuLocation}"/> <include-menu name="PartyAccountingChecksTabBar" location="${parameters.mainMenuLocation}"/> <label style="h1">${uiLabelMap.CommonFor}: ${currentOrganization.groupName} [${organizationPartyId}]</label> <decorator-section-include name="checks-body"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="main"> <section> <condition> <if-service-permission service-name="acctgBasePermissionCheck" main-action="VIEW"/> </condition> <actions> <set field="headerItem" value="main"/> <set field="helpAnchor" value="_help_for_accounting_main_screen"/> <set field="parameters.parentPortalPageId" from-field="parameters.parentPortalPageId" default-value="ACC_MAIN" global="true"/> <script location="component://common/src/main/groovy/org/apache/ofbiz/common/GetParentPortalPageId.groovy"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainMenuLocation}"/> </decorator-section> <decorator-section name="body"> <include-portal-page id="${parameters.portalPageId}"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="creditCardFields"> <section> <widgets> <platform-specific><html><html-template location="component://accounting/template/common/CreditCardFields.ftl"/></html></platform-specific> </widgets> </section> </screen> <screen name="GlobalGLSettingsDecorator"> <section> <actions> <set field="headerItem" value="GlobalGLSettings"/> </actions> <widgets> <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="pre-body"> <include-menu name="MainActionMenu" location="${parameters.mainMenuLocation}"/> <include-menu name="GlobalGLSettingMenus" location="${parameters.mainMenuLocation}"/> </decorator-section> <decorator-section name="body"> <decorator-section-include name="body"/> </decorator-section> </decorator-screen> </widgets> </section> </screen> <screen name="CommonInvoiceDecorator"><!-- used for invoice commission runs --> <section> <widgets> <include-screen name="CommonInvoiceDecorator" location="component://accounting/widget/InvoiceScreens.xml"/> </widgets> </section> </screen> <screen name="CommonEmbeddedDecorator"> <section> <actions> <property-map resource="WorkEffortUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="OrderUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="PartyUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="ContentUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="ProductUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="AccountingUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="TemporalExpressionUiLabels" map-name="uiLabelMap" global="true"/> <property-map resource="AccountingEntityLabels" map-name="uiLabelMap" global="true"/> </actions> <widgets> <include-screen name="EmbeddedDecorator" location="component://common/widget/CommonScreens.xml"/> </widgets> </section> </screen> </screens>