| <?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="CommonOrderHeaderDecorator"> |
| <section> |
| <widgets> |
| <decorator-screen name="main-decorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <section> |
| <!-- do check for ORDERMGR, _VIEW permission --> |
| <condition> |
| <if-has-permission permission="ORDERMGR" action="_VIEW"/> |
| </condition> |
| <widgets> |
| <container> |
| <label style="h1">${uiLabelMap.CommonId}:${orderHeader.orderId}</label> |
| </container> |
| |
| <decorator-section-include name="body"/> |
| |
| </widgets> |
| <fail-widgets> |
| <label style="h3">${uiLabelMap.OrderViewPermissionError}</label> |
| </fail-widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="EditOrderHeader"> |
| <section> |
| <actions> |
| <set field="titleProperty" value="PageTitleEditOrderHeader"/> |
| <set field="headerItem" value="OrderHeader"/> |
| <set field="tabButtonItem" value="EditOrderHeader"/> |
| |
| <set field="orderId" from-field="parameters.orderId"/> |
| <entity-one entity-name="OrderHeader" value-field="orderHeader"/> |
| <property-map resource="OrderUiLabels" map-name="uiLabelMap"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="CommonOrderHeaderDecorator"> |
| <decorator-section name="body"> |
| <screenlet title="${uiLabelMap.PageTitleEditOrderHeader}"> |
| <include-form name="EditOrderHeader" location="component://order/widget/ordermgr/OrderForms.xml"/> |
| </screenlet> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="ListOrderHeaders"> |
| <section> |
| <actions> |
| <set field="titleProperty" value="PageTitleListOrderHeaders"/> |
| <set field="headerItem" value="OrderHeader"/> |
| <set field="tabButtonItem" value="EditOrderHeader"/> |
| |
| <set field="orderId" from-field="parameters.orderId"/> |
| <entity-one entity-name="OrderHeader" value-field="OrderHeader"/> |
| <property-map resource="OrderUiLabels" map-name="uiLabelMap"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="CommonOrderHeaderDecorator"> |
| <decorator-section name="body"> |
| <screenlet title="${uiLabelMap.PageTitleListOrderHeaders}"> |
| <include-form name="ListOrderHeaders" location="component://order/widget/ordermgr/OrderForms.xml"/> |
| </screenlet> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| <screen name="SendPOEmail"> |
| <section> |
| <actions> |
| <entity-one entity-name="PartyNameView" value-field="supplier"> |
| <field-map field-name="partyId" from-field="partyIdTo"/> |
| </entity-one> |
| <entity-one entity-name="PartyNameView" value-field="company"> |
| <field-map field-name="partyId" from-field="partyIdFrom"/> |
| </entity-one> |
| <set field="title" value="Your Purchase Order #${orderId}"/> |
| </actions> |
| <widgets> |
| <platform-specific><html> |
| <html-template location="component://order/template/order/SendPurchaseOrderEmail.ftl"/> |
| </html></platform-specific> |
| </widgets> |
| </section> |
| </screen> |
| </screens> |