master-control 0.4.94 → 0.4.95
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.
|
@@ -8385,7 +8385,7 @@ class AnnuityPremiumCalculatorComponent {
|
|
|
8385
8385
|
if (this.masterService.checkIfValueIsEmpty(this.annuityPremium['textValue'])) {
|
|
8386
8386
|
this.validations.ispremiumEntry = true;
|
|
8387
8387
|
}
|
|
8388
|
-
this.onAnnuityPremiumChange.emit(
|
|
8388
|
+
this.onAnnuityPremiumChange.emit(this.annuityPremium);
|
|
8389
8389
|
//convert to words
|
|
8390
8390
|
if (!this.masterService.checkIfValueIsEmpty(this.annuityPremium['textValue']) && !this.masterService.checkIfValueIsEmpty(this.annuityPremium['selectValue'])) {
|
|
8391
8391
|
const freq = ` per ${this.annuityPremium['selectValue']}`;
|
|
@@ -8396,8 +8396,7 @@ class AnnuityPremiumCalculatorComponent {
|
|
|
8396
8396
|
}
|
|
8397
8397
|
}
|
|
8398
8398
|
onMinPremiumValueChange(value) {
|
|
8399
|
-
this.minumumAnnuityPayout
|
|
8400
|
-
this.onMinimumPremiumValueChange.emit(value);
|
|
8399
|
+
this.onMinimumPremiumValueChange.emit(this.minumumAnnuityPayout);
|
|
8401
8400
|
//convert to words
|
|
8402
8401
|
if (!this.masterService.checkIfValueIsEmpty(this.minumumAnnuityPayout['textValue']) && !this.masterService.checkIfValueIsEmpty(this.minumumAnnuityPayout['selectValue'])) {
|
|
8403
8402
|
const freq = ` per ${this.minumumAnnuityPayout['selectValue']}`;
|