[-] FO : #PSTEST-437 - Fixed problem with refreshing carriers options

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12403 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-01-13 10:07:42 +00:00
parent bfe21a0bc4
commit 7088b1b595
+11 -12
View File
@@ -105,9 +105,8 @@ function changeAddressDelivery(obj)
updateCartSummary(jsonData.summary);
updateHookShoppingCart(jsonData.HOOK_SHOPPING_CART);
updateHookShoppingCartExtra(jsonData.HOOK_SHOPPING_CART_EXTRA);
if (jsonData.carriers != null)
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
// @todo reverse the remove order
// This effect remove the current line, but it's better to remove the other one, and refresshing this one
@@ -225,6 +224,9 @@ function updateQty(val)
}
else
$('input[name='+ id +']').val($('input[name='+ id +'_hidden]').val());
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
}
function deleteProductFromSummary(id)
@@ -296,9 +298,8 @@ function deleteProductFromSummary(id)
updateHookShoppingCart(jsonData.HOOK_SHOPPING_CART);
updateHookShoppingCartExtra(jsonData.HOOK_SHOPPING_CART_EXTRA);
updateCustomizedDatas(jsonData.customizedDatas);
if (jsonData.carriers != null)
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {alert("TECHNICAL ERROR: unable to save update quantity \n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);}
@@ -347,9 +348,8 @@ function upQuantity(id, qty)
updateCartSummary(jsonData.summary);
updateHookShoppingCart(jsonData.HOOK_SHOPPING_CART);
updateHookShoppingCartExtra(jsonData.HOOK_SHOPPING_CART_EXTRA);
if (jsonData.carriers != null)
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {alert("TECHNICAL ERROR: unable to save update quantity \n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);}
@@ -407,9 +407,8 @@ function downQuantity(id, qty)
updateCartSummary(jsonData.summary);
updateHookShoppingCart(jsonData.HOOK_SHOPPING_CART);
updateHookShoppingCartExtra(jsonData.HOOK_SHOPPING_CART_EXTRA);
if (jsonData.carriers != null)
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
if (typeof(getCarrierListAndUpdate) != 'undefined')
getCarrierListAndUpdate();
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {alert("TECHNICAL ERROR: unable to save update quantity \n\nDetails:\nError thrown: " + XMLHttpRequest + "\n" + 'Text status: ' + textStatus);}