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

52 lines
1.4 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
import FilterTicketList from '../filter-ticket-list';
import './style.scss';
class Controller extends FilterTicketList {
constructor($scope, $http, $translate, $timeout, $state) {
super($scope, $timeout, $state);
this.$scope = $scope;
this.$http = $http;
this.$translate = $translate;
this.onOrder('itemFk', 'ASC');
this.ticketVolumes = [];
}
setVolumes() {
if (!this.$scope.index) return;
this.$http.get(`/api/tickets/${this.ticket.id}/getVolume`)
.then(response => {
if (response.data) {
this.$scope.index.model.instances.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();
}
}
Controller.$inject = ['$scope', '$http', '$translate', '$timeout', '$state'];
ngModule.component('vnTicketVolume', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});