Author: jleroux
Date: Sun Jul 27 12:53:08 2008
New Revision: 680175

URL: http://svn.apache.org/viewvc?rev=680175&view=rev
Log:
Fix a typo (from bsh->groovy)

Modified:
    
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/shoppinglist/EditShoppingList.groovy

Modified: 
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/shoppinglist/EditShoppingList.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/shoppinglist/EditShoppingList.groovy?rev=680175&r1=680174&r2=680175&view=diff
==============================================================================
--- 
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/shoppinglist/EditShoppingList.groovy
 (original)
+++ 
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/actions/shoppinglist/EditShoppingList.groovy
 Sun Jul 27 12:53:08 2008
@@ -182,7 +182,7 @@
                 context.shippingContactMechList = 
ContactHelper.getContactMech(party, "SHIPPING_LOCATION", "POSTAL_ADDRESS", 
false);
                 context.paymentMethodList = 
EntityUtil.filterByDate(party.getRelated("PaymentMethod", null, 
["paymentMethodTypeId"]));
 
-                shipAddress = delegator.findByPrimaryKey("PostalAddress", 
["contactMechId", shoppingList.contactMechId]);
+                shipAddress = delegator.findByPrimaryKey("PostalAddress", 
["contactMechId" : shoppingList.contactMechId]);
                 Debug.log("SL - address : " + shipAddress);
                 if (shipAddress) {
                     listCart = 
ShoppingListServices.makeShoppingListCart(dispatcher, shoppingListId, locale);


Reply via email to