Author: surajk
Date: Fri Aug 24 11:05:06 2018
New Revision: 1838819
URL:
http://svn.apache.org/viewvc?rev=1838819&view=revLog:
Applied fix from trunk for revision: 1838816
===
Fixed: Java object rendering on billing section of one page anonymous checkout process.
(OFBIZ-10425)
Thanks Jason Hao for reporting and Priya Sharma for providing the patch.
Modified:
ofbiz/branches/release16.11/specialpurpose/ (props changed)
ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js
Propchange: ofbiz/branches/release16.11/specialpurpose/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Aug 24 11:05:06 2018
@@ -11,5 +11,5 @@
/ofbiz/branches/multitenant20100310/specialpurpose:921280-927264
/ofbiz/branches/release13.07/specialpurpose:1547657
/ofbiz/ofbiz-framework/trunk/specialpurpose:1783202,1783388
-/ofbiz/ofbiz-plugins/trunk:1784144,1791116,1838249
+/ofbiz/ofbiz-plugins/trunk:1784144,1791116,1838249,1838816
/ofbiz/trunk/specialpurpose:1770481,1770490,1770540,1771440,1771448,1771516,1771935,1772346,1772880,1774772,1775441,1779724,1780659,1781109,1781125,1781979,1782498,1782520
Modified: ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js?rev=1838819&r1=1838818&r2=1838819&view=diff==============================================================================
--- ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js (original)
+++ ofbiz/branches/release16.11/specialpurpose/ecommerce/webapp/ecommerce/images/checkoutProcess.js Fri Aug 24 11:05:06 2018
@@ -626,7 +626,7 @@ function updateBillingSummary() {
var billToGeo = jQuery('#billToCity').val()+", "+jQuery('#billToCountryGeoId').val()+" "+jQuery('#billToPostalCode').val();
}
else {
- var billToGeo = jQuery('#billToCity').val()+", "+jQuery('#billToStateProvinceGeoId').val() +" "+jQuery('#billToCountryGeoId')+" "+jQuery('#billToPostalCode').val();
+ var billToGeo = jQuery('#billToCity').val()+", "+jQuery('#billToStateProvinceGeoId').val() +" "+jQuery('#billToCountryGeoId').val()+" "+jQuery('#billToPostalCode').val();
}
jQuery('#completedBillToGeo').html(billToGeo);
jQuery('#paymentMethod').html(jQuery('#paymentMethodTypeId').val());