| <?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> |
| <!-- base/top/specific map first, then more common map added for shared labels --> |
| <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"/> |
| |
| <set field="layoutSettings.companyName" from-field="uiLabelMap.WorkEffortCompanyName" global="true"/> |
| <set field="layoutSettings.companySubtitle" from-field="uiLabelMap.WorkEffortCompanySubtitle" 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.gif" global="true"/>--> |
| <!-- <set field="layoutSettings.headerMiddleBackgroundUrl" value="" global="true"/> --> |
| <!-- <set field="layoutSettings.headerRightBackgroundUrl" value="" global="true"/> --> |
| <set field="activeApp" value="workeffort" global="true"/> |
| <set field="applicationMenuName" value="WorkEffortAppBar" global="true"/> |
| <set field="applicationMenuLocation" value="component://workeffort/widget/WorkEffortMenus.xml" global="true"/> |
| <set field="applicationTitle" value="${uiLabelMap.WorkEffortManagerApplication}" global="true"/> |
| </actions> |
| <widgets> |
| <include-screen name="ApplicationDecorator" location="component://commonext/widget/CommonScreens.xml"/> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="login-decorator"> |
| <section> |
| <widgets> |
| <include-screen name="main-decorator"/> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonWorkEffortDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="workeffort"/> |
| <set field="workEffortId" from-field="parameters.workEffortId"/> |
| <entity-one entity-name="WorkEffort" value-field="workEffort"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="pre-body"> |
| <section> |
| <condition> |
| <and> |
| <if-service-permission service-name="workEffortManagerPermission" main-action="VIEW"/> |
| <not><if-empty field="workEffortId"/></not> |
| </and> |
| </condition> |
| <widgets> |
| <include-menu name="WorkEffortTabBar" location="component://workeffort/widget/WorkEffortMenus.xml"/> |
| </widgets> |
| </section> |
| </decorator-section> |
| <decorator-section name="body"> |
| <section> |
| <condition> |
| <if-service-permission service-name="workEffortManagerPermission" main-action="VIEW"/> |
| </condition> |
| <widgets> |
| <container style="button-bar"> |
| <link text="${uiLabelMap.WorkEffortCreate}" target="EditWorkEffort" style="buttontext"> |
| <parameter param-name="DONE_PAGE" from-field="donePage"/> |
| </link> |
| </container> |
| <section> |
| <condition> |
| <not> |
| <if-empty field="workEffortId"/> |
| </not> |
| </condition> |
| <widgets> |
| <container style="h1"> |
| <label>${uiLabelMap[titleProperty]} - ${workEffort.workEffortName} [${workEffortId}]</label> |
| </container> |
| </widgets> |
| </section> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WorkEffortViewPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonTimesheetDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="timesheet"/> |
| <set field="timesheetId" from-field="parameters.timesheetId"/> |
| <entity-one entity-name="Timesheet" value-field="timesheet"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <section> |
| <condition> |
| <if-has-permission permission="WORKEFFORTMGR" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <section> |
| <condition><not><if-empty field="timesheetId"/></not></condition> |
| <widgets> |
| <include-menu name="TimesheetTabBar" location="component://workeffort/widget/TimesheetMenus.xml"/> |
| <container style="button-bar"> |
| <link text="${uiLabelMap.WorkEffortTimesheetCreate}" target="EditTimesheet" style="buttontext create"/> |
| </container> |
| <container><label style="h1">${uiLabelMap.WorkEffortTimesheetTimesheetId} ${timesheetId}</label></container> |
| </widgets> |
| </section> |
| <decorator-section-include name="body"/> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WorkEffortViewPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="CommonCalendarDecorator"> |
| <section> |
| <actions> |
| <set field="headerItem" value="calendar" /> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <section> |
| <condition> |
| <if-has-permission permission="WORKEFFORTMGR" action="_VIEW" /> |
| </condition> |
| <actions> |
| <script location="component://workeffort/groovyScripts/workeffort/calendar/Days.groovy" /> |
| </actions> |
| <widgets> |
| <screenlet id="calendarOptions" name="calendarOptionsScreenlet" collapsible="true" title="${uiLabelMap.WorkEffortCalendarFindEntries}"> |
| <include-form name="FilterCalendarEvents" location="component://workeffort/widget/CalendarForms.xml" /> |
| </screenlet> |
| <decorator-section-include name="body" /> |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.WorkEffortViewPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="main"> |
| <section> |
| <actions> |
| <set field="headerItem" value="main"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <platform-specific> |
| <html><html-template location="component://workeffort/template/Main.ftl"/></html> |
| </platform-specific> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| </screens> |