<script>
$('a.btn-ec-regular.pdf-print').each(function(i, elem) {
var str = $(elem).attr('href');
str = str.replace('export/pdf', 'export/report_pdf2');
$(elem).attr('href', str);
});
</script>