You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by le...@apache.org on 2010/04/19 03:32:57 UTC

svn commit: r935434 - /ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy

Author: lektran
Date: Mon Apr 19 01:32:56 2010
New Revision: 935434

URL: http://svn.apache.org/viewvc?rev=935434&view=rev
Log:
Fixed wrong class name, reported by Blas Rodriguez Somoza in OBIZ-3715

Modified:
    ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy

Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy?rev=935434&r1=935433&r2=935434&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy (original)
+++ ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/actions/admin/ListInvoiceItemTypesGlAccount.groovy Mon Apr 19 01:32:56 2010
@@ -29,7 +29,7 @@ invItemTypePrefix = context.invItemTypeP
 invItemTypePrefix += "_%";
 
 organizationPartyId = parameters.organizationPartyId;
-exprBldr = new EntityExpressionBuilder();
+exprBldr = new EntityConditionBuilder();
 invoiceItemTypes = delegator.findList("InvoiceItemType", exprBldr.LIKE(invoiceItemTypeId: invItemTypePrefix), null, null, null, false);
 allTypes = [];
 invoiceItemTypes.each { invoiceItemType ->