salix/client/ticket/src/volume/index.js

69 lines
1.9 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
import './style.scss';
2018-07-17 06:44:31 +00:00
class Controller {
constructor($scope, $http, $stateParams) {
this.$scope = $scope;
this.$http = $http;
2018-07-17 06:44:31 +00:00
this.$stateParams = $stateParams;
this.filter = {
include: [{
relation: 'item',
scope: {
include: {
relation: 'tags',
scope: {
fields: ['tagFk', 'value'],
include: {
relation: 'tag',
scope: {
fields: ['name']
}
},
limit: 6
}
},
fields: ['itemFk', 'name']
}
}]
};
this.ticketVolumes = [];
}
2018-07-17 06:44:31 +00:00
onDataChange() {
this.$http.get(`/api/tickets/${this.ticket.id}/getVolume`)
.then(response => {
if (response.data) {
2018-07-17 06:44:31 +00:00
this.$scope.model.data.forEach(sale => {
response.data.volumes.forEach(volume => {
2018-04-10 12:41:56 +00:00
if (sale.id === volume.saleFk) {
sale.volume = volume;
2018-04-10 12:41:56 +00:00
}
});
});
}
});
}
2018-05-29 12:33:29 +00:00
showDescriptor(event, itemFk) {
this.$scope.descriptor.itemFk = itemFk;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
}
onDescriptorLoad() {
this.$scope.popover.relocate();
}
}
2018-07-17 06:44:31 +00:00
Controller.$inject = ['$scope', '$http', '$stateParams'];
ngModule.component('vnTicketVolume', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});