[OFBiz] Dev - Little patch for EditCategoryParties.bsh
Jacopo Cappellato
tiz at sastau.it
Sat Aug 14 03:03:02 EDT 2004
Hi all,
a little patch for the EditCategoryParties.bsh script (Catalog application):
a not existing field was used in an order by statement.
Regards,
Jacopo
-------------- next part --------------
Index: ofbiz/components/product/webapp/catalog/WEB-INF/actions/category/EditCategoryParties.bsh
===================================================================
RCS file: /cvs/ofbiz/components/product/webapp/catalog/WEB-INF/actions/category/EditCategoryParties.bsh,v
retrieving revision 1.4
diff -u -r1.4 EditCategoryParties.bsh
--- ofbiz/components/product/webapp/catalog/WEB-INF/actions/category/EditCategoryParties.bsh 7 Oct 2003 16:23:22 -0000 1.4
+++ ofbiz/components/product/webapp/catalog/WEB-INF/actions/category/EditCategoryParties.bsh 14 Aug 2004 06:59:59 -0000
@@ -49,7 +49,7 @@
productCategoryRoles = null;
if (productCategory != null) {
- productCategoryRoles = productCategory.getRelated("ProductCategoryRole", null, UtilMisc.toList("roleTypeId", "sequenceNum", "partyId"));
+ productCategoryRoles = productCategory.getRelated("ProductCategoryRole", null, UtilMisc.toList("roleTypeId", "partyId"));
}
roleTypes = delegator.findAll("RoleType", UtilMisc.toList("description"));
-------------- next part --------------
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe at ofbiz.dev.java.net
For additional commands, e-mail: dev-help at ofbiz.dev.java.net
More information about the Dev
mailing list