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

55 lines
1.0 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'
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;
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
});
}
}
ngModule.component('vnTicketVolume', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});