2022-12-27 11:21:04 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
import UserError from 'core/lib/user-error';
|
2021-08-02 11:35:38 +00:00
|
|
|
import './style.scss';
|
|
|
|
|
2022-12-27 11:21:04 +00:00
|
|
|
class Controller extends Section {
|
2021-08-10 11:57:03 +00:00
|
|
|
$onInit() {
|
2023-02-23 08:25:23 +00:00
|
|
|
const date = Date.vnNew();
|
|
|
|
Object.assign(this, {
|
2023-06-14 12:59:18 +00:00
|
|
|
maxShipped: new Date(date.getFullYear(), date.getMonth(), 0),
|
|
|
|
clientsToInvoice: 'all',
|
2023-02-23 08:25:23 +00:00
|
|
|
});
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
this.$http.get('UserConfigs/getUserConfig')
|
2023-06-14 12:59:18 +00:00
|
|
|
.then(res => {
|
|
|
|
this.companyFk = res.data.companyFk;
|
2023-06-15 05:24:17 +00:00
|
|
|
this.getInvoiceDate(this.companyFk);
|
2023-06-14 12:59:18 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-15 05:24:17 +00:00
|
|
|
getInvoiceDate(companyFk) {
|
2023-06-14 12:59:18 +00:00
|
|
|
const params = { companyFk: companyFk };
|
|
|
|
this.fetchInvoiceDate(params);
|
|
|
|
}
|
|
|
|
|
|
|
|
fetchInvoiceDate(params) {
|
|
|
|
this.$http.get('InvoiceOuts/getInvoiceDate', { params })
|
|
|
|
.then(res => {
|
|
|
|
this.minInvoicingDate = res.data.issued ? new Date(res.data.issued) : null;
|
|
|
|
this.invoiceDate = this.minInvoicingDate;
|
|
|
|
});
|
|
|
|
}
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
stopInvoicing() {
|
|
|
|
this.status = 'stopping';
|
2021-08-02 11:35:38 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
makeInvoice() {
|
|
|
|
this.invoicing = true;
|
|
|
|
this.status = 'packageInvoicing';
|
|
|
|
this.errors = [];
|
|
|
|
this.addresses = null;
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
try {
|
|
|
|
if (this.clientsToInvoice == 'one' && !this.clientId)
|
|
|
|
throw new UserError('Choose a valid client');
|
|
|
|
if (!this.invoiceDate || !this.maxShipped)
|
|
|
|
throw new UserError('Invoice date and the max date should be filled');
|
|
|
|
if (this.invoiceDate < this.maxShipped)
|
|
|
|
throw new UserError('Invoice date can\'t be less than max date');
|
2023-06-15 07:50:46 +00:00
|
|
|
if (this.minInvoicingDate && this.invoiceDate.getTime() < this.minInvoicingDate.getTime())
|
2023-06-21 07:40:14 +00:00
|
|
|
throw new UserError('Exists an invoice with a future date');
|
2023-02-23 08:25:23 +00:00
|
|
|
if (!this.companyFk)
|
|
|
|
throw new UserError('Choose a valid company');
|
|
|
|
if (!this.printerFk)
|
|
|
|
throw new UserError('Choose a valid printer');
|
|
|
|
|
|
|
|
if (this.clientsToInvoice == 'all')
|
|
|
|
this.clientId = undefined;
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
invoiceDate: this.invoiceDate,
|
|
|
|
maxShipped: this.maxShipped,
|
|
|
|
clientId: this.clientId,
|
|
|
|
companyFk: this.companyFk
|
|
|
|
};
|
|
|
|
this.$http.post(`InvoiceOuts/clientsToInvoice`, params)
|
|
|
|
.then(res => {
|
|
|
|
this.addresses = res.data;
|
|
|
|
if (!this.addresses.length)
|
|
|
|
throw new UserError(`There aren't tickets to invoice`);
|
|
|
|
|
|
|
|
this.addressIndex = 0;
|
|
|
|
return this.invoiceOut();
|
|
|
|
})
|
|
|
|
.catch(err => this.handleError(err));
|
|
|
|
} catch (err) {
|
|
|
|
this.handleError(err);
|
|
|
|
}
|
2023-01-24 08:45:52 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
handleError(err) {
|
|
|
|
this.invoicing = false;
|
|
|
|
this.status = null;
|
|
|
|
throw err;
|
2022-10-17 07:49:47 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
invoiceOut() {
|
|
|
|
if (this.addressIndex == this.addresses.length || this.status == 'stopping') {
|
|
|
|
this.invoicing = false;
|
|
|
|
this.status = 'done';
|
2023-01-30 11:13:01 +00:00
|
|
|
return;
|
|
|
|
}
|
2023-01-25 07:15:50 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
this.status = 'invoicing';
|
|
|
|
const address = this.addresses[this.addressIndex];
|
|
|
|
this.currentAddress = address;
|
2023-01-25 07:15:50 +00:00
|
|
|
|
2022-10-19 11:59:57 +00:00
|
|
|
const params = {
|
2023-02-23 08:25:23 +00:00
|
|
|
clientId: address.clientId,
|
|
|
|
addressId: address.id,
|
|
|
|
invoiceDate: this.invoiceDate,
|
|
|
|
maxShipped: this.maxShipped,
|
|
|
|
companyFk: this.companyFk,
|
|
|
|
printerFk: this.printerFk,
|
2022-10-19 11:59:57 +00:00
|
|
|
};
|
2023-02-23 08:25:23 +00:00
|
|
|
|
|
|
|
this.$http.post(`InvoiceOuts/invoiceClient`, params)
|
2023-04-04 13:00:28 +00:00
|
|
|
.then(() => this.invoiceNext())
|
2023-02-23 08:25:23 +00:00
|
|
|
.catch(res => {
|
2023-04-04 13:00:28 +00:00
|
|
|
const message = res.data?.error?.message || res.message;
|
|
|
|
if (res.status >= 400 && res.status < 500) {
|
|
|
|
this.errors.unshift({address, message});
|
|
|
|
this.invoiceNext();
|
|
|
|
} else {
|
|
|
|
this.invoicing = false;
|
|
|
|
this.status = 'done';
|
|
|
|
throw new UserError(`Critical invoicing error, proccess stopped`);
|
|
|
|
}
|
2023-02-23 08:25:23 +00:00
|
|
|
})
|
2023-04-04 13:00:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
invoiceNext() {
|
|
|
|
this.addressIndex++;
|
|
|
|
this.invoiceOut();
|
2022-10-18 12:46:40 +00:00
|
|
|
}
|
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
get nAddresses() {
|
|
|
|
if (!this.addresses) return 0;
|
|
|
|
return this.addresses.length;
|
|
|
|
}
|
2023-01-24 08:45:52 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
get addressNumber() {
|
|
|
|
return Math.min(this.addressIndex + 1, this.nAddresses);
|
|
|
|
}
|
2023-01-24 08:45:52 +00:00
|
|
|
|
2023-02-23 08:25:23 +00:00
|
|
|
get percentage() {
|
|
|
|
const len = this.nAddresses;
|
|
|
|
return Math.min(this.addressIndex, len) / len;
|
2021-08-02 11:35:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnInvoiceOutGlobalInvoicing', {
|
2022-12-27 11:21:04 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
2021-08-02 11:35:38 +00:00
|
|
|
});
|