Skip to content

Commit

Permalink
Backdated Pause Delinquency
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Alberto Hernandez authored and adamsaghy committed Dec 15, 2023
1 parent 9e54d16 commit b03b172
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Component, Inject, OnInit } from '@angular/core';
import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { SettingsService } from 'app/settings/settings.service';

@Component({
selector: 'mifosx-loan-delinquency-action-dialog',
Expand All @@ -18,14 +17,11 @@ export class LoanDelinquencyActionDialogComponent implements OnInit {

constructor(public dialogRef: MatDialogRef<LoanDelinquencyActionDialogComponent>,
@Inject(MAT_DIALOG_DATA) public data: any,
private formBuilder: UntypedFormBuilder,
private settingsService: SettingsService) {
private formBuilder: UntypedFormBuilder) {
this.createDelinquencyActionForm();
}

ngOnInit(): void {
this.minDate = this.settingsService.businessDate;
}
ngOnInit(): void { }

createDelinquencyActionForm() {
this.delinquencyActionForm = this.formBuilder.group({
Expand Down

0 comments on commit b03b172

Please sign in to comment.