salix/modules/ticket/front/volume/index.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
2020-03-18 07:35:59 +00:00
class Controller extends Section {
constructor($element, $) {
super($element, $);
2018-07-17 06:44:31 +00:00
this.filter = {
include: {
2018-11-06 09:49:38 +00:00
relation: 'item'
},
order: 'concept'
2018-07-17 06:44:31 +00:00
};
this.ticketVolumes = [];
}
2019-03-26 08:33:54 +00:00
get sales() {
return this._sales;
}
set sales(value) {
this._sales = value;
2022-04-28 06:26:38 +00:00
if (value && value.length) this.applyVolumes();
2019-03-26 08:33:54 +00:00
}
applyVolumes() {
const ticket = this.sales[0].ticketFk;
this.$http.get(`Tickets/${ticket}/getVolume`).then(res => {
const saleVolume = res.data.saleVolume;
const volumes = new Map();
for (const volume of saleVolume)
volumes.set(volume.saleFk, volume);
for (const sale of this.sales)
sale.saleVolume = volumes.get(sale.id);
this.packingTypeVolume = res.data.packingTypeVolume;
2019-03-26 08:33:54 +00:00
});
}
}
ngModule.vnComponent('vnTicketVolume', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});