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

63 lines
1.7 KiB
JavaScript

import ngModule from '../module';
import './style.scss';
class Controller {
constructor($scope, $http, $stateParams) {
this.$scope = $scope;
this.$http = $http;
this.$stateParams = $stateParams;
this.filter = {
include: [{
relation: 'item'
}]
};
this.ticketVolumes = [];
}
onDataChange() {
this.$http.get(`/api/tickets/${this.ticket.id}/getVolume`)
.then(response => {
if (response.data) {
this.$scope.model.data.forEach(sale => {
response.data.volumes.forEach(volume => {
if (sale.id === volume.saleFk)
sale.volume = volume;
});
});
}
});
}
showDescriptor(event, itemFk) {
this.quicklinks = {
btnThree: {
icon: 'icon-transaction',
state: `item.card.diary({
id: ${itemFk},
warehouseFk: ${this.ticket.warehouseFk},
ticketFk: ${this.ticket.id}
})`,
tooltip: 'Item diary'
}
};
this.$scope.descriptor.itemFk = itemFk;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
}
onDescriptorLoad() {
this.$scope.popover.relocate();
}
}
Controller.$inject = ['$scope', '$http', '$stateParams'];
ngModule.component('vnTicketVolume', {
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
});