diff --git a/templates/frontOffice/default/order-delivery.html b/templates/frontOffice/default/order-delivery.html index bf661c555..b2b090fad 100644 --- a/templates/frontOffice/default/order-delivery.html +++ b/templates/frontOffice/default/order-delivery.html @@ -145,14 +145,16 @@ $('#delivery-module-list-block').load('{url path="/order/deliveryModuleList"}'); $('.js-change-delivery-address').change(function(e) { - $('#delivery-module-list-block').load( - '{url path="/order/deliveryModuleList"}', -{literal} - {country_id: $(this).data('country')} -{/literal} - ); + if (this.checked) { + $('#delivery-module-list-block').load( + '{url path="/order/deliveryModuleList"}', + {literal} + {country_id: $(this).data('country')} + {/literal} + ); + ) }); }); -{/block} \ No newline at end of file +{/block}