Compliance done field added to hearings.

Also the compliance list is not based on it and not the compliance date.
This commit is contained in:
2021-01-20 11:53:40 +05:30
parent 78e1ccd756
commit cd4a091b63
22 changed files with 127 additions and 184 deletions

View File

@ -8,6 +8,7 @@ export class Hearing {
courtStatus: CourtStatus;
proceedings: string;
complianceDate: string | null;
complianceDone: boolean;
nextHearingDate: string | null;
public constructor(init?: Partial<Hearing>) {
@ -18,6 +19,7 @@ export class Hearing {
this.courtStatus = new CourtStatus();
this.proceedings = '';
this.complianceDate = null;
this.complianceDone = true;
this.nextHearingDate = null;
Object.assign(this, init);
}