hedera-web/forms/ecomerce/invoices/invoices.js

16 lines
231 B
JavaScript
Raw Normal View History

2015-09-03 23:28:07 +00:00
Vn.Invoices = new Class
({
Extends: Vn.Form
2016-07-22 20:00:27 +00:00
2015-09-03 23:28:07 +00:00
,onDownloadClick: function (column, invoiceId)
{
if (!invoiceId)
return;
2016-07-22 20:00:27 +00:00
var url = 'rest.php?method=invoice&invoice='+ invoiceId;
2015-09-03 23:28:07 +00:00
window.open (url, '_blank');
}
});