44 lines
905 B
JavaScript
44 lines
905 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
import './style.scss';
|
|
|
|
class Controller extends Section {
|
|
$onChanges() {
|
|
if (this.claim && this.claim.id)
|
|
this.getSummary();
|
|
}
|
|
|
|
get claim() {
|
|
return this._claim;
|
|
}
|
|
|
|
set claim(value) {
|
|
this._claim = value;
|
|
|
|
// Get DMS on summary load
|
|
if (value)
|
|
this.$.$applyAsync(() => this.loadDms());
|
|
}
|
|
|
|
loadDms() {
|
|
this.$.model.where = {
|
|
claimFk: this.claim.id
|
|
};
|
|
this.$.model.refresh();
|
|
}
|
|
|
|
getSummary() {
|
|
this.$http.get(`Claims/${this.claim.id}/getSummary`).then(response => {
|
|
this.summary = response.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnClaimSummary', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
bindings: {
|
|
claim: '<'
|
|
}
|
|
});
|