2018-03-22 14:06:21 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
class Controller {
|
|
|
|
constructor($scope, $http, $stateParams) {
|
2018-03-22 14:06:21 +00:00
|
|
|
this.$scope = $scope;
|
|
|
|
this.$http = $http;
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$stateParams = $stateParams;
|
|
|
|
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 = [];
|
|
|
|
}
|
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
onDataChange() {
|
2018-04-03 14:10:39 +00:00
|
|
|
this.$http.get(`/api/tickets/${this.ticket.id}/getVolume`)
|
2018-11-06 09:49:38 +00:00
|
|
|
.then(response => {
|
|
|
|
if (response.data) {
|
|
|
|
this.$scope.model.data.forEach(sale => {
|
|
|
|
response.data.volumes.forEach(volume => {
|
|
|
|
if (sale.id === volume.saleFk)
|
|
|
|
sale.volume = volume;
|
|
|
|
});
|
2018-04-03 14:10:39 +00:00
|
|
|
});
|
2018-11-06 09:49:38 +00:00
|
|
|
}
|
|
|
|
});
|
2018-03-22 14:06:21 +00:00
|
|
|
}
|
2018-05-29 12:33:29 +00:00
|
|
|
|
|
|
|
showDescriptor(event, itemFk) {
|
2018-09-04 09:49:00 +00:00
|
|
|
this.quicklinks = {
|
|
|
|
btnThree: {
|
|
|
|
icon: 'icon-transaction',
|
|
|
|
state: `item.card.diary({
|
|
|
|
id: ${itemFk},
|
2018-10-05 12:03:59 +00:00
|
|
|
warehouseFk: ${this.ticket.warehouseFk},
|
|
|
|
ticketFk: ${this.ticket.id}
|
2018-09-04 09:49:00 +00:00
|
|
|
})`,
|
|
|
|
tooltip: 'Item diary'
|
|
|
|
}
|
|
|
|
};
|
2018-05-29 12:33:29 +00:00
|
|
|
this.$scope.descriptor.itemFk = itemFk;
|
|
|
|
this.$scope.descriptor.parent = event.target;
|
|
|
|
this.$scope.descriptor.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
onDescriptorLoad() {
|
|
|
|
this.$scope.popover.relocate();
|
|
|
|
}
|
2018-03-22 14:06:21 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
Controller.$inject = ['$scope', '$http', '$stateParams'];
|
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: '<'
|
|
|
|
}
|
|
|
|
});
|