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();
|
|
|
|
}
|
|
|
|
|
|
|
|
get volumes() {
|
|
|
|
return this._volumes;
|
|
|
|
}
|
|
|
|
|
|
|
|
set volumes(value) {
|
|
|
|
this._volumes = value;
|
|
|
|
|
|
|
|
if (value) this.applyVolumes();
|
|
|
|
}
|
|
|
|
|
|
|
|
applyVolumes() {
|
|
|
|
if (!this.sales || !this.volumes) return;
|
|
|
|
|
|
|
|
this.sales.forEach(sale => {
|
|
|
|
this.volumes.forEach(volume => {
|
|
|
|
if (sale.id === volume.saleFk)
|
|
|
|
sale.volume = volume;
|
2018-11-06 09:49:38 +00:00
|
|
|
});
|
2019-03-26 08:33:54 +00:00
|
|
|
});
|
2018-03-22 14:06:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('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: '<'
|
|
|
|
}
|
|
|
|
});
|