📄 orderagreements.ftl
字号:
<#-- * Copyright (c) 2003 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * *@author Si Chen (schen@graciousstyle.com) *@version 1.0--><form method="post" name="agreementForm" action="<@ofbizUrl>setOrderCurrencyAgreementShipDates</@ofbizUrl>"><div class="screenlet"> <div class="screenlet-header"> <div class="boxhead"> ${uiLabelMap.OrderOrderEntryCurrencyAgreementShipDates}</div> </div> <div class="screenlet-body"> <table> <tr><td colspan="4"> </td></tr> <#if agreements?exists> <input type='hidden' name='hasAgreements' value='Y'/> <tr> <td> </td> <td align='right' valign='top' nowrap> <div class='tableheadtext'> ${uiLabelMap.OrderSelectAgreement} </div> </td> <td> </td> <td valign='middle'> <div class='tabletext' valign='top'> <select name="agreementId" class="inputBox"> <option value="">${uiLabelMap.CommonNone}</option> <#list agreements as agreement> <option value='${agreement.agreementId}' >${agreement.agreementId} - ${agreement.description?if_exists}</option> </#list> </select> </div> </td> </tr> <#else><input type='hidden' name='hasAgreements' value='N'/> </#if> <tr> <td> </td> <td align='right' valign='middle' nowrap> <div class='tableheadtext'> <#if agreements?exists>${uiLabelMap.OrderSelectCurrencyOr} <#else>${uiLabelMap.OrderSelectCurrency} </#if> </div> </td> <td> </td> <td valign='middle'> <div class='tabletext' valign='top'> <select class="selectBox" name="currencyUomId"> <option value=""></option> <#list currencies as currency> <option value="${currency.uomId}" <#if (defaultCurrencyUomId?has_content) && (currency.uomId == defaultCurrencyUomId)>selected</#if>>${currency.uomId}</option> </#list> </select> </div> </td> </tr> <tr> <td> </td> <td align='right' valign='top' nowrap> <div class='tableheadtext'> ${uiLabelMap.OrderShipAfterDateDefault} </div> </td> <td> </td> <td><input type="text" name="shipAfterDate" size="20" maxlength="30" class="inputBox"/> <a href="javascript:call_cal(document.agreementForm.shipAfterDate,'');"> <img src='/images/cal.gif' width='16' height='16' border='0' alt='Calendar'/> </a> </td> </tr> <tr> <td> </td> <td align='right' valign='top' nowrap> <div class='tableheadtext'> ${uiLabelMap.OrderShipBeforeDateDefault} </div> </td> <td> </td> <td><input type="text" name="shipBeforeDate" size="20" maxlength="30" class="inputBox"/> <a href="javascript:call_cal(document.agreementForm.shipBeforeDate,'');"> <img src='/images/cal.gif' width='16' height='16' border='0' alt='Calendar'/> </a> </td> </tr> <tr><td colspan="4"> </td></tr> <tr><td colspan="3"> </td><td align="left"><input type="submit" class="smallSubmit" value="${uiLabelMap.CommonSelect}"> </table> </div></div></form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -