2021-08-02 11:35:38 +00:00
|
|
|
import ngModule from '../../module';
|
|
|
|
import Dialog from 'core/components/dialog';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
class Controller extends Dialog {
|
|
|
|
constructor($element, $, $transclude) {
|
|
|
|
super($element, $, $transclude);
|
|
|
|
|
2022-10-13 13:01:15 +00:00
|
|
|
this.lastClientId = null;
|
2021-08-02 11:35:38 +00:00
|
|
|
this.invoice = {
|
|
|
|
maxShipped: new Date()
|
|
|
|
};
|
2021-08-10 11:57:03 +00:00
|
|
|
}
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2021-08-10 11:57:03 +00:00
|
|
|
$onInit() {
|
2021-08-02 11:35:38 +00:00
|
|
|
this.getMinClientId();
|
|
|
|
this.getMaxClientId();
|
|
|
|
}
|
|
|
|
|
|
|
|
getMinClientId() {
|
2021-08-10 11:57:03 +00:00
|
|
|
this.getClientId('min')
|
|
|
|
.then(res => this.invoice.fromClientId = res.data.id);
|
2021-08-02 11:35:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getMaxClientId() {
|
2021-08-10 11:57:03 +00:00
|
|
|
this.getClientId('max')
|
|
|
|
.then(res => this.invoice.toClientId = res.data.id);
|
2021-08-02 11:35:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getClientId(func) {
|
|
|
|
const order = func == 'min' ? 'ASC' : 'DESC';
|
|
|
|
const params = {
|
|
|
|
filter: {
|
|
|
|
order: 'id ' + order,
|
|
|
|
limit: 1
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return this.$http.get('Clients/findOne', {params});
|
|
|
|
}
|
|
|
|
|
|
|
|
get companyFk() {
|
|
|
|
return this.invoice.companyFk;
|
|
|
|
}
|
|
|
|
|
|
|
|
set companyFk(value) {
|
|
|
|
this.invoice.companyFk = value;
|
|
|
|
}
|
|
|
|
|
2022-10-13 13:01:15 +00:00
|
|
|
async responseHandler(response) {
|
2021-08-02 11:35:38 +00:00
|
|
|
try {
|
|
|
|
if (response !== 'accept')
|
|
|
|
return super.responseHandler(response);
|
|
|
|
|
2021-08-10 09:48:29 +00:00
|
|
|
if (!this.invoice.invoiceDate || !this.invoice.maxShipped)
|
|
|
|
throw new Error('Invoice date and the max date should be filled');
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2022-10-06 13:19:55 +00:00
|
|
|
if (!this.invoice.fromClientId)
|
2021-08-10 09:48:29 +00:00
|
|
|
throw new Error('Choose a valid clients range');
|
2021-08-02 11:35:38 +00:00
|
|
|
|
2022-10-13 13:01:15 +00:00
|
|
|
this.on('close', () => {
|
|
|
|
if (this.canceler) this.canceler.resolve();
|
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
|
|
|
});
|
|
|
|
|
2022-10-10 10:40:10 +00:00
|
|
|
return this.$http.post(`InvoiceOuts/clientToInvoice`, this.invoice)
|
2022-10-11 08:04:13 +00:00
|
|
|
.then(async res => {
|
2022-10-13 13:01:15 +00:00
|
|
|
const clientsAndAddresses = res.data.clientsAndAddresses;
|
|
|
|
const invoice = res.data.invoice;
|
|
|
|
|
|
|
|
if (!clientsAndAddresses.length) return super.responseHandler(response);
|
|
|
|
this.lastClientId = clientsAndAddresses[clientsAndAddresses.length - 1].clientId;
|
|
|
|
this.$.invoiceButton.setAttribute('disabled', true);
|
|
|
|
for (let clientAndAddress of clientsAndAddresses) {
|
|
|
|
this.currentClientId = clientAndAddress.clientId;
|
|
|
|
const params = {
|
|
|
|
clientId: clientAndAddress.clientId,
|
|
|
|
addressId: clientAndAddress.addressId,
|
|
|
|
invoiceDate: invoice.invoiceDate,
|
|
|
|
maxShipped: invoice.maxShipped,
|
|
|
|
fromClientId: invoice.fromClientId,
|
|
|
|
toClientId: invoice.toClientId,
|
|
|
|
companyFk: invoice.companyFk,
|
|
|
|
minShipped: invoice.minShipped,
|
|
|
|
|
|
|
|
};
|
|
|
|
this.canceler = this.$q.defer();
|
|
|
|
const options = {
|
|
|
|
timeout: this.canceler.promise
|
|
|
|
};
|
|
|
|
await this.$http.post(`InvoiceOuts/globalInvoicing`, params, options);
|
2022-10-11 08:04:13 +00:00
|
|
|
}
|
2022-10-10 10:40:10 +00:00
|
|
|
})
|
2022-10-11 08:04:13 +00:00
|
|
|
.then(() => super.responseHandler(response))
|
2021-08-10 09:48:29 +00:00
|
|
|
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')))
|
2022-10-13 13:01:15 +00:00
|
|
|
.finally(() => {
|
|
|
|
this.lastClientId = null;
|
|
|
|
this.$.invoiceButton.removeAttribute('disabled');
|
|
|
|
});
|
2021-08-02 11:35:38 +00:00
|
|
|
} catch (e) {
|
|
|
|
this.vnApp.showError(this.$t(e.message));
|
2022-10-13 13:01:15 +00:00
|
|
|
this.lastClientId = null;
|
|
|
|
this.$.invoiceButton.removeAttribute('disabled');
|
2021-08-02 11:35:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Controller.$inject = ['$element', '$scope', '$transclude'];
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnInvoiceOutGlobalInvoicing', {
|
|
|
|
slotTemplate: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
companyFk: '<?'
|
|
|
|
}
|
|
|
|
});
|