A página de atualização após o diálogo fechar
window.onbeforeprint = function() {
console.log('This will be called before the user prints.');
};
window.onafterprint = function() {
console.log('This will be called after the user prints');
window.location.reload()
};
Chief Max