Author: swapnilmmane
Date: Tue Feb 5 11:56:38 2019
New Revision: 1852990
URL:
http://svn.apache.org/viewvc?rev=1852990&view=revLog:
Applied fix from trunk for revision: 1852988
===
Fixed: 404 error while creating/updating contact information from the checkout page
(OFBIZ-10827)
Thanks: Ravi Lodhi for reporting the issue and Pawan Verma for providing the patch.
Modified:
ofbiz/ofbiz-plugins/branches/release18.12/ (props changed)
ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/template/order/CheckoutShippingAddress.ftl
Propchange: ofbiz/ofbiz-plugins/branches/release18.12/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Feb 5 11:56:38 2019
@@ -10,4 +10,4 @@
/ofbiz/branches/json-integration-refactoring/plugins:1634077-1635900
/ofbiz/branches/multitenant20100310/plugins:921280-927264
/ofbiz/branches/release13.07/plugins:1547657
-/ofbiz/ofbiz-plugins/trunk:1851002,1851009,1851068,1851135,1851139-1851140,1851185,1851316,1851885
+/ofbiz/ofbiz-plugins/trunk:1851002,1851009,1851068,1851135,1851139-1851140,1851185,1851316,1851885,1852988
Modified: ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/template/order/CheckoutShippingAddress.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/template/order/CheckoutShippingAddress.ftl?rev=1852990&r1=1852989&r2=1852990&view=diff==============================================================================
--- ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/template/order/CheckoutShippingAddress.ftl (original)
+++ ofbiz/ofbiz-plugins/branches/release18.12/ecommerce/template/order/CheckoutShippingAddress.ftl Tue Feb 5 11:56:38 2019
@@ -30,11 +30,11 @@ function submitForm(form, mode, value) {
form.submit();
} else if ("NA" == mode) {
// new address
- form.action="<@ofbizUrl>updateCheckoutOptions/editcontactmech?preContactMechTypeId=POSTAL_ADDRESS&contactMechPurposeTypeId=SHIPPING_LOCATION&DONE_PAGE=checkoutshippingaddress</@ofbizUrl>";
+ form.action="<@ofbizUrl>updateCheckoutOptions/editcontactmech?preContactMechTypeId=POSTAL_ADDRESS&contactMechPurposeTypeId=SHIPPING_LOCATION&DONE_PAGE=checkoutoptions</@ofbizUrl>";
form.submit();
} else if ("EA" == mode) {
// edit address
- form.action="<@ofbizUrl>updateCheckoutOptions/editcontactmech?DONE_PAGE=checkoutshippingaddress&contactMechId="+value+"</@ofbizUrl>";
+ form.action="<@ofbizUrl>updateCheckoutOptions/editcontactmech?DONE_PAGE=checkoutoptions&contactMechId="+value+"</@ofbizUrl>";
form.submit();
}
}