add delegate verification finish

This commit is contained in:
Eudes Inácio
2024-03-02 12:56:54 +01:00
parent 805825d3f5
commit 43ebfb381d
8 changed files with 18 additions and 8 deletions
@@ -22,6 +22,7 @@ export class DiplomasGerarOptionsPage implements OnInit {
task: customTask
fulltask: fullTask;
serialNumber: string;
isDelegated: boolean
constructor(
private processes: ProcessesService,
@@ -40,6 +41,7 @@ export class DiplomasGerarOptionsPage implements OnInit {
this.task = this.navParams.get('task')
this.fulltask = this.navParams.get('fulltask')
this.serialNumber = this.navParams.get('serialNumber')
this.isDelegated = this.fulltask.isDelegated;
}