Доброго времени суток. Ocstore 2.3.0.2
Запускаю магазин. Заметил ошибку
Когда заказ сформирован, открываю корзину. Вижу список заказанных товаров.
Допустим захотел удалить какой то товар из корзины. Нажимаю кнопку "удалить". Но никаких действий не происходит в корзине. Физически товар- удаляется, но блок со строкой не скрывается. Если обновить страницу- то видно что товар удален.
Хочу вручную написать скрытие блока, но не пойму в каком файле смотреть. Функция на кнопке висит такая:
onclick="cart.remove('122');"
В файле \catalog\view\javascript\common.js есть какой-то обработчик. Вставил в него алерт, чтобы проверить он - не он. Не работает. Подскажите в каком файле еще посмотреть?
// Cart add remove functions
var cart = {
'add': function(product_id, quantity) {........
},
'update': function(key, quantity) {.....
},
'remove': function(key) {
ALERT ("удалить?");
$.ajax({
url: 'index.php?route=checkout/cart/remove',
type: 'post',
data: 'key=' + key,
dataType: 'json',
beforeSend: function() {
$('#cart > button').button('loading');
},
complete: function() {
$('#cart > button').button('reset');
},
success: function(json) {
// Need to set timeout otherwise it wont update the total
setTimeout(function () {
$('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
}, 100);
var now_location = String(document.location.pathname);
if ((now_location == '/cart/') || (now_location == '/checkout/') || (getURLVar('route') == 'checkout/cart') || (getURLVar('route') == 'checkout/checkout')) {
location = 'index.php?route=checkout/cart';
} else {
$('#cart > ul').load('index.php?route=common/cart/info ul li');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}
}
ps кнопка " обновить" нормально работает.