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

71 lines
1.6 KiB
JavaScript
Raw Normal View History

2018-09-05 11:47:15 +00:00
import ngModule from '../module';
import './style.scss';
2018-09-05 11:47:15 +00:00
class Controller {
constructor($scope, $http, $stateParams, vnToken) {
2018-09-05 11:47:15 +00:00
this.$http = $http;
2018-11-21 12:29:46 +00:00
this.$ = $scope;
this.$stateParams = $stateParams;
this.accessToken = vnToken.token;
2018-09-05 11:47:15 +00:00
}
get claim() {
return this._claim;
}
set claim(value) {
this._claim = value;
// Get DMS on summary load
2019-11-25 07:35:34 +00:00
if (value)
this.$.$applyAsync(() => this.loadDms());
}
loadDms() {
this.$.model.where = {
claimFk: this.claim.id
};
this.$.model.refresh();
}
2018-09-05 11:47:15 +00:00
getSummary() {
this.$http.get(`Claims/${this.claim.id}/getSummary`).then(response => {
2018-09-05 11:47:15 +00:00
this.summary = response.data;
});
}
$onChanges() {
if (this.claim && this.claim.id)
this.getSummary();
}
2018-11-21 12:29:46 +00:00
showItemDescriptor(event, itemFk) {
this.$.itemDescriptor.itemFk = itemFk;
this.$.itemDescriptor.parent = event.target;
this.$.itemDescriptor.show();
}
showWorkerDescriptor(event, workerFk) {
this.selectedWorker = workerFk;
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', '$stateParams', 'vnToken'];
2018-09-05 11:47:15 +00:00
ngModule.component('vnClaimSummary', {
template: require('./index.html'),
controller: Controller,
bindings: {
claim: '<'
}
});