Author: doogie
Date: Tue Nov 30 22:04:23 2010
New Revision: 1040805
URL:
http://svn.apache.org/viewvc?rev=1040805&view=revLog:
When addSuggestionsToShoppingList was called with a non-existant
shoppping list, and it tried to create a new one(based on auto-save), it
wasn't passing the productStoreId to the service.
Modified:
ofbiz/trunk/applications/order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml
Modified: ofbiz/trunk/applications/order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml?rev=1040805&r1=1040804&r2=1040805&view=diff==============================================================================
--- ofbiz/trunk/applications/order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml (original)
+++ ofbiz/trunk/applications/order/script/org/ofbiz/order/shoppinglist/ShoppingListServices.xml Tue Nov 30 22:04:23 2010
@@ -321,6 +321,7 @@ under the License.
<set field="createShoppingListInMap.partyId" from-field="orderRole.partyId"/>
<set field="createShoppingListInMap.listName" value="Auto Suggestions"/>
<set field="createShoppingListInMap.shoppingListTypeId" value="SLT_WISH_LIST"/>
+ <set field="createShoppingListInMap.productStoreId" from-field="parameters.productStoreId"/>
<call-service service-name="createShoppingList" in-map-name="createShoppingListInMap">
<result-to-field result-name="shoppingListId"/>
</call-service>