Author: mrisaliti
Date: Sun Nov 16 12:25:07 2008
New Revision: 718107
URL:
http://svn.apache.org/viewvc?rev=718107&view=revLog:
Fix a small bug in BillSettings.groovy for an unexpected token parenthesis.
Modified:
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/BillSettings.groovy
Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/BillSettings.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/BillSettings.groovy?rev=718107&r1=718106&r2=718107&view=diff==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/BillSettings.groovy (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/order/BillSettings.groovy Sun Nov 16 12:25:07 2008
@@ -45,7 +45,7 @@
context.party = party;
context.person = person;
if (party) {
- context.paymentMethodList = EntityUtil.filterByDate(party.getRelated("PaymentMethod")));
+ context.paymentMethodList = EntityUtil.filterByDate(party.getRelated("PaymentMethod"));
billingAccountList = BillingAccountWorker.makePartyBillingAccountList(userLogin, currencyUomId, partyId, delegator, dispatcher);
if (billingAccountList) {