2021-11-09 14:10:43 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
class Controller extends Section {
|
2021-11-10 13:48:17 +00:00
|
|
|
constructor($element, $, vnReport, vnEmail) {
|
2021-11-09 14:10:43 +00:00
|
|
|
super($element, $);
|
2021-11-10 13:48:17 +00:00
|
|
|
this.vnReport = vnReport;
|
|
|
|
this.vnEmail = vnEmail;
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get invoiceOut() {
|
|
|
|
return this._invoiceOut;
|
|
|
|
}
|
|
|
|
|
|
|
|
set invoiceOut(value) {
|
|
|
|
this._invoiceOut = value;
|
2021-11-10 13:48:17 +00:00
|
|
|
if (value)
|
|
|
|
this.id = value.id;
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
|
2022-01-18 12:15:42 +00:00
|
|
|
get hasInvoicing() {
|
|
|
|
return this.aclService.hasAny(['invoicing']);
|
|
|
|
}
|
|
|
|
|
2021-11-09 14:10:43 +00:00
|
|
|
loadData() {
|
|
|
|
const filter = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
relation: 'company',
|
|
|
|
scope: {
|
|
|
|
fields: ['id', 'code']
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
relation: 'client',
|
|
|
|
scope: {
|
|
|
|
fields: ['id', 'name', 'email']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
2021-11-10 13:48:17 +00:00
|
|
|
return this.$http.get(`InvoiceOuts/${this.invoiceOut.id}`, {filter})
|
|
|
|
.then(res => this.invoiceOut = res.data);
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
reload() {
|
|
|
|
return this.loadData().then(() => {
|
|
|
|
if (this.parentReload)
|
|
|
|
this.parentReload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
cardReload() {
|
|
|
|
// Prevents error when not defined
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteInvoiceOut() {
|
|
|
|
return this.$http.post(`InvoiceOuts/${this.invoiceOut.id}/delete`)
|
2022-01-20 10:06:15 +00:00
|
|
|
.then(() => {
|
|
|
|
const isInsideInvoiceOut = this.$state.current.name.startsWith('invoiceOut');
|
|
|
|
if (isInsideInvoiceOut)
|
|
|
|
this.$state.go('invoiceOut.index');
|
|
|
|
else
|
|
|
|
this.$state.reload();
|
|
|
|
})
|
2021-11-10 13:48:17 +00:00
|
|
|
.then(() => this.vnApp.showSuccess(this.$t('InvoiceOut deleted')));
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bookInvoiceOut() {
|
|
|
|
return this.$http.post(`InvoiceOuts/${this.invoiceOut.ref}/book`)
|
|
|
|
.then(() => this.$state.reload())
|
|
|
|
.then(() => this.vnApp.showSuccess(this.$t('InvoiceOut booked')));
|
|
|
|
}
|
|
|
|
|
|
|
|
createPdfInvoice() {
|
2021-11-10 13:48:17 +00:00
|
|
|
return this.$http.post(`InvoiceOuts/${this.id}/createPdf`)
|
2021-11-09 14:10:43 +00:00
|
|
|
.then(() => this.reload())
|
|
|
|
.then(() => {
|
|
|
|
const snackbarMessage = this.$t(
|
|
|
|
`The invoice PDF document has been regenerated`);
|
|
|
|
this.vnApp.showSuccess(snackbarMessage);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
sendPdfInvoice($data) {
|
2021-11-11 13:46:05 +00:00
|
|
|
if (!$data.email)
|
|
|
|
return this.vnApp.showError(this.$t(`The email can't be empty`));
|
|
|
|
|
2022-09-26 11:33:27 +00:00
|
|
|
return this.vnEmail.send(`InvoiceOuts/${this.invoiceOut.ref}/invoice-email`, {
|
2021-11-09 14:10:43 +00:00
|
|
|
recipientId: this.invoiceOut.client.id,
|
2022-09-26 11:33:27 +00:00
|
|
|
recipient: $data.email
|
2021-11-09 14:10:43 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-10-03 06:28:47 +00:00
|
|
|
showCsvInvoice() {
|
|
|
|
this.vnReport.show(`InvoiceOuts/${this.invoiceOut.ref}/invoice-csv`, {
|
|
|
|
recipientId: this.invoiceOut.client.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-11-09 14:10:43 +00:00
|
|
|
sendCsvInvoice($data) {
|
2021-11-11 13:46:05 +00:00
|
|
|
if (!$data.email)
|
|
|
|
return this.vnApp.showError(this.$t(`The email can't be empty`));
|
|
|
|
|
2022-10-03 06:28:47 +00:00
|
|
|
return this.vnEmail.send(`InvoiceOuts/${this.invoiceOut.ref}/invoice-csv-email`, {
|
2021-11-09 14:10:43 +00:00
|
|
|
recipientId: this.invoiceOut.client.id,
|
2022-10-03 06:28:47 +00:00
|
|
|
recipient: $data.email
|
2021-11-09 14:10:43 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
showExportationLetter() {
|
2022-09-26 11:33:27 +00:00
|
|
|
this.vnReport.show(`InvoiceOuts/${this.invoiceOut.ref}/exportation-pdf`, {
|
2021-11-09 14:10:43 +00:00
|
|
|
recipientId: this.invoiceOut.client.id,
|
2022-07-21 08:05:37 +00:00
|
|
|
refFk: this.invoiceOut.ref
|
2021-11-09 14:10:43 +00:00
|
|
|
});
|
|
|
|
}
|
2022-04-22 09:46:28 +00:00
|
|
|
|
2023-05-23 13:06:38 +00:00
|
|
|
refundInvoiceOut(withWarehouse) {
|
2022-07-14 11:40:50 +00:00
|
|
|
const query = 'InvoiceOuts/refund';
|
2023-05-23 13:06:38 +00:00
|
|
|
const params = {ref: this.invoiceOut.ref, withWarehouse: withWarehouse};
|
2022-07-14 11:40:50 +00:00
|
|
|
this.$http.post(query, params).then(res => {
|
2023-04-21 11:59:28 +00:00
|
|
|
const refundTicket = res.data;
|
|
|
|
this.vnApp.showSuccess(this.$t('The following refund ticket have been created', {
|
|
|
|
ticketId: refundTicket.id
|
|
|
|
}));
|
|
|
|
this.$state.go('ticket.card.sale', {id: refundTicket.id});
|
2022-05-20 10:08:12 +00:00
|
|
|
});
|
2022-04-22 09:46:28 +00:00
|
|
|
}
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 13:48:17 +00:00
|
|
|
Controller.$inject = ['$element', '$scope', 'vnReport', 'vnEmail'];
|
2021-11-09 14:10:43 +00:00
|
|
|
|
|
|
|
ngModule.vnComponent('vnInvoiceOutDescriptorMenu', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
invoiceOut: '<',
|
2021-11-10 13:48:17 +00:00
|
|
|
parentReload: '&'
|
2021-11-09 14:10:43 +00:00
|
|
|
}
|
|
|
|
});
|