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

31 lines
595 B
JavaScript
Raw Normal View History

2015-09-03 23:28:07 +00:00
Hedera.Invoices = new Class({
Extends: Hedera.Form,
2016-07-22 20:00:27 +00:00
donwloadRenderer: function(column, invoice) {
var invoiceId = invoice.get('id');
2019-08-02 10:48:41 +00:00
if (invoice.get('hasPdf') && invoiceId) {
var params = {
srv: 'rest:dms/invoice',
invoice: invoiceId,
token: this.conn.token
};
Object.assign(column, {
tip: _('Download PDF'),
disabled: false,
icon: 'download',
2019-08-02 10:48:41 +00:00
href: '?'+ Vn.Url.makeUri(params)
});
} else
Object.assign(column, {
tip: _('Request the invoice to your salesperson'),
disabled: true,
icon: 'warning',
href: null
});
2015-09-03 23:28:07 +00:00
}
});