ilscipio/scipio-erp

View on GitHub
applications/order/webapp/ordermgr/quote/quoteInfo.ftl

Summary

Maintainability
Test Coverage
<#--
This file is subject to the terms and conditions defined in the
files 'LICENSE' and 'NOTICE', which are part of this source
code package.
-->
<@section title="${rawLabel('OrderOrderQuoteId')} ${raw(quote.quoteId)} ${rawLabel('CommonInformation')}">
        <@table type="fields">
            <#-- quote header information -->
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.CommonType}
                </@td>
                <@td valign="top" width="80%">
                    ${(quoteType.get("description",locale))?default(quote.quoteTypeId!)}
                </@td>
            </@tr>
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>

            <#-- quote Channel information -->
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.OrderSalesChannel}
                </@td>
                <@td valign="top" width="80%">
                    ${(salesChannel.get("description",locale))?default(quote.salesChannelEnumId!)}
                </@td>
            </@tr>
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>

            <#-- quote status information -->
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.CommonStatus}
                </@td>
                <@td valign="top" width="80%">
                    ${(statusItem.get("description", locale))?default(quote.statusId!)}
                </@td>
            </@tr>
            <#-- party -->
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.PartyPartyId}
                </@td>
                <@td valign="top" width="80%">
                    ${quote.partyId!}
                </@td>
            </@tr>
            <#-- quote name -->
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.OrderOrderQuoteName}
                </@td>
                <@td valign="top" width="80%">
                    ${quote.quoteName!}
                </@td>
            </@tr>
            <#-- quote description -->
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.CommonDescription}
                </@td>
                <@td valign="top" width="80%">
                    ${quote.description!}
                </@td>
            </@tr>
            <#-- quote currency -->
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.CommonCurrency}
                </@td>
                <@td valign="top" width="80%">
                    <#if currency??>${currency.get("description",locale)!(quote.currencyUomId!)}</#if>
                </@td>
            </@tr>
            <#-- quote currency -->
            <@tr type="util"><@td colspan="3"><hr /></@td></@tr>
            <@tr>
                <@td align="right" valign="top" width="20%">
                    &nbsp;${uiLabelMap.ProductProductStore}
                </@td>
                <@td valign="top" width="80%">
                    <#if store??>${store.storeName!(quote.productStoreId!)}</#if>
                </@td>
            </@tr>
        </@table>
</@section>