Author: lektran
Date: Mon Apr 19 01:23:08 2010
New Revision: 935432
URL:
http://svn.apache.org/viewvc?rev=935432&view=revLog:
Fix bad variable reference, reported by Blas Rodriguez Somoza in OFBIZ-3713
Modified:
ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/invoice/ListNotAppliedPayments.groovy
Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/invoice/ListNotAppliedPayments.groovy
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/invoice/ListNotAppliedPayments.groovy?rev=935432&r1=935431&r2=935432&view=diff==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/invoice/ListNotAppliedPayments.groovy (original)
+++ ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/invoice/ListNotAppliedPayments.groovy Mon Apr 19 01:23:08 2010
@@ -48,7 +48,7 @@ topCond = exprBldr.AND(preCurrencyCond)
EQUALS(currencyUomId: invoice.currencyUomId)
}
-topCondActual = exprBuilder.AND(preCurrencyCond) {
+topCondActual = exprBldr.AND(preCurrencyCond) {
EQUALS(actualCurrencyUomId: invoice.currencyUomId)
}