You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2006/08/08 18:37:45 UTC

svn commit: r429721 - /incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml

Author: jonesde
Date: Tue Aug  8 09:37:45 2006
New Revision: 429721

URL: http://svn.apache.org/viewvc?rev=429721&view=rev
Log:
Fixed bug caused when the addparty feature was introduced; the request routing in ecommerce was bad because it skipped the shipping and tax calc, and the payment verification

Modified:
    incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml

Modified: incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml?rev=429721&r1=429720&r2=429721&view=diff
==============================================================================
--- incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml (original)
+++ incubator/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/WEB-INF/controller.xml Tue Aug  8 09:37:45 2006
@@ -369,7 +369,7 @@
         <response name="shipping" type="view" value="shipsetting"/>
         <response name="options" type="view" value="optionsetting"/>
         <response name="payment" type="view" value="billsetting"/>
-        <response name="addparty" type="view" value="checkoutreview"/> <!-- this actually wants to go to a page to set another party, but for ecommerce we'll skip it and go to review and checkout -->
+        <response name="addparty" type="request" value="calcShipping"/> <!-- this actually wants to go to a page to set another party, but for ecommerce we'll skip it and go to the beginning of the chain for review and checkout -->
         <response name="paysplit" type="view" value="checkoutpayment"/>
         <response name="sales" type="request" value="calcShipping"/>
         <response name="error" type="request" value="finalizeOrderError"/>