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:
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user