Unknown: mysqli::real_escape_string(): Passing null to parameter #1 ($string) of type string is deprecated no arquivo /home1/metanoia/loja.autoraleedicoes.com.br/system/library/db/mysqli.php na linha 61Warning: Cannot modify header information - headers already sent by (output started at /home1/metanoia/loja.autoraleedicoes.com.br/index.php:7) no arquivo /home1/metanoia/loja.autoraleedicoes.com.br/system/library/session.php na linha 147Warning: Cannot modify header information - headers already sent by (output started at /home1/metanoia/loja.autoraleedicoes.com.br/index.php:7) no arquivo /home1/metanoia/loja.autoraleedicoes.com.br/catalog/controller/startup/startup.php na linha 99Warning: Cannot modify header information - headers already sent by (output started at /home1/metanoia/loja.autoraleedicoes.com.br/index.php:7) no arquivo /home1/metanoia/loja.autoraleedicoes.com.br/catalog/controller/startup/startup.php na linha 159Warning: Cannot modify header information - headers already sent by (output started at /home1/metanoia/loja.autoraleedicoes.com.br/index.php:7) no arquivo /home1/metanoia/loja.autoraleedicoes.com.br/catalog/controller/extension/module/parcelamento.php na linha 106 var parcelamento_ajax_call = function() {
$.ajax({
type: 'POST',
url: 'index.php?route=extension/module/parcelamento&product_id=87',
data: $('#product input[type=\'text\'], #product input[type=\'number\'], #product input[type=\'hidden\'], #product input[type=\'radio\']:checked, #product input[type=\'checkbox\']:checked, #product select, #product textarea'),
dataType: 'json',
beforeSend: function() {
},
complete: function() {
},
success: function(json) {
if (json.success) {
if ($('#parcelamento').length > 0 && json.parcelamento) {
animation_on_change_options('#parcelamento', json.parcelamento);
}
}
}
});
}
var animation_on_change_options = function(selector_class_or_id, new_html_content) {
$(selector_class_or_id).fadeOut(150, function() {
$(this).html(new_html_content).fadeIn(50);
});
}
if ($('#product input[name=\'quantity\']').val() > 1) {
parcelamento_ajax_call();
}
if ( jQuery.isFunction(jQuery.fn.on) ) {
$(document).on('change', '#product input[type=\'radio\']:checked, #product input[type=\'checkbox\'], #product select', function () {
parcelamento_ajax_call();
});
$(document).on('input', '#product input[type=\'number\'], #product input[name=\'quantity\']', function () {
parcelamento_ajax_call();
});
} else {
$('#product input[type=\'text\'], #product input[type=\'number\'], #product input[type=\'hidden\'], #product input[type=\'radio\']:checked, #product input[type=\'checkbox\'], #product select, #product textarea, #product input[name=\'quantity\']').live('change touchend', function() {
parcelamento_ajax_call();
});
}