blob: 2653fd336ce570f28f3562673ae14077d2f76b6d [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://ofbiz.apache.org/dtds/widget-screen.xsd">
<screen name="FindProductStore">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreList"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreList"/>
<entity-condition entity-name="ProductStore" list="productStores">
<order-by field-name="storeName"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.ProductProductStoreList}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<container><link target="EditProductStore" text="${uiLabelMap.ProductCreateNewProductStore}" style="buttontext"/></container>
<include-form name="FindProductStore" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStore">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStore"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStore"/>
<set field="labelTitleProperty" value="ProductStore"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<property-to-field field="defaultCurrencyUomId" resource="general" property="currency.uom.id.default" default="USD"/>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.ProductProductStoreList}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="EditProductStore" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreRoles">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreRoles"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreRoles"/>
<set field="labelTitleProperty" value="ProductProductStoreRoles"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<script location="component://product/webapp/catalog/WEB-INF/actions/store/EditProductStoreRoles.groovy"/>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<platform-specific>
<html><html-template location="component://product/webapp/catalog/store/EditProductStoreRoles.ftl"/></html>
</platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStorePromos">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStorePromos"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStorePromos"/>
<set field="labelTitleProperty" value="ProductPromotions"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<set field="userEntered" from-field="parameters.userEntered"/>
<set field="activeOnly" from-field="parameters.activeOnly" default-value="true"/>
<entity-condition entity-name="ProductStorePromoAndAppl" list="productStorePromoAndAppls" filter-by-date="${activeOnly}">
<condition-list combine="and">
<condition-expr field-name="userEntered" from-field="userEntered" ignore-if-empty="true"/>
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
</condition-list>
<order-by field-name="sequenceNum"/>
<order-by field-name="productPromoId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container>
<label style="h3">${uiLabelMap.CommonView}</label>
<link target="EditProductStorePromos" text="${uiLabelMap.CommonAll}" style="buttontext">
<parameter param-name="productStoreId"/>
</link>
<link target="EditProductStorePromos" text="${uiLabelMap.CommonUserEnteredOnly}" style="buttontext">
<parameter param-name="productStoreId"/>
<parameter param-name="userEntered" value="Y"/>
</link>
<link target="EditProductStorePromos" text="${uiLabelMap.ProductPromotionImported}" style="buttontext">
<parameter param-name="productStoreId"/>
<parameter param-name="userEntered" value="N"/>
</link>
</container>
<container>
<label style="h3">${uiLabelMap.CommonView} ${uiLabelMap.CommonActiveInactive}</label>
<link target="EditProductStorePromos" text="${uiLabelMap.CommonAll}" style="buttontext">
<parameter param-name="productStoreId"/>
<parameter param-name="activeOnly" value="N"/>
</link>
<link target="EditProductStorePromos" text="${uiLabelMap.CommonUserEnteredOnly}" style="buttontext">
<parameter param-name="productStoreId"/>
<parameter param-name="activeOnly" value="N"/>
<parameter param-name="userEntered" value="Y"/>
</link>
<link target="EditProductStorePromos" text="${uiLabelMap.ProductPromotionImported}" style="buttontext">
<parameter param-name="productStoreId"/>
<parameter param-name="activeOnly" value="N"/>
<parameter param-name="userEntered" value="N"/>
</link>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStorePromos}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStorePromos" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.ProductAddStorePromo}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="CreateProductStorePromo" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreCatalogs">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreCatalogs"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreCatalogs"/>
<set field="labelTitleProperty" value="ProductCatalogs"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="ProductStoreCatalog" list="productStoreCatalogs">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
<order-by field-name="sequenceNum"/>
<order-by field-name="productStoreId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreCatalogs}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="UpdateProductStoreCatalog" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleAddProductStoreCatalogs}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="CreateProductStoreCatalog" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreWebSites">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreWebSites"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreWebSites"/>
<set field="labelTitleProperty" value="ProductProductStoreWebSites"/>
<set field="productStoreId" from-field="parameters.viewProductStoreId"/>
<set field="productStoreId" from-field="parameters.productStoreId" default-value="${productStoreId}"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="WebSite" list="storeWebSites">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
<order-by field-name="siteName"/>
</entity-condition>
<entity-condition entity-name="WebSite" list="webSites">
<order-by field-name="siteName"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<platform-specific>
<html><html-template location="component://product/webapp/catalog/store/EditProductStoreWebSites.ftl"/></html>
</platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreShipSetup">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreShipSetup"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreShipSetup"/>
<set field="labelTitleProperty" value="ProductProductStoreShipmentSettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="ProductStoreShipmentMethView" list="storeShipMethods">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
<order-by field-name="sequenceNumber"/>
</entity-condition>
<entity-one entity-name="ProductStoreShipmentMeth" value-field="productStoreShipmentMeth" auto-field-map="true"/>
<entity-condition entity-name="CarrierShipmentMethod" list="carrierShipmentMethods">
<order-by field-name="sequenceNumber"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreShipSetup}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStoreShipmentMeths" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<section>
<condition>
<and>
<if-empty field="productStoreShipmentMeth"/>
<if-empty field="parameters.addCarrierShipMeth"/>
</and>
</condition>
<widgets>
<label text="${uiLabelMap.PageTitleAddProductStoreShipSetup}"/>
</widgets>
<fail-widgets>
<label text="${uiLabelMap.PageTitleAddProductStoreShipSetup}"/>
</fail-widgets>
</section>
</container>
</container>
<container style="screenlet-body">
<section>
<condition>
<and>
<if-empty field="productStoreShipmentMeth"/>
<if-empty field="parameters.addCarrierShipMeth"/>
</and>
</condition>
<widgets>
<platform-specific>
<html><html-template location="component://product/webapp/catalog/store/EditProductStoreShipSetup.ftl"/></html>
</platform-specific>
</widgets>
<fail-widgets>
<include-form name="EditProductStoreShipmentMeth" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</fail-widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreShipmentCostEstimates">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreShipmentCostEstimates"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreShipmentCostEstimates"/>
<set field="labelTitleProperty" value="ProductProductStoreShipmentSettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="ShipmentCostEstimate" list="estimates">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
<order-by field-name="geoIdFrom"/>
<order-by field-name="shipmentMethodTypeId"/>
<order-by field-name="geoIdTo"/>
</entity-condition>
<entity-one entity-name="ShipmentCostEstimate" value-field="estimate" auto-field-map="true"/>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreShipmentCostEstimates}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListShipmentCostEstimates" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<section>
<condition>
<if-empty field="estimate"/>
</condition>
<widgets>
<label text="${uiLabelMap.ProductNewShipmentEstimate}"/>
</widgets>
<fail-widgets>
<label text="${uiLabelMap.ProductViewEstimates}"/>
</fail-widgets>
</section>
</container>
</container>
<container style="screenlet-body">
<section>
<condition>
<if-empty field="estimate"/>
</condition>
<widgets>
<include-form name="AddShipmentCostEstimate" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
<fail-widgets>
<include-form name="ViewShipmentCostEstimate" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</fail-widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStorePaySetup">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStorePaySetup"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStorePaySetup"/>
<set field="labelTitleProperty" value="ProductProductStorePaymentSettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<set field="paymentMethodTypeId" from-field="parameters.paymentMethodTypeId"/>
<set field="paymentServiceTypeEnumId" from-field="parameters.paymentServiceTypeEnumId"/>
<entity-one entity-name="ProductStorePaymentSetting" value-field="productStorePaymentSetting" auto-field-map="true"/>
<script location="component://product/webapp/catalog/WEB-INF/actions/store/EditProductStorePaySetup.groovy"/>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<section>
<widgets>
<label text="${uiLabelMap.PageTitleListProductStorePaySetup}"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStorePaymentSettings" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<section>
<widgets>
<label text="${uiLabelMap.PageTitleEditProductStorePaySetup}"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet-body">
<section>
<condition>
<if-has-permission permission="CATALOG" action="CREATE"/>
</condition>
<widgets>
<include-form name="EditProductStorePaymentSetting" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreEmails">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreEmailSetup"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreEmails"/>
<set field="labelTitleProperty" value="ProductProductStoreEmailSettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="ProductStoreEmailSetting" list="productStoreEmailSettings">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
<order-by field-name="emailType"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreEmailSetup}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="updateProductStoreEmail" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleAddProductStoreEmailSetup}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="createProductStoreEmail" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreSurveys">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreSurveys"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreSurveys"/>
<set field="labelTitleProperty" value="ProductStoreSurveySettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<script location="component://product/webapp/catalog/WEB-INF/actions/store/EditProductStoreSurveys.groovy"/>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<platform-specific>
<html><html-template location="component://product/webapp/catalog/store/EditProductStoreSurveys.ftl"/></html>
</platform-specific>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreKeywordOvrd">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreKeywordOvrd"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreKeywordOvrd"/>
<set field="labelTitleProperty" value="ProductStoreKeywordOverrides"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-condition entity-name="ProductStoreKeywordOvrd" list="productStorekeywordOvrdList">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreKeywordOvrd}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="UpdateproductStorekeywordOvrdForm" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleAddProductStoreKeywordOvrd}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="CreateproductStorekeywordOvrdForm" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="ViewProductStoreSegments">
<section>
<actions>
<set field="titleProperty" value="PageTitleViewProductStoreSegments"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="ViewProductStoreSegments"/>
<set field="labelTitleProperty" value="ProductSegments"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore">
<field-map field-name="productStoreId"/>
</entity-one>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container>
<link target="/marketing/control/viewSegmentGroup" style="buttontext" url-mode="inter-app" text="${uiLabelMap.ProductNewSegment}">
<parameter param-name="productStoreId" from-field="productStoreId"/>
</link>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleViewProductStoreSegments}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ViewProductStoreSegments" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreFinAccountSettings">
<section>
<actions>
<property-map resource="AccountingUiLabels" map-name="uiLabelMap"/>
<set field="titleProperty" value="PageTitleEditProductStoreFinAccountSettings"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreFinAccountSettings"/>
<set field="labelTitleProperty" value="ProductStoreFinAccountSettings"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-one entity-name="ProductStore" value-field="productStore" auto-field-map="true"/>
<entity-one entity-name="ProductStoreFinActSetting" value-field="finAccountSetting"/>
<entity-condition entity-name="ProductStoreFinActSetting" list="productStoreFinActSettings">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleListProductStoreFinAccountSettings}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStoreFinAccountSettings" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreFinAccountSettings}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="EditProductStoreFinAccountSettings" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreVendorPayments">
<section>
<actions>
<property-map resource="AccountingUiLabels" map-name="uiLabelMap"/>
<set field="titleProperty" value="PageTitleEditProductStoreVendorPayments"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreVendorPayments"/>
<set field="labelTitleProperty" value="ProductStoreVendorPayments"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-condition entity-name="ProductStoreVendorPayment" list="productStoreVendorPaymentList">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleListProductStoreVendorPayments}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStoreVendorPayments" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreVendorPayments}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="EditProductStoreVendorPayment" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
<screen name="EditProductStoreVendorShipments">
<section>
<actions>
<set field="titleProperty" value="PageTitleEditProductStoreVendorShipments"/>
<set field="headerItem" value="store"/>
<set field="tabButtonItem" value="EditProductStoreVendorShipments"/>
<set field="labelTitleProperty" value="ProductStoreVendorShipments"/>
<set field="productStoreId" from-field="parameters.productStoreId"/>
<entity-condition entity-name="ProductStoreVendorShipment" list="productStoreVendorShipmentList">
<condition-expr field-name="productStoreId" from-field="productStoreId"/>
</entity-condition>
</actions>
<widgets>
<decorator-screen name="CommonProductStoreDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleListProductStoreVendorShipments}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="ListProductStoreVendorShipments" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
<container style="screenlet">
<container style="screenlet-title-bar">
<container style="h3">
<label text="${uiLabelMap.PageTitleEditProductStoreVendorShipments}"/>
</container>
</container>
<container style="screenlet-body">
<section>
<widgets>
<include-form name="EditProductStoreVendorShipment" location="component://product/webapp/catalog/store/ProductStoreForms.xml"/>
</widgets>
</section>
</container>
</container>
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>