You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/11/02 01:18:56 UTC

svn commit: r1538103 - in /ofbiz/branches/release11.04: ./ applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy comment.tmp

Author: jleroux
Date: Sat Nov  2 00:18:55 2013
New Revision: 1538103

URL: http://svn.apache.org/r1538103
Log:
"Applied fix from trunk for revision: 1538096 "  (only CheckoutOptions.groovy, the other files was not concerned)
------------------------------------------------------------------------
r1538096 | jleroux | 2013-11-02 01:07:10 +0100 (sam. 02 nov. 2013) | 2 lignes

Fixes a bug I found in CheckoutOptions.groovy while trying to create an new order from Order View screen
-----------------------------------------------------------------------

Added:
    ofbiz/branches/release11.04/comment.tmp
Modified:
    ofbiz/branches/release11.04/   (props changed)
    ofbiz/branches/release11.04/applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy

Propchange: ofbiz/branches/release11.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1538096

Modified: ofbiz/branches/release11.04/applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy?rev=1538103&r1=1538102&r2=1538103&view=diff
==============================================================================
--- ofbiz/branches/release11.04/applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy (original)
+++ ofbiz/branches/release11.04/applications/order/webapp/ordermgr/WEB-INF/actions/entry/CheckoutOptions.groovy Sat Nov  2 00:18:55 2013
@@ -62,7 +62,7 @@ if (shoppingCart.getShipmentMethodTypeId
 
 // other profile defaults
 if (!shoppingCart.getShippingAddress() && profiledefs?.defaultShipAddr) {
-    shoppingCart.setShippingContactMechId(profiledefs.defaultShipAddr);
+    shoppingCart.setAllShippingContactMechId(profiledefs.defaultShipAddr);
 }
 if (shoppingCart.selectedPayments() == 0 && profiledefs?.defaultPayMeth) {
     shoppingCart.addPayment(profiledefs.defaultPayMeth);

Added: ofbiz/branches/release11.04/comment.tmp
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/comment.tmp?rev=1538103&view=auto
==============================================================================
--- ofbiz/branches/release11.04/comment.tmp (added)
+++ ofbiz/branches/release11.04/comment.tmp Sat Nov  2 00:18:55 2013
@@ -0,0 +1,8 @@
+"Applied fix from trunk for revision: 1538096 " 
+------------------------------------------------------------------------
+r1538096 | jleroux | 2013-11-02 01:07:10 +0100 (sam. 02 nov. 2013) | 2 lignes
+
+Fixes a bug I found in CheckInits.groovy while trying to create an new order from Order View screen
+Fixes the same kind of bug in CheckoutOptions.groovy
+------------------------------------------------------------------------
+
\ No newline at end of file