You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2007/12/18 22:00:33 UTC

svn commit: r605327 - /ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl

Author: jleroux
Date: Tue Dec 18 13:00:32 2007
New Revision: 605327

URL: http://svn.apache.org/viewvc?rev=605327&view=rev
Log:
Applied fix from trunk for revision: 605326

Modified:
    ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl

Modified: ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl?rev=605327&r1=605326&r2=605327&view=diff
==============================================================================
--- ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl (original)
+++ ofbiz/branches/release4.0/applications/accounting/webapp/accounting/payment/manualTx.ftl Tue Dec 18 13:00:32 2007
@@ -67,6 +67,8 @@
             <input type="hidden" name="transactionType" value="${currentTx.enumId}">
           <#else>
             <select name="transactionType" onchange="javascript:document.manualTxForm.submit();">
+            <#-- the select one option is so the list will fire on any seletion -->
+              <option value="Select one">${uiLabelMap.CommonSelectOne}</option>
               <#list paymentSettings as setting>
                 <option value="${setting.enumId}">${setting.get("description",locale)}</option>
               </#list>