[-] BO: Fix random bugs on backoffice order

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16424 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rGaillard
2012-07-13 17:23:58 +00:00
parent f691d01bce
commit 4e3dbfb5cb
@@ -72,7 +72,7 @@
$('#id_lang').change(function(){ $('#id_lang').change(function(){
updateLang(); updateLang();
}); });
$('#delivery_option,#carrier_recycled_package,#order_gift,#gift_message,#id_address_delivery').change(function() { $('#delivery_option,#carrier_recycled_package,#order_gift,#gift_message').change(function() {
updateDeliveryOption(); updateDeliveryOption();
}); });
$('#shipping_price').change(function() { $('#shipping_price').change(function() {
@@ -234,10 +234,6 @@
} }
}); });
}); });
/*$('.fancybox').live('click', function(e) {
$(this).fancybox().trigger('click');
return false;
});*/
resetBind(); resetBind();
}); });
@@ -600,7 +596,7 @@
$('#products_found #customization_list').contents().find('body').html(customization_html); $('#products_found #customization_list').contents().find('body').html(customization_html);
display_product_attributes(); display_product_attributes();
display_product_customizations(); display_product_customizations();
$('#id_product').change(); $('#id_product').click();
} }
else else
{ {
@@ -934,6 +930,7 @@
success : function(res) success : function(res)
{ {
displaySummary(res); displaySummary(res);
updateDeliveryOption();
} }
}); });
} }