Melhorias

This commit is contained in:
tiago.kayaya
2021-02-10 16:02:38 +01:00
parent 90b5abba39
commit d51c923369
5 changed files with 29 additions and 31 deletions
@@ -63,7 +63,7 @@ export class ExpedienteDetailPage implements OnInit {
"Folio": res.workflowInstanceFolio,
"Senders": res.originator.email,
"CreateDate": formatDate(new Date(res.taskStartDate), 'yyyy-MM-dd HH:mm', 'pt'),
"DocumentURL": res.formURL,
"DocumentURL": res.workflowInstanceDataFields.ViewerRequest,
"Remetente": res.workflowInstanceDataFields.Remetente
}
this.fulltask = res;
@@ -93,7 +93,7 @@ export class ExpedienteDetailPage implements OnInit {
viewDocument(){
const url: string = this.task.DocumentURL.replace("webTRIX.Viewer","webTRIX.Viewer.Branch1");
const browser = this.iab.create(url,"_blank");
const browser = this.iab.create(url,"_parent");
browser.show();
}