2018-03-01 11:51:35 +00:00
|
|
|
import ngModule from '../module';
|
2020-11-23 12:41:51 +00:00
|
|
|
import Summary from 'salix/components/summary';
|
2018-03-27 13:06:22 +00:00
|
|
|
import './style.scss';
|
2018-03-01 11:51:35 +00:00
|
|
|
|
2020-11-23 12:41:51 +00:00
|
|
|
class Controller extends Summary {
|
2018-03-15 13:36:09 +00:00
|
|
|
$onChanges() {
|
2018-03-27 13:06:22 +00:00
|
|
|
if (!this.client)
|
2018-03-05 09:56:51 +00:00
|
|
|
return;
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.get(`Clients/${this.client.id}/summary`).then(res => {
|
2018-07-09 11:01:46 +00:00
|
|
|
if (res && res.data) {
|
2018-03-05 09:56:51 +00:00
|
|
|
this.summary = res.data;
|
2018-07-09 11:01:46 +00:00
|
|
|
|
|
|
|
if (res.data.classifications.length)
|
|
|
|
this.grade = res.data.classifications[0].insurances[0].grade;
|
2018-10-19 06:40:32 +00:00
|
|
|
|
|
|
|
this.summary.sumRisk = this.sumRisk();
|
2018-07-09 11:01:46 +00:00
|
|
|
}
|
2018-03-01 13:48:02 +00:00
|
|
|
});
|
|
|
|
}
|
2021-01-12 06:39:12 +00:00
|
|
|
get isEmployee() {
|
|
|
|
return this.aclService.hasAny(['employee']);
|
|
|
|
}
|
2018-10-19 06:40:32 +00:00
|
|
|
|
|
|
|
sumRisk() {
|
|
|
|
let total = 0;
|
|
|
|
this.summary.clientRisks.forEach(risk => {
|
|
|
|
total += risk.amount;
|
|
|
|
});
|
|
|
|
return total;
|
|
|
|
}
|
2019-07-02 10:12:15 +00:00
|
|
|
|
|
|
|
claimRate(priceIncreasing) {
|
|
|
|
if (priceIncreasing)
|
|
|
|
return priceIncreasing * 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
claimingRate(rate) {
|
|
|
|
if (rate)
|
|
|
|
return rate * 100;
|
|
|
|
}
|
2018-03-01 13:48:02 +00:00
|
|
|
}
|
2018-03-27 13:06:22 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnClientSummary', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2018-03-15 13:36:09 +00:00
|
|
|
controller: Controller,
|
2018-03-01 11:51:35 +00:00
|
|
|
bindings: {
|
|
|
|
client: '<'
|
|
|
|
}
|
|
|
|
});
|