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

40 lines
874 B
JavaScript
Raw Normal View History

2018-03-14 11:12:06 +00:00
import ngModule from '../module';
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', {
template: require('./index.html'),
2018-04-10 05:48:04 +00:00
controller: Controller,
2018-03-14 11:12:06 +00:00
bindings: {
ticket: '<'
}
});