- ...
- Главная
- Дежи
- Дежа 1400 литров на колёсах подкатная нержавеющая сталь AISI304 для диссольвера для краски
Дежа 1400 литров на колёсах подкатная нержавеющая сталь AISI304 для диссольвера для краски
Профессиональное решение для крупносерийного и промышленного производства. Дежа объёмом 1400 литров на усиленной раме с колёсами предназначена для интенсивной работы с диссольверами и смесительным оборудованием.
- Производитель:
- Модель:НФ-500361
- 1
Характеристики
| Объём дежи геометрический | 1400 литров |
| Размеры ёмкости | 1095х1095х1500 |
| Материал дежи | Нержавеющая сталь AISI304 |
| Тип дежи | Подкатная |
| Донышко | Прямое, наклонное |
| Слив стандартный | Боковой 2 дюйма |
| Колёса дежи | 2 прямых, 2 поворотных с тормозом, чугунные на полиуретановой шине |
| Рубашка охлаждения | Отсутствует |
| Варианты отгрузки | Самовывоз, доставка по РФ и ЕАЭС |
| Возможность внесения изменения в конструкцию | Да |
| Вес, не более | 157 килограмм |
| Габаритные размеры | 1095х1095х1716 |
| Гарантия на товар | 2 года |
| Работа по договору | Да |
| Товар сертифицирован | Да |
| Страна производства | Россия, собственное производство |
Описание
Профессиональная дежа объемом 1400 литров на колесах из нержавеющей стали AISI 304 — это высокотехнологичное решение для современных предприятий лакокрасочной, химической и косметической промышленности. Специально разработанная для интенсивной эксплуатации с диссольверами и промышленным смесительным оборудованием, эта модель обеспечивает максимальную эффективность производственных процессов при строгом соблюдении отраслевых стандартов качества.
Инженерные преимущества:
Надежная конструкция:
Усиленная рама с дополнительными ребрами жесткости
4 поворотных колеса промышленного класса (2 с тормозной системой)
Цельносварная конструкция с двойным усилением дна
Оптимизированная геометрия для равномерного распределения нагрузок
Качественные материалы:
Нержавеющая сталь AISI 304 пищевого класса
Зеркальная полировка внутренней поверхности
Износостойкие колеса
Коррозионностойкая фурнитура
Ключевые преимущества:
Для производства:
Вместимость 1400 литров для крупносерийного производства
Снижение операционных затрат на 25-30%
Оптимизация использования производственных площадей
Минимизация потерь продукта при переливах
Технологические преимущества:
Абсолютная химическая инертность
Исключение налипания продукта на стенки
Простота очистки и дезинфекции
Совместимость со стандартным промышленным оборудованием
Области применения:
Лакокрасочная промышленность:
Производство красок, эмалей, лаков
Изготовление грунтовок и шпатлевок
Создание специализированных покрытий
Диспергирование пигментных паст
Химическая промышленность:
Производство химических реагентов
Синтез сложных соединений
Приготовление многокомпонентных смесей
Другие отрасли:
Косметическое производство
Фармацевтическая промышленность
Пищевая переработка
Производство строительных смесей
Функциональные возможности:
Дежа для диссольвера 1400 литров обеспечивает:
Приготовление и хранение больших объемов продукции
Безопасное и легкое перемещение по производственным помещениям
Полный слив продукта благодаря конструкции с уклоном
Простоту обслуживания и очистки
Долговечность в условиях интенсивной эксплуатации
Преимущества для бизнеса:
Для технологического процесса:
Стабильность качества продукции
Сокращение времени на технологические операции
Увеличение производительности
Гарантия соответствия стандартам
- Безопасное использование
', ''],
pagination: false
});
$('select[name=\'recurring_id\'], input[name="quantity"]').change(function(){
$.ajax({
url: 'index.php?route=product/product/getRecurringDescription',
type: 'post',
data: $('input[name=\'product_id\'], input[name=\'quantity\'], select[name=\'recurring_id\']'),
dataType: 'json',
beforeSend: function() {
$('#recurring-description').html('');
},
success: function(json) {
$('.alert, .text-danger').remove();
if (json['success']) {
$('#recurring-description').html(json['success']);
}
}
});
});
$('.date').datetimepicker({
pickTime: false
});
$('.datetime').datetimepicker({
pickDate: true,
pickTime: true
});
$('.time').datetimepicker({
pickDate: false
});
$('button[id^=\'button-upload\']').on('click', function() {
var node = this;
$('#form-upload').remove();
$('body').prepend('');
$('#form-upload input[name=\'file\']').trigger('click');
if (typeof timer != 'undefined') {
clearInterval(timer);
}
timer = setInterval(function() {
if ($('#form-upload input[name=\'file\']').val() != '') {
clearInterval(timer);
$.ajax({
url: 'index.php?route=tool/upload',
type: 'post',
dataType: 'json',
data: new FormData($('#form-upload')[0]),
cache: false,
contentType: false,
processData: false,
beforeSend: function() {
$(node).button('loading');
},
complete: function() {
$(node).button('reset');
},
success: function(json) {
$('.text-danger').remove();
if (json['error']) {
$(node).parent().find('input').after('' + json['error'] + '');
}
if (json['success']) {
alert(json['success']);
$(node).parent().find('input').attr('value', json['code']);
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}
}, 500);
});
$('#review').delegate('.pagination a', 'click', function(e) {
e.preventDefault();
$('#review').fadeOut('slow');
$('#review').load(this.href);
$('#review').fadeIn('slow');
});
$('#review').load('index.php?route=product/product/review&product_id=471');
$('#button-review').on('click', function() {
$.ajax({
url: 'index.php?route=product/product/write&product_id=471',
type: 'post',
dataType: 'json',
data: $(".form-review").serialize(),
beforeSend: function() {
$('#button-review').button('loading');
},
complete: function() {
$('#button-review').button('reset');
},
success: function(json) {
$('.alert-success, .alert-danger').remove();
if (json['error']) {
get_revpopup_notification('alert-danger', 'Ошибка', json['error']);
}
if (json['success']) {
get_revpopup_notification('alert-success', 'Спасибо за отзыв', json['success']);
$('input[name=\'name\']').val('');
$('textarea[name=\'text\']').val('');
$('input[name=\'rating\']:checked').prop('checked', false);
$('#post-review-box').slideUp(300);
$('#new-review').focus();
$('#open-review-box').fadeIn(100);
$('#close-review-box').hide();
$('#ratings-hidden').val('');
$('.stars .glyphicon').removeClass('glyphicon-star').addClass('glyphicon-star-empty');
}
}
});
});
$('#button-answers').on('click', function() {
$.ajax({
url: 'index.php?route=revolution/revstorereview/writeanswer&product_id=471',
type: 'post',
dataType: 'json',
data: $(".form-answers").serialize(),
beforeSend: function() {
$('#button-answers').button('loading');
},
complete: function() {
$('#button-answers').button('reset');
},
success: function(json) {
$('.alert-success, .alert-danger').remove();
if (json['error']) {
get_revpopup_notification('alert-danger', 'Ошибка', json['error']);
}
if (json['success']) {
get_revpopup_notification('alert-success', 'Спасибо за вопрос', json['success']);
$('input[name=\'name_answer\']').val('');
$('textarea[name=\'text_answer\']').val('');
$('#post-answers-box').slideUp(300);
$('#new-answers').focus();
$('#open-answers-box').fadeIn(100);
$('#close-answers-box').hide();
}
}
});
});
$('.thumbnails .main-image').magnificPopup({
type:'image',
removalDelay: 170,
callbacks: {
beforeOpen: function() {
this.st.mainClass = 'mfp-zoom-in';
},
open: function() {
$('body').addClass('razmiv2');
$('#pagefader2').fadeIn(70);
if (document.body.scrollHeight > document.body.offsetHeight) {
$('#top3').css('right', '8.5px');
}
},
close: function() {
$('body').removeClass('razmiv2');
$('#pagefader2').fadeOut(70);
$('#top3').css('right', 'initial');
}
}
});
$('.thumbnails .images-additional').magnificPopup({
type:'image',
delegate: 'a',
gallery: {
enabled:true
},
removalDelay: 170,
callbacks: {
beforeOpen: function() {
this.st.mainClass = 'mfp-zoom-in';
},
open: function() {
$('body').addClass('razmiv2');
$('#pagefader2').fadeIn(70);
if (document.body.scrollHeight > document.body.offsetHeight) {
$('#top3').css('right', '8.5px');
}
},
close: function() {
$('body').removeClass('razmiv2');
$('#pagefader2').fadeOut(70);
$('#top3').css('right', 'initial');
}
}
});
if ($(window).width() > 991) {
$('#imageWrap > a').addClass('cloud-zoom');
$('.images-additional img').click(function(){
var oldsrc = $(this).attr('src');
newsrc = $(this).parent().attr('id');
newhref = $(this).parent().attr('href');
number = $(this).attr('data-number');
$('#imageWrap img').attr('src', newsrc);
$('.main-image img').attr('src', newsrc);
$('.main-image').attr('href', newhref);
$('.main-image').attr('data-number', number);
$('.cloud-zoom').CloudZoom();
return false;
});
$('#imageWrap.image').bind('click',function(){
if ($('.images-additional').length > 0) {
var startnumber = $('.cloud-zoom.main-image').attr('data-number');
$('.images-additional').magnificPopup('open', startnumber);
return false
} else {
$('.cloud-zoom.main-image').magnificPopup('open');
return false
}
});
$('.cloud-zoom').attr('rel','position:\'inside\'').CloudZoom();
} else {
$('.thumbnails .main-image img').click(function(){
if ($('.images-additional').length > 0) {
var startnumber = $(this).parent().attr('data-number');
$('.images-additional').magnificPopup('open', startnumber);
return false
} else {
$('.main-image').magnificPopup('open');
return false
}
});
}
function get_revpopup_cart_quantity() {
input_val = $('.product-info.product_informationss .plus-minus').val();
quantity = parseInt(input_val);
return quantity;
}
function validate_pole(val, product_id, znak, minimumvalue, maximumvalue) {
val.value = val.value.replace(/[^\d,]/g, '');
if (val.value == '') val.value = minimumvalue;
maximumvalue = Number($('.product_informationss .pr_quantity').text());
if (maximumvalue < 1) maximumvalue = 9999;
input_val = $('.product-info.product_informationss .plus-minus');
quantity = parseInt(input_val.val());
if(znak=='+' && input_val.val() < maximumvalue) input_val.val(quantity+1);
else if(znak=='-' && input_val.val() > minimumvalue) input_val.val(quantity-1);
else if(znak=='=' && input_val.val() < maximumvalue && input_val.val() < maximumvalue) input_val.val(input_val.val());
if (quantity < 1 || quantity < minimumvalue) {
input_val.val(minimumvalue);
val.value = minimumvalue;
} else if (quantity > maximumvalue) {
input_val.val(maximumvalue);
val.value = maximumvalue;
}
update_quantity(product_id, input_val.val());
}
function update_quantity(product_id, quantity) {
var minimumvalue = 1;
if (quantity == 0 || quantity < minimumvalue) {
quantity = $('.product-info.product_informationss .plus-minus').val(minimumvalue);
return;
} else if (quantity < 1) {
quantity = 1;
return;
}
data = $('.product-info.product_informationss input[type=\'text\'], .product-info.product_informationss input[type=\'hidden\'], .product-info.product_informationss input[type=\'radio\']:checked, .product-info.product_informationss input[type=\'checkbox\']:checked, .product-info.product_informationss select, .product-info.product_informationss textarea'),
$.ajax({
url: 'index.php?route=product/product/update_prices',
type: 'post',
dataType: 'json',
data: data.serialize() + '&product_id=' + product_id + '&quantity=' + quantity,
success: function(json) {
var price = json['price_n'];
var start_price = parseFloat($('.product_informationss .update_price').html().replace(/\s*/g,''));
$({val:start_price}).animate({val:price}, {
duration: 500,
easing: 'swing',
step: function(val) {
$('.product_informationss .update_price').html(price_format(val));
}
});
var special = json['special_n'];
var start_special = parseFloat($('.product_informationss .update_special').html().replace(/\s*/g,''));
$({val:start_special}).animate({val:special}, {
duration: 500,
easing: 'swing',
step: function(val) {
$('.product_informationss .update_special').html(price_format(val));
}
});
}
});
}
function update_prices_product(product_id, minimumvalue) {
input_val = $('.product-info.product_informationss .plus-minus').val();
if (input_val > minimumvalue) {
input_val = minimumvalue;
$('.product-info.product_informationss .plus-minus').val(minimumvalue);
}
quantity = parseInt(input_val);
data = $('.product-info.product_informationss input[type=\'text\'], .product-info.product_informationss input[type=\'hidden\'], .product-info.product_informationss input[type=\'radio\']:checked, .product-info.product_informationss input[type=\'checkbox\']:checked, .product-info.product_informationss select, .product-info.product_informationss textarea');
$.ajax({
type: 'post',
url: 'index.php?route=product/product/update_prices',
data: data.serialize() + '&product_id=' + product_id + '&quantity=' + quantity,
dataType: 'json',
success: function(json) {
$('.product_informationss .thumbnails a.main-image').attr('href', json['opt_image_2_big']);
$('.product_informationss .thumbnails a.main-image img').attr('src', json['opt_image_2']);
$('.product_informationss .thumbnails .images-additional .owl-item:first-child a').attr('href', json['opt_image_2_big']);
$('.product_informationss .thumbnails .images-additional .owl-item:first-child a img').attr('src', json['opt_image_2']).css('width', 74).css('height', 74);
$('.product_informationss .thumbnails .images-additional .owl-item:first-child a').attr('id', json['opt_image_2']);
$('.product_informationss .cloud-zoom').CloudZoom();
var end_quantity = json['option_quantity'];
var start_quantity = parseFloat($('.product_informationss .pr_quantity').html().replace(/\s*/g,''));
$({val:start_quantity}).animate({val:end_quantity}, {
duration: 500,
easing: 'swing',
step: function(val) {
$('.product_informationss .pr_quantity').html(number_format(val, product_id));
}
});
$('.product_informationss .pr_model').html(json['opt_model']);
var price = json['price_n'];
var start_price = parseFloat($('.product_informationss .update_price').html().replace(/\s*/g,''));
$({val:start_price}).animate({val:price}, {
duration: 500,
easing: 'swing',
step: function(val) {
$('.product_informationss .update_price').html(price_format(val));
}
});
var special = json['special_n'];
var start_special = parseFloat($('.product_informationss .update_special').html().replace(/\s*/g,''));
$({val:start_special}).animate({val:special}, {
duration: 500,
easing: 'swing',
step: function(val) {
$('.product_informationss .update_special').html(price_format(val));
}
});
}
});
}
function price_format(n) {
c = 0;
d = '.';
t = '';
s_left = '';
s_right = ' руб';
n = n * 1.00000000;
i = parseInt(n = Math.abs(n).toFixed(c)) + '';
j = ((j = i.length) > 3) ? j % 3 : 0;
return s_left + (j ? i.substr(0, j) + t : '') + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : '') + s_right;
}
function weight_format(n, product_id) {
c = 2;
d = '.';
t = ',';
i = parseInt(n = Math.abs(n).toFixed(c)) + '';
j = ((j = i.length) > 3) ? j % 3 : 0;
return (j ? i.substr(0, j) + t : '') + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : '');
}
function number_format(n, product_id) {
i = parseInt(n = Math.abs(n).toFixed(0)) + '';
return i;
}
$('.product_related .owlproduct').owlCarousel({
items: 1,
singleItem: true,
mouseDrag: false,
touchDrag: false,
autoPlay: false,
navigation: true,
navigationText: ['', ''],
pagination: false
});
$('.viewed_products .owlproduct').owlCarousel({
items: 1,
singleItem: true,
mouseDrag: false,
touchDrag: false,
autoPlay: false,
navigation: true,
navigationText: ['', ''],
pagination: false
});
-->
Усиленная рама с дополнительными ребрами жесткости
4 поворотных колеса промышленного класса (2 с тормозной системой)
Цельносварная конструкция с двойным усилением дна
Оптимизированная геометрия для равномерного распределения нагрузок
Нержавеющая сталь AISI 304 пищевого класса
Зеркальная полировка внутренней поверхности
Износостойкие колеса
Коррозионностойкая фурнитура
Вместимость 1400 литров для крупносерийного производства
Снижение операционных затрат на 25-30%
Оптимизация использования производственных площадей
Минимизация потерь продукта при переливах
Абсолютная химическая инертность
Исключение налипания продукта на стенки
Простота очистки и дезинфекции
Совместимость со стандартным промышленным оборудованием
Производство красок, эмалей, лаков
Изготовление грунтовок и шпатлевок
Создание специализированных покрытий
Диспергирование пигментных паст
Производство химических реагентов
Синтез сложных соединений
Приготовление многокомпонентных смесей
Косметическое производство
Фармацевтическая промышленность
Пищевая переработка
Производство строительных смесей
Приготовление и хранение больших объемов продукции
Безопасное и легкое перемещение по производственным помещениям
Полный слив продукта благодаря конструкции с уклоном
Простоту обслуживания и очистки
Долговечность в условиях интенсивной эксплуатации
Стабильность качества продукции
Сокращение времени на технологические операции
Увеличение производительности
Гарантия соответствия стандартам




