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

51 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-03-21 14:51:09 +00:00
import ngModule from '../module';
2018-07-17 06:44:31 +00:00
class Controller {
constructor($scope, $stateParams, $http) {
2018-05-29 12:33:29 +00:00
this.$scope = $scope;
2018-07-17 06:44:31 +00:00
this.$stateParams = $stateParams;
2018-03-21 14:51:09 +00:00
this.$http = $http;
2018-07-17 06:44:31 +00:00
this.filter = {
include: [{
relation: 'item',
scope: {
fields: ['name']
}
},
{
relation: 'box',
scope: {
fields: ['name']
}
},
{
relation: 'worker',
scope: {fields: ['firstName', 'name']}
}]
};
2018-03-21 14:51:09 +00:00
}
2018-07-17 06:44:31 +00:00
2018-03-21 14:51:09 +00:00
deleteExpedition(expedition) {
this.$http.delete(`/ticket/api/Expeditions/${expedition.id}`, this.params).then(
2018-07-17 06:44:31 +00:00
() => this.$scope.model.refresh()
2018-03-21 14:51:09 +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-03-21 14:51:09 +00:00
}
2018-07-17 06:44:31 +00:00
Controller.$inject = ['$scope', '$stateParams', '$http'];
2018-03-21 14:51:09 +00:00
ngModule.component('vnTicketExpedition', {
template: require('./index.html'),
2018-03-21 14:51:09 +00:00
controller: Controller
});