svn commit: r835216 - /ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r835216 - /ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl

apatel-2
Author: apatel
Date: Thu Nov 12 03:58:29 2009
New Revision: 835216

URL: http://svn.apache.org/viewvc?rev=835216&view=rev
Log:
Removed sent status for ar payment.

Modified:
    ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl

Modified: ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl?rev=835216&r1=835215&r2=835216&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl (original)
+++ ofbiz/trunk/applications/accounting/webapp/ar/payment/batchPayments.ftl Thu Nov 12 03:58:29 2009
@@ -54,7 +54,7 @@
     }
 }
 function setServiceName(selection) {
-    if (selection.value == 'massPaymentsToNotPaid' || selection.value == 'massPaymentsToSent' || selection.value == 'massPaymentsToReceived' || selection.value == 'massPaymentsToConfirmed' || selection.value == 'massPaymentsToCancelled' || selection.value == 'massPaymentsToVoid') {
+    if (selection.value == 'massPaymentsToNotPaid' || selection.value == 'massPaymentsToReceived' || selection.value == 'massPaymentsToConfirmed' || selection.value == 'massPaymentsToCancelled' || selection.value == 'massPaymentsToVoid') {
         $('paymentBatchForm').action = $('paymentStatusChange').value;
     }
     else {
@@ -62,9 +62,7 @@
     }
     if (selection.value == 'massPaymentsToNotPaid') {
         $('statusId').value = "PMNT_NOT_PAID";
-    } else if (selection.value == 'massPaymentsToSent') {
-        $('statusId').value = "PMNT_SENT";
-    }else if (selection.value == 'massPaymentsToReceived') {
+    } else if (selection.value == 'massPaymentsToReceived') {
         $('statusId').value = "PMNT_RECEIVED";
     }else if (selection.value == 'massPaymentsToConfirmed') {
         $('statusId').value = "PMNT_CONFIRMED";
@@ -102,7 +100,6 @@
                         <option value="">${uiLabelMap.AccountingSelectAction}</options>
                         <option value="<@ofbizUrl>createPaymentBatch</@ofbizUrl>" id="processBatchPayment">${uiLabelMap.AccountingCreateBatch}</option>
                         <option value="massPaymentsToNotPaid">${uiLabelMap.AccountingPaymentStatusToNotPaid}</option>
-                        <option value="massPaymentsToSent">${uiLabelMap.AccountingInvoiceStatusToSent}</option>
                         <option value="massPaymentsToReceived">${uiLabelMap.AccountingInvoiceStatusToReceived}</option>
                         <option value="massPaymentsToConfirmed">${uiLabelMap.AccountingPaymentTabStatusToConfirmed}</option>
                         <option value="massPaymentsToCancelled">${uiLabelMap.AccountingPaymentTabStatusToCancelled}</option>