2015-09-03 23:28:07 +00:00
|
|
|
|
|
|
|
Vn.Invoices = new Class
|
|
|
|
({
|
2015-11-17 10:34:33 +00:00
|
|
|
Extends: Vn.Form
|
2015-09-03 23:28:07 +00:00
|
|
|
|
|
|
|
,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');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|