forked from verdnatura/hedera-web
18 lines
304 B
JavaScript
Executable File
18 lines
304 B
JavaScript
Executable File
|
|
Vn.Invoices = new Class
|
|
({
|
|
Extends: Vn.Module
|
|
|
|
,activate: function () {}
|
|
|
|
,onDownloadClick: function (column, invoiceId)
|
|
{
|
|
if (!invoiceId)
|
|
return;
|
|
|
|
var url = '//www.verdnatura.es/hedera-web/forms/ecomerce/invoices/download.php?invoice='+ invoiceId;
|
|
window.open (url, '_blank');
|
|
}
|
|
});
|
|
|