ilscipio/scipio-erp

View on GitHub
applications/workeffort/widget/WorkEffortQuoteForms.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is subject to the terms and conditions defined in the
files 'LICENSE' and 'NOTICE', which are part of this source
code package.
-->

<forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd">

    <form name="ListWorkEffortQuotes" separate-columns="true" target="ListWorkEffortQuotes" title="" type="list"
        odd-row-style="alternate-row" header-row-style="header-row-2"> <!-- orig: default-table-style=-style="basic-table hover-bar" -->
        <actions>
            <entity-and entity-name="WorkEffortQuoteView">
                <field-map field-name="workEffortId"/>
            </entity-and>
        </actions>
        <field name="workEffortId"><hidden/></field>
        <field name="quoteId" widget-style="${styles.link_nav_info_id}">
            <hyperlink description="${quoteId}" target="/ordermgr/control/EditQuote" target-type="inter-app">
                <parameter param-name="quoteId"/>
            </hyperlink>
        </field>
        <field name="quoteName"><display/></field>
        <field name="description"><display/></field>
        <field name="statusItemDescription"><display/></field>
        <field name="issueDate"><display/></field>
        <field name="deleteAction" title=" " widget-style="${styles.link_run_sys} ${styles.action_remove}">
            <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortQuote">
                <parameter param-name="workEffortId"/>
                <parameter param-name="quoteId"/>
            </hyperlink>
        </field>
    </form>
    <form name="AddWorkEffortQuote" target="createWorkEffortQuote" title="" type="single"
        header-row-style="header-row"> <!-- orig: default-table-style=-style="basic-table" -->
        <field name="workEffortId"><hidden/></field>
        <field name="quoteId"><lookup target-form-name="LookupQuote"/></field>
        <field name="submitAction" title="${uiLabelMap.CommonAdd}" widget-style="${styles.link_run_sys} ${styles.action_add}"><submit button-type="button"/></field>
    </form>

    <form name="ListWorkEffortQuoteItems" separate-columns="true" target="ListWorkEffortQuoteItems" title="" type="list"
        odd-row-style="alternate-row" header-row-style="header-row-2"> <!-- orig: default-table-style=-style="basic-table hover-bar" -->
        <actions>
            <entity-and entity-name="QuoteItem">
                <field-map field-name="workEffortId"/>
            </entity-and>
        </actions>
        <field name="workEffortId"><hidden/></field>
        <field name="quoteId" widget-style="${styles.link_nav_info_id}">
            <hyperlink description="${quoteId}" target="/ordermgr/control/EditQuote" target-type="inter-app">
                <parameter param-name="quoteId"/>
            </hyperlink>
        </field>
        <field name="quoteItemSeqId" widget-style="${styles.link_nav_info_id}">
            <hyperlink description="${quoteItemSeqId}" target="/ordermgr/control/EditQuoteItem" target-type="inter-app">
                <parameter param-name="workEffortId"/>
                <parameter param-name="quoteId"/>
                <parameter param-name="quoteItemSeqId"/>
            </hyperlink>
        </field>
        <field name="productId"><display/></field>
        <field name="custRequestId"><display/></field>
        <field name="custRequestItemSeqId"><display/></field>
        <field name="estimatedDeliveryDate"><display/></field>
        <field name="comments"><display/></field>
        <field name="deleteAction" title=" " widget-style="${styles.link_run_sys} ${styles.action_remove}">
           <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortQuoteItem">
                <parameter param-name="workEffortId"/>
                <parameter param-name="quoteId"/>
                <parameter param-name="quoteItemSeqId"/>
            </hyperlink>
        </field>
    </form>
    <form name="AddWorkEffortQuoteItem" target="createWorkEffortQuoteItem" title="" type="single"
        header-row-style="header-row"> <!-- orig: default-table-style=-style="basic-table" -->
        <field name="workEffortId"><hidden/></field>
        <field name="quoteId"><lookup target-form-name="LookupQuote"/></field>
        <field name="quoteItemSeqId"><lookup target-form-name="LookupQuoteItem" target-parameter="quoteId"/></field>
        <field name="submitAction" title="${uiLabelMap.CommonAdd}" widget-style="${styles.link_run_sys} ${styles.action_add}"><submit button-type="button"/></field>
    </form>
</forms>