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

21 lines
302 B
JavaScript

Hedera.Invoices = new Class
({
Extends: Hedera.Form
,onDownloadClick: function (column, invoiceId)
{
if (!invoiceId)
return;
var params = {
'srv': 'rest:dms/invoice',
'invoice': invoiceId
};
var url = '?'+ Vn.Url.makeUri (params);
window.open (url, '_blank');
}
});