<?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.
-->

<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd">
    <grid name="FindProductPriceRules" list-name="listIt" paginate-target="FindProductPriceRules"
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar">
        <actions>
            <set field="noConditionFind" value="Y"/>
            <set field="parameters.productPriceRuleId" value=""/>
            <set field="parameters.ruleName" value=""/>
            <service service-name="performFind" result-map="result" result-map-list="listIt">
                <field-map field-name="inputFields" from-field="parameters"/>
                <field-map field-name="entityName" value="ProductPriceRule"/>
                <field-map field-name="viewIndex" from-field="viewIndex"/>
                <field-map field-name="viewSize" from-field="viewSize"/>
            </service>
        </actions>
        <field name="productPriceRuleId" title="${uiLabelMap.ProductPriceRuleNameId}" widget-style="buttontext">
            <hyperlink description="${ruleName}[${productPriceRuleId}]" target="EditProductPriceRules" >
                <parameter param-name="productPriceRuleId"/>
            </hyperlink>
        </field>
        <field name="isSale" title="${uiLabelMap.ProductSaleRule}?"><display/></field>
        <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><display/></field>
        <field name="thruDate" title="${uiLabelMap.CommonThruDate}"><display/></field>
        <field name="editLink" title=" " widget-style="buttontext">
            <hyperlink description="${uiLabelMap.CommonEdit}" target="EditProductPriceRules">
                <parameter param-name="productPriceRuleId"/>
            </hyperlink>
        </field>
    </grid>
    <form name="AddPriceRules" type="single" target="createProductPriceRule">
        <field name="ruleName" title="${uiLabelMap.ProductName}" required-field="true"><text size="30"/></field>
        <field name="submitButton" title="${uiLabelMap.CommonAdd}"><submit button-type="button"/></field>
    </form>
    <grid name="EditProductPriceRule" target="updateProductPriceRule" list-name="productPriceRules" 
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar" separate-columns="true">
        <field name="productPriceRuleId"><hidden/></field><!-- Users don't need this information there, the screen is already sufficiently complex! -->
        <field name="ruleName" title="${uiLabelMap.CommonName}"><text size="15"/></field>
        <field name="description" title="${uiLabelMap.CommonDescription}"><text size="25"/></field>
        <field name="isSale" title="${uiLabelMap.ProductSaleRule}">
            <drop-down>
                <option key="Y" description="${uiLabelMap.CommonY}"/>
                <option key="N" description="${uiLabelMap.CommonN}"/>
            </drop-down>
        </field>
        <field name="fromDate" title="${uiLabelMap.CommonFromDate}"><date-time type="timestamp"/></field>
        <field name="thruDate" title="${uiLabelMap.CommonThruDate}"><date-time type="timestamp"/></field>
        <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit/></field>        
        <field use-when="org.apache.ofbiz.base.util.UtilValidate.isEmpty(productPriceConds) &amp;&amp; org.apache.ofbiz.base.util.UtilValidate.isEmpty(productPriceActions)"
            name="deleteLink" title=" " widget-style="buttontext">
            <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteProductPriceRule">
                <parameter param-name="productPriceRuleId"/>
            </hyperlink>
        </field>
    </grid>
    <grid name="EditProductPriceRulesCond" list-name="productPriceConds" target="updateProductPriceCond" 
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar" separate-columns="true">
        <field name="productPriceRuleId"><hidden/></field><!-- Users don't need this information there, the screen is already sufficiently complex! -->
        <field name="productPriceCondSeqId"><hidden/></field><!-- Users don't need this information there, the screen is already sufficiently complex! -->
        <field name="inputParamEnumId" title="${uiLabelMap.ProductInput}">
            <drop-down allow-empty="false" current="selected">
                <entity-options entity-name="Enumeration" key-field-name="enumId">
                    <entity-constraint name="enumTypeId" operator="equals" value="PROD_PRICE_IN_PARAM"/>
                </entity-options>
            </drop-down>
        </field>
        <field name="operatorEnumId" title="${uiLabelMap.ProductOperator}">
            <drop-down allow-empty="false" current="selected">
                <entity-options entity-name="Enumeration" key-field-name="enumId">
                    <entity-constraint name="enumTypeId" operator="equals" value="PROD_PRICE_COND"/>
                </entity-options>
            </drop-down>
        </field>
        <field name="condValueInput" title="${uiLabelMap.ProductValue}" entry-name="condValue"><text size="10"/></field>
        <field name="condValue" title=" ">
            <drop-down allow-empty="false" current="selected">
                <list-options list-name="productPriceRulesCondValues" key-name="condValue"/>
            </drop-down>
        </field>
        <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit/></field>
        <field name="deleteLink" title=" " widget-style="buttontext" widget-area-style="align-text">
            <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteProductPriceCond">
                <parameter param-name="productPriceRuleId" from-field="productPriceCond.productPriceRuleId"/>
                <parameter param-name="productPriceCondSeqId" from-field="productPriceCond.productPriceCondSeqId"/>
            </hyperlink>
        </field>
    </grid>
    <grid name="AddProductPriceRulesCond" list-name="productPriceCondAdd" target="createProductPriceCond" 
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar" separate-columns="true">
        <field name="productPriceRuleId"><hidden/></field><!-- Users don't need this information there, the screen is already sufficiently complex! -->
        <field name="new" title="${uiLabelMap.CommonNew}"><display default-value="${uiLabelMap.ProductPriceRulesNewCond}"/></field>
        <field name="inputParamEnumId" title="${uiLabelMap.ProductInput}">
            <drop-down allow-empty="false">
                <entity-options entity-name="Enumeration" key-field-name="enumId">
                    <entity-constraint name="enumTypeId" operator="equals" value="PROD_PRICE_IN_PARAM"/>
                </entity-options>
            </drop-down>
        </field>
        <field name="operatorEnumId" title="${uiLabelMap.ProductOperator}">
            <drop-down allow-empty="false">
                <entity-options entity-name="Enumeration" key-field-name="enumId">
                    <entity-constraint name="enumTypeId" operator="equals" value="PROD_PRICE_COND"/>
                </entity-options>
            </drop-down>
        </field>
        <field name="condValueInput" title="${uiLabelMap.ProductValue}"><text size="10"/></field>
        <field name="condValue" title=" ">
            <drop-down allow-empty="false">
                <list-options list-name="productPriceRulesCondValues" key-name="condValue"/>
            </drop-down>
        </field>
        <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit/></field>
    </grid>
    <grid name="EditProductPriceRulesAction" list-name="productPriceActions" target="updateProductPriceAction"
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar" separate-columns="true">
        <field name="productPriceRuleId"><hidden/></field>
        <field name="productPriceActionSeqId"><hidden/></field>
        <field name="productPriceActionTypeId" title="${uiLabelMap.ProductActionType}">
            <drop-down allow-empty="false" current="selected">
                <entity-options entity-name="ProductPriceActionType" key-field-name="productPriceActionTypeId"/>
            </drop-down>
        </field>
        <field name="amount" title="${uiLabelMap.ProductValue}"><text/></field>
        <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit/></field>
        <field name="deleteLink" title=" " widget-style="buttontext" widget-area-style="align-text">
            <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteProductPriceAction">
                <parameter param-name="productPriceRuleId" from-field="productPriceAction.productPriceRuleId"/>
                <parameter param-name="productPriceActionSeqId" from-field="productPriceAction.productPriceActionSeqId"/>
            </hyperlink>
        </field>
    </grid>
    <grid name="AddProductPriceRulesAction" list-name="productPriceActionAdd" target="createProductPriceAction" 
        odd-row-style="alternate-row" default-table-style="basic-table hover-bar" separate-columns="true">
        <field name="productPriceRuleId"><hidden/></field>
        <field name="new" title="${uiLabelMap.CommonNew}"><display default-value="${uiLabelMap.ProductPriceRulesNewAction}"/></field>
        <field name="productPriceActionTypeId" title="${uiLabelMap.ProductActionType}">
            <drop-down allow-empty="false">
                <entity-options entity-name="ProductPriceActionType" key-field-name="productPriceActionTypeId"/>
            </drop-down>
        </field>
        <field name="amount" title="${uiLabelMap.ProductValue}"><text/></field>
        <field name="submitButton" title="${uiLabelMap.CommonAdd}" widget-style="smallSubmit"><submit/></field>
    </grid>
</forms>
