Author: jleroux
Date: Thu Nov  8 15:56:53 2012
New Revision: 1407143

URL: http://svn.apache.org/viewvc?rev=1407143&view=rev
Log:
"Applied fix from trunk for revision: 1407142" 
------------------------------------------------------------------------
r1407142 | jleroux | 2012-11-08 16:55:46 +0100 (jeu., 08 nov. 2012) | 2 lines

I missed this in r1407116 for https://issues.apache.org/jira/browse/OFBIZ-3883

------------------------------------------------------------------------


Modified:
    ofbiz/branches/release12.04/   (props changed)
    
ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/test/ShoppingCartTests.xml

Propchange: ofbiz/branches/release12.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1407142

Modified: 
ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/test/ShoppingCartTests.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/test/ShoppingCartTests.xml?rev=1407143&r1=1407142&r2=1407143&view=diff
==============================================================================
--- 
ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/test/ShoppingCartTests.xml
 (original)
+++ 
ofbiz/branches/release12.04/applications/order/script/org/ofbiz/order/test/ShoppingCartTests.xml
 Thu Nov  8 15:56:53 2012
@@ -194,31 +194,31 @@ under the License.
 
         <!-- Shopping Cart Set ShippingContactMechId-->
         <set field="contactMechId" value="9015"/>
-        <call-object-method method-name="setShippingContactMechId" 
obj-field="shoppingCart">
+        <call-object-method method-name="setAllShippingContactMechId" 
obj-field="shoppingCart">
             <field field="contactMechId" type="String"/>
         </call-object-method>
 
         <!-- Shopping Cart Set Method Type ID-->
         <set field="shipmentMethodTypeId" value="NEXT_DAY" type="String"/>
-        <call-object-method method-name="setShipmentMethodTypeId" 
obj-field="shoppingCart">
+        <call-object-method method-name="setAllShipmentMethodTypeId" 
obj-field="shoppingCart">
             <field field="shipmentMethodTypeId" type="String"/>
         </call-object-method>
 
         <!-- Shopping Cart Set Carrier Party ID-->
         <set field="carrierPartyId" value="UPS" type="String"/>
-        <call-object-method method-name="setCarrierPartyId" 
obj-field="shoppingCart">
+        <call-object-method method-name="setAllCarrierPartyId" 
obj-field="shoppingCart">
             <field field="carrierPartyId" type="String"/>
         </call-object-method>
 
         <!-- Shopping Cart Set Is Gift-->
         <set field="isGift" value="false" type="Boolean"/>
-        <call-object-method method-name="setIsGift" obj-field="shoppingCart">
+        <call-object-method method-name="setAllIsGift" 
obj-field="shoppingCart">
             <field field="isGift" type="Boolean"/>
         </call-object-method>
 
         <!-- Shopping Cart Set May Split-->
         <set field="maySplit" value="false" type="Boolean"/>
-        <call-object-method method-name="setMaySplit" obj-field="shoppingCart">
+        <call-object-method method-name="setAllMaySplit" 
obj-field="shoppingCart">
             <field field="maySplit" type="Boolean"/>
         </call-object-method>
 


Reply via email to