79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
import ngModule from '../module';
|
|
import Descriptor from 'salix/components/descriptor';
|
|
|
|
class Controller extends Descriptor {
|
|
get invoiceOut() {
|
|
return this.entity;
|
|
}
|
|
|
|
set invoiceOut(value) {
|
|
this.entity = value;
|
|
}
|
|
|
|
deleteInvoiceOut() {
|
|
return this.$http.post(`InvoiceOuts/${this.id}/delete`)
|
|
.then(() => this.$state.go('invoiceOut.index'))
|
|
.then(() => this.vnApp.showSuccess(this.$t('InvoiceOut deleted')));
|
|
}
|
|
|
|
bookInvoiceOut() {
|
|
return this.$http.post(`InvoiceOuts/${this.invoiceOut.ref}/book`)
|
|
.then(() => this.$state.reload())
|
|
.then(() => this.vnApp.showSuccess(this.$t('InvoiceOut booked')));
|
|
}
|
|
|
|
createInvoicePdf() {
|
|
const invoiceId = this.invoiceOut.id;
|
|
return this.$http.post(`InvoiceOuts/${invoiceId}/createPdf`)
|
|
.then(() => {
|
|
const snackbarMessage = this.$t(
|
|
`The invoice PDF document has been regenerated`);
|
|
this.vnApp.showSuccess(snackbarMessage);
|
|
});
|
|
}
|
|
|
|
get filter() {
|
|
if (this.invoiceOut)
|
|
return JSON.stringify({refFk: this.invoiceOut.ref});
|
|
|
|
return null;
|
|
}
|
|
|
|
loadData() {
|
|
const filter = {
|
|
include: [
|
|
{
|
|
relation: 'company',
|
|
scope: {
|
|
fields: ['id', 'code']
|
|
}
|
|
}, {
|
|
relation: 'client',
|
|
scope: {
|
|
fields: ['id', 'name']
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
return this.getData(`InvoiceOuts/${this.id}`, {filter})
|
|
.then(res => this.entity = res.data);
|
|
}
|
|
|
|
sendInvoice() {
|
|
return this.vnEmail.send('invoice', {
|
|
recipientId: this.invoiceOut.client.id,
|
|
recipient: this.invoiceOut.client.email,
|
|
invoiceId: this.id
|
|
});
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnInvoiceOutDescriptor', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
invoiceOut: '<'
|
|
}
|
|
});
|