You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by su...@apache.org on 2018/08/24 10:55:54 UTC

svn commit: r1838816 - /ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Author: surajk
Date: Fri Aug 24 10:55:54 2018
New Revision: 1838816

URL: http://svn.apache.org/viewvc?rev=1838816&view=rev
Log:
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/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js

Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js?rev=1838816&r1=1838815&r2=1838816&view=diff
==============================================================================
--- ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js (original)
+++ ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/checkoutProcess.js Fri Aug 24 10:55:54 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());