master-control 0.4.94 → 0.4.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8380,12 +8380,11 @@ class AnnuityPremiumCalculatorComponent {
|
|
|
8380
8380
|
this.onGrowthRateOptionSelected.emit();
|
|
8381
8381
|
}
|
|
8382
8382
|
onAnnuityPremiumValueChange(value) {
|
|
8383
|
-
this.annuityPremium['textValue'] = value;
|
|
8384
8383
|
this.validations.ispremiumEntry = false;
|
|
8385
8384
|
if (this.masterService.checkIfValueIsEmpty(this.annuityPremium['textValue'])) {
|
|
8386
8385
|
this.validations.ispremiumEntry = true;
|
|
8387
8386
|
}
|
|
8388
|
-
this.onAnnuityPremiumChange.emit(
|
|
8387
|
+
this.onAnnuityPremiumChange.emit(this.annuityPremium);
|
|
8389
8388
|
//convert to words
|
|
8390
8389
|
if (!this.masterService.checkIfValueIsEmpty(this.annuityPremium['textValue']) && !this.masterService.checkIfValueIsEmpty(this.annuityPremium['selectValue'])) {
|
|
8391
8390
|
const freq = ` per ${this.annuityPremium['selectValue']}`;
|
|
@@ -8396,8 +8395,7 @@ class AnnuityPremiumCalculatorComponent {
|
|
|
8396
8395
|
}
|
|
8397
8396
|
}
|
|
8398
8397
|
onMinPremiumValueChange(value) {
|
|
8399
|
-
this.minumumAnnuityPayout
|
|
8400
|
-
this.onMinimumPremiumValueChange.emit(value);
|
|
8398
|
+
this.onMinimumPremiumValueChange.emit(this.minumumAnnuityPayout);
|
|
8401
8399
|
//convert to words
|
|
8402
8400
|
if (!this.masterService.checkIfValueIsEmpty(this.minumumAnnuityPayout['textValue']) && !this.masterService.checkIfValueIsEmpty(this.minumumAnnuityPayout['selectValue'])) {
|
|
8403
8401
|
const freq = ` per ${this.minumumAnnuityPayout['selectValue']}`;
|