2018-03-14 11:12:06 +00:00
|
|
|
import ngModule from '../module';
|
2018-04-17 10:19:40 +00:00
|
|
|
import './style.scss';
|
2018-03-14 11:12:06 +00:00
|
|
|
|
2018-04-10 05:48:04 +00:00
|
|
|
class Controller {
|
2018-05-29 12:33:29 +00:00
|
|
|
constructor($scope, $http) {
|
|
|
|
this.$scope = $scope;
|
2018-04-10 05:48:04 +00:00
|
|
|
this.$http = $http;
|
|
|
|
}
|
|
|
|
|
|
|
|
$onChanges() {
|
|
|
|
if (!this.ticket)
|
|
|
|
return;
|
|
|
|
|
2018-05-14 08:07:22 +00:00
|
|
|
this.$http.get(`/ticket/api/Tickets/${this.ticket.id}/summary`).then(res => {
|
2018-04-10 05:48:04 +00:00
|
|
|
if (res && res.data)
|
|
|
|
this.summary = res.data;
|
|
|
|
});
|
|
|
|
}
|
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-04-10 05:48:04 +00:00
|
|
|
}
|
|
|
|
|
2018-05-29 12:33:29 +00:00
|
|
|
Controller.$inject = ['$scope', '$http'];
|
2018-03-14 11:12:06 +00:00
|
|
|
|
|
|
|
ngModule.component('vnTicketSummary', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-04-10 05:48:04 +00:00
|
|
|
controller: Controller,
|
2018-03-14 11:12:06 +00:00
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
}
|
|
|
|
});
|