salix/modules/claim/front/summary/index.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-09-05 11:47:15 +00:00
import ngModule from '../module';
class Controller {
constructor($scope, $http) {
2018-09-05 11:47:15 +00:00
this.$http = $http;
2018-11-21 12:29:46 +00:00
this.$ = $scope;
2018-09-05 11:47:15 +00:00
}
getSummary() {
this.$http.get(`/claim/api/Claims/${this.claim.id}/getSummary`).then(response => {
this.summary = response.data;
});
}
$onChanges() {
if (this.claim && this.claim.id)
this.getSummary();
}
2018-11-21 12:29:46 +00:00
showItemDescriptor(event, itemFk) {
2018-11-21 12:29:46 +00:00
this.quicklinks = {
btnThree: {
icon: 'icon-transaction',
state: `item.card.diary({
id: ${itemFk}
})`,
tooltip: 'Item diary'
}
};
this.$.itemDescriptor.itemFk = itemFk;
this.$.itemDescriptor.parent = event.target;
this.$.itemDescriptor.show();
}
showWorkerDescriptor(event, userId) {
this.selectedWorker = userId;
this.$.workerDescriptor.parent = event.target;
this.$.workerDescriptor.show();
2018-11-21 12:29:46 +00:00
}
2019-02-21 06:46:27 +00:00
showTicketDescriptor(event, ticketId) {
this.$.ticketDescriptor.ticketFk = ticketId;
this.$.ticketDescriptor.parent = event.target;
this.$.ticketDescriptor.show();
}
2018-09-05 11:47:15 +00:00
}
Controller.$inject = ['$scope', '$http'];
2018-09-05 11:47:15 +00:00
ngModule.component('vnClaimSummary', {
template: require('./index.html'),
controller: Controller,
bindings: {
claim: '<'
}
});