Author: jleroux
Date: Tue May 17 06:55:29 2016
New Revision: 1744192

URL: http://svn.apache.org/viewvc?rev=1744192&view=rev
Log:
There is no runservice() in R13.07, this fixes it

Modified:
    
ofbiz/branches/release13.07/applications/accounting/webapp/accounting/WEB-INF/actions/payment/FindInvoicesByDueDate.groovy

Modified: 
ofbiz/branches/release13.07/applications/accounting/webapp/accounting/WEB-INF/actions/payment/FindInvoicesByDueDate.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/accounting/webapp/accounting/WEB-INF/actions/payment/FindInvoicesByDueDate.groovy?rev=1744192&r1=1744191&r2=1744192&view=diff
==============================================================================
--- 
ofbiz/branches/release13.07/applications/accounting/webapp/accounting/WEB-INF/actions/payment/FindInvoicesByDueDate.groovy
 (original)
+++ 
ofbiz/branches/release13.07/applications/accounting/webapp/accounting/WEB-INF/actions/payment/FindInvoicesByDueDate.groovy
 Tue May 17 06:55:29 2016
@@ -23,6 +23,6 @@ context.invoicePaymentInfoList = []
 
 if (parameters.daysOffset) { // it's not the initialisation but a real search 
request
     serviceCtx = 
dispatcher.getDispatchContext().makeValidContext("getInvoicePaymentInfoListByDueDateOffset",
 "IN", parameters);
-    result = runService("getInvoicePaymentInfoListByDueDateOffset", serviceCtx)
+    result = dispatcher.runSync("getInvoicePaymentInfoListByDueDateOffset", 
serviceCtx)
     context.invoicePaymentInfoList = result.invoicePaymentInfoList 
 }
\ No newline at end of file


Reply via email to