blob: ddf9c88b993d79612fe0055210435a5b0ec9d93d [file] [log] [blame]
<?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"
xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/widget-screen.xsd">
<screen name="main-decorator">
<section>
<actions>
<property-map resource="AssetMaintUiLabels" map-name="uiLabelMap" global="true"/>
<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="WorkEffortUiLabels" map-name="uiLabelMap" global="true"/>
<property-map resource="CommonUiLabels" map-name="uiLabelMap" global="true"/>
<!-- The two default (global) stylesheets are added to the list
of stylesheets to the first and second position -->
<set field="layoutSettings.styleSheets[+0]" value="/images/maincss.css" global="true"/>
<!-- The default (global) java scripts -->
<set field="layoutSettings.javaScripts[]" value="/images/calendar1.js" global="true"/>
<set field="layoutSettings.javaScripts[]" value="/images/selectall.js" global="true"/>
<set field="layoutSettings.javaScripts[]" value="/images/fieldlookup.js" global="true"/>
<set field="layoutSettings.companyName" from-field="uiLabelMap.AssetMaintCompanyName" global="true"/>
<set field="layoutSettings.companySubtitle" from-field="uiLabelMap.AssetMaintCompanySubtitle" global="true"/>
<set field="layoutSettings.headerImageUrl" value="/images/ofbiz_logo.jpg" global="true"/>
</actions>
<widgets>
<!-- render header -->
<platform-specific><html><html-template location="component://common/webcommon/includes/header.ftl"/></html></platform-specific>
<!-- render appbar -->
<platform-specific><html><html-template location="component://assetmaint/webapp/assetmaint/includes/appbar.ftl"/></html></platform-specific>
<container style="contentarea">
<container style="${MainColumnStyle}">
<!-- render messages -->
<platform-specific><html><html-template location="component://common/webcommon/includes/messages.ftl"/></html></platform-specific>
<decorator-section-include name="body"/>
</container>
</container>
<!-- render footer -->
<platform-specific><html><html-template location="component://common/webcommon/includes/footer.ftl"/></html></platform-specific>
</widgets>
</section>
</screen>
<screen name="login">
<section>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<platform-specific>
<html><html-template location="component://common/webcommon/login.ftl"/></html>
</platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="CommonFixedAssetDecorator"><!--Appbar level decorator-->
<section>
<actions>
<set field="appbarItem" global="true" value="fixedAssets"/>
</actions>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<section>
<!-- TODO: do check for ASSETMAINT, _VIEW permission -->
<condition>
<if-has-permission permission="OFBTOOLS" action="_VIEW"/>
</condition>
<widgets>
<section>
<condition><not><if-empty field-name="fixedAssetId"/></not></condition>
<widgets>
<include-menu name="FixedAssetTabBar" location="component://assetmaint/widget/Menus.xml"/>
<label style="head1" text="${uiLabelMap.${labelTitleProperty}} ${uiLabelMap.CommonFor}: ${fixedAsset.fixedAssetName} [${uiLabelMap.CommonId}:${fixedAssetId}] ${${extraFunctionName}}"/>
</widgets>
</section>
</widgets>
<fail-widgets>
<label style="head3" text="${uiLabelMap.AcccountingViewPermissionError}"/>
</fail-widgets>
</section>
<decorator-section-include name="body"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="CommonFixedAssetMaintDecorator"><!--Appbar level decorator-->
<section>
<actions>
<set field="appbarItem" value="fixedAssetMaints"/>
</actions>
<widgets>
<decorator-screen name="main-decorator">
<decorator-section name="body">
<section>
<!-- TODO: do check for ACCOUNTING, WORKEFFORT, ASSETMAINT, _VIEW permission -->
<condition>
<if-has-permission permission="OFBTOOLS" action="_VIEW"/>
</condition>
<widgets>
<section>
<condition>
<and>
<not><if-empty field-name="fixedAssetId"/></not>
<not><if-empty field-name="maintHistSeqId"/></not>
</and>
</condition>
<widgets>
<include-menu name="FixedAssetMaintTabBar" location="component://assetmaint/widget/Menus.xml"/>
<label style="head1" text="${uiLabelMap.${labelTitleProperty}} ${uiLabelMap.CommonFor}: ${fixedAsset.fixedAssetName} [${uiLabelMap.CommonId}:${fixedAssetId}] ${${extraFunctionName}}"/>
</widgets>
</section>
</widgets>
<fail-widgets>
<label style="head3" text="${uiLabelMap.AcccountingViewPermissionError}"/>
</fail-widgets>
</section>
<decorator-section-include name="body"/>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="CommonFacilityDecorator">
<section>
<actions>
<set field="appbarItem" value="facility"/>
<set field="facilityId" from-field="parameters.facilityId"/>
<entity-one entity-name="Facility" value-name="facility"/>
</actions>
<widgets>
<decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<section>
<condition>
<if-has-permission permission="FACILITY" action="_VIEW"/>
</condition>
<widgets>
<section>
<condition>
<or>
<not><if-empty field-name="facility"/></not>
<not><if-empty field-name="displayWithNoFacility"/></not>
</or>
</condition>
<widgets>
<include-menu name="FacilityTabBar" location="component://assetmaint/widget/Menus.xml"/>
<decorator-section-include name="body"/>
</widgets>
<fail-widgets>
<label style="head3">${uiLabelMap.ProductErrorFacilityIdNotFound}</label>
</fail-widgets>
</section>
</widgets>
<fail-widgets>
<label style="head3">${uiLabelMap.ProductFacilityViewPermissionError}</label>
</fail-widgets>
</section>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>