⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 findpayment.ftl

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 FTL
字号:
<#-- * Copyright (C) 2006  Open Source Strategies, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA--><div class="screenlet-header">    <div class="boxhead">      ${uiLabelMap.FinancialsFindPayment}    </div></div><form method="post" action="<@ofbizUrl>findPayment</@ofbizUrl>" name="findPayment"><input type="hidden" name="findPaymentTypeId" value="${parameters.findPaymentTypeId?if_exists}"><#if findDisbursement>  <input type="hidden" name="partyIdFrom" value="${organizationPartyId?if_exists}"><#else>  <input type="hidden" name="partyIdTo" value="${organizationPartyId?if_exists}"></#if>  <table border="0" cellpadding="2" cellspacing="0" width="100%">    <tr>       <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.FinancialsPaymentId} </div></td>       <td width="2%">&nbsp;</td>       <td nowrap><input type="text" class="inputBox" name="paymentId" value="${parameters.paymentId?if_exists}"/></td>    </tr>    <tr>       <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.AccountingPaymentType} </div></td>       <td width="2%">&nbsp;</td>       <td colspan="4" align="left">         <div class="tabletext">           <select name="paymentTypeId" class="selectBox">               <option value=""></option>             <#list paymentTypeList as paymentType>	           <option value="${paymentType.paymentTypeId}" <#if parameters.paymentTypeId?has_content && parameters.paymentTypeId?default("") == paymentType.paymentTypeId>SELECTED</#if>>${paymentType.get("description")}</option>	         </#list>           </select>         </div>     </td>   </tr>      <tr>     <td width="25%" align="right">       <div class="tableheadtext">         <#if findDisbursement>           ${uiLabelMap.FinancialsPayToParty}          <#else>             ${uiLabelMap.FinancialsReceiveFromParty}          </#if>       </div>     </td>     <td width="2%">&nbsp;</td>     <td nowrap colspan="4" align="left">       <#if findDisbursement>         <input type="text" class="inputBox" name="partyIdTo" value="<#if parameters.partyIdTo?has_content>${parameters.partyIdTo?if_exists}</#if>"/>         <a href="javascript:call_fieldlookup2(document.findPayment.partyIdTo,'LookupPartyName');">           <img src='/images/fieldlookup.gif' width='15' height='14' border='0' alt='Click here For Field Lookup'/>         </a>       <#else>         <input type="text" class="inputBox" name="partyIdFrom" value="<#if parameters.partyIdFrom?has_content>${parameters.partyIdFrom?if_exists}</#if>"/>         <a href="javascript:call_fieldlookup2(document.findPayment.partyIdFrom,'LookupPartyName');">           <img src='/images/fieldlookup.gif' width='15' height='14' border='0' alt='Click here For Field Lookup'/>         </a>       </#if>     </td>   </tr>      <tr>     <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.FinancialsStatusId} </div></td>     <td width="2%">&nbsp;</td>     <td nowrap colspan="4" align="left">         <select name="statusId" class="selectBox">             <option value=""></option>	       <#list statusList as status>	         <option value="${status.statusId?if_exists}"  <#if parameters.statusId?has_content && parameters.statusId?default("") == status.statusId>SELECTED</#if>>${status.description?if_exists}</option>	       </#list>	     </select>     </td>   </tr>         <tr>     <#if findDisbursement >       <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.AccountingPaymentMethod} </div></td>       <td width="2%">&nbsp;</td>       <td nowrap>         <select name="paymentMethodId" class="selectBox">             <option value=""></option>	       <#list paymentMethodList as paymentMethod>	         <option value="${paymentMethod.get("paymentMethodId")?if_exists}"  <#if parameters.paymentMethodId?default("") == paymentMethod.paymentMethodId>SELECTED</#if>>${paymentMethod.description?if_exists} (${paymentMethod.paymentMethodId})</option>	       </#list>	     </select>       </td>     <#else>       <td width="20%" align="right" nowrap><div class="tableheadtext">${uiLabelMap.AccountingPaymentMethodType} </div></td>       <td width="2%">&nbsp;</td>       <td nowrap>         <select name="paymentMethodTypeId" class="selectBox">             <option value=""></option>          <#list paymentMethodTypeList as paymentMethodType>	         <option value="${paymentMethodType.get("paymentMethodTypeId")?if_exists}"  <#if parameters.paymentMethodTypeId?default("") == paymentMethodType.paymentMethodTypeId>SELECTED</#if>>${paymentMethodType.get("description")}</option>          </#list>	     </select>       </td>     </#if>   </tr>   <tr>     <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.AccountingEffectiveDate} </div></td>     <td width="2%">&nbsp;</td>     <td nowrap colspan="4" align="left">       <div class="tabletext">           ${uiLabelMap.CommonFrom}<input type="text" class="inputBox" name="fromDate" value="${parameters.fromDate?if_exists}"/>           <a href="javascript:call_cal(document.findPayment.fromDate, null);">               <img src="/images/cal.gif" width="16" height="16" border="0" alt="Calendar"/>           </a>           ${uiLabelMap.CommonThru}<input type="text" class="inputBox" name="thruDate" value="${parameters.thruDate?if_exists}"/>           <a href="javascript:call_cal(document.findPayment.thruDate, null);">               <img src="/images/cal.gif" width="16" height="16" border="0" alt="Calendar"/>           </a>       </div>     </td>   </tr>   <tr>     <td width="20%" align="right"><div class="tableheadtext">${uiLabelMap.FinancialsPaymentRefNum} </div></td>     <td width="2%">&nbsp;</td>     <td nowrap><input type="text" class="inputBox" name="paymentRefNum" value="${parameters.paymentRefNum?if_exists}"/></td>   </tr>      <tr>     <td width="20%" align="right"><div class="tableheadtext">&nbsp;</div></td>     <td width="2%">&nbsp;</td>     <td nowrap colspan="4" align="left">         <input type="submit" name="submitButton" value="${uiLabelMap.CommonFind}" class="smallSubmit">     </td>   </tr></table></form>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -