*Увага! Зображення товару на моніторі, включаючи колір, можуть відрізнятися від реального
Стіл письмовий Нью-Йорк GBIU 113 Gerbor
Знятий з виробництва
1 824 грн
Купити в кредит
Прорахунок вартості доставки товару
Письмовий стіл GBIU 113 – елемент модульної системи Нью-Йорк від фабрики Gerbor-холдинг. Стіл виконаний з ДСП, має висувну полицю для клавіатури, однодверне відділення та висувну скриньку.
Розмір: 66.0х113.0х74.5 см
Висота:
74.5 см
Глибина:
66 см
Ширина:
113 см
Гарантія:
1 рік
Тип:
Письмовий стіл
Матеріал:
Ламіноване ДСП
Колір:
Яблуня локарно
Бренд:
Gerbor
Країна виробник:
Україна
Стіл письмовий Нью-Йорк GBIU 113 Gerbor
1 824 грн
');
}
});
$('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')+'&VolumeGeneral='+$('[name="VolumeGeneral"]').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();
}
}
});
}
});
})
//-->