Гостиная Барбара
код: СО-013616
0 отзывов
Снят с производства
* Внимание! Изображения товара на мониторе, включая цвет, могут отличаться от реального
Для просчета стоимости, выберите элементы из списка ниже
Общая стоимость заказа:
0 грн
Характеристики: Гостиная Барбара
-
Материал:
МДФ
ДСП
-
Цвет:
Корпус - орех французский
Фасад - орех темный,
капучино
-
Бренд:
Сокме
-
Страна-производитель:
Украина
');
}
});*/
$('input[name=\'city\']').autocomplete({
'source': function(request, response) {
$.ajax({
url: 'index.php?route=checkout/checkout/getNovaCities&filter='+encodeURIComponent(request),
dataType: 'json',
success: function(json) {
response($.map(json, function(item) {
return {
label: item['city'],
value: item['city']
}
}));
}
});
},
'select': function(item) {
$('input[name=\'city\']').val(item['label']);
$.ajax({
url: 'index.php?route=checkout/checkout/getShippingPrice&city='+encodeURIComponent($('[name="city"]').val())+'&weight='+$('[name="weight"]').attr('value')+'&cost='+$('#del-count').val()+'&price='+$('[name="price_num"]').attr('value'),
dataType: 'json',
success: function(json) {
if(json['cost'].length > 0){
$('#nova .pr- b').html(json['cost']);
$('#nova').slideDown();
}else{
$('#nova').slideUp();
}
}
});
}
});
$('#del-count').on('change',function(){
if($('[name="city"]').val().length > 0){
$.ajax({
url: 'index.php?route=checkout/checkout/getShippingPrice&city='+encodeURIComponent($('[name="city"]').val())+'&weight='+$('[name="weight"]').attr('value')+'&cost='+$('#del-count').val()+'&price='+$('[name="price_num"]').attr('value'),
dataType: 'json',
success: function(json) {
if(json['cost'].length > 0){
$('#nova .pr- b').html(json['cost']);
$('#nova').slideDown();
}else{
$('#nova').slideUp();
}
}
});
}
});
})
//-->