2018-03-22 14:06:21 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-03-22 14:06:21 +00:00
|
|
|
|
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'
|
2018-07-17 06:44:31 +00:00
|
|
|
}]
|
|
|
|
};
|
|
|
|
|
2018-03-22 14:06:21 +00:00
|
|
|
this.ticketVolumes = [];
|
|
|
|
}
|
|
|
|
|
2019-03-26 08:33:54 +00:00
|
|
|
get sales() {
|
|
|
|
return this._sales;
|
|
|
|
}
|
|
|
|
|
|
|
|
set sales(value) {
|
|
|
|
this._sales = value;
|
|
|
|
|
|
|
|
if (value) this.applyVolumes();
|
|
|
|
}
|
|
|
|
|
|
|
|
applyVolumes() {
|
2022-01-17 12:17:06 +00:00
|
|
|
const ticket = this.sales[0].ticketFk;
|
2022-01-12 13:02:58 +00:00
|
|
|
this.$http.get(`Tickets/${ticket}/getVolume`).then(res => {
|
2022-01-17 12:17:06 +00:00
|
|
|
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
|
|
|
});
|
2018-03-22 14:06:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketVolume', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-03-22 14:06:21 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
}
|
|
|
|
});
|