mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
Refinamentos 1
This commit is contained in:
+3
-3
@@ -16,8 +16,7 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
|
||||
constructor(private activateRoute: ActivatedRoute,
|
||||
private processes:ProcessesService,
|
||||
private iab: InAppBrowser,
|
||||
private loadingService: LoadingService) { }
|
||||
private iab: InAppBrowser) { }
|
||||
|
||||
task: DailyWorkTask;
|
||||
|
||||
@@ -48,7 +47,8 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
|
||||
viewDocument()
|
||||
{
|
||||
const browser = this.iab.create(this.task.DocumentURL,"_blank");
|
||||
const url: string = this.task.DocumentURL.replace("webTRIX.Viewer","webTRIX.Viewer/branch1");
|
||||
const browser = this.iab.create(url,"_blank");
|
||||
browser.show();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,11 +21,11 @@
|
||||
<ion-label>Correspondência</ion-label>
|
||||
<ion-button slot="end">{{ count_exp_dailywork }}</ion-button>
|
||||
</ion-item>
|
||||
<ion-item (click)="load()" class="ion-activated">
|
||||
<ion-item (click)="notImplemented()" class="ion-activated">
|
||||
<ion-label>Pedidos de parecer</ion-label>
|
||||
<ion-button slot="end">{{count_exp_pp}}</ion-button>
|
||||
</ion-item>
|
||||
<ion-item (click)="load()">
|
||||
<ion-item (click)="notImplemented()">
|
||||
<ion-label>Pedidos de deferimento</ion-label>
|
||||
<ion-button slot="end">{{count_exp_pd}}</ion-button>
|
||||
</ion-item>
|
||||
@@ -36,11 +36,11 @@
|
||||
<ion-card-header>
|
||||
<ion-card-title>Diplomas</ion-card-title>
|
||||
<ion-card-content>
|
||||
<ion-item (click)="load()" class="ion-item-change-color">
|
||||
<ion-item (click)="notImplemented()" class="ion-item-change-color">
|
||||
<ion-label>Assinados pelo PR</ion-label>
|
||||
<ion-button slot="end">{{count_dip_apr}}</ion-button>
|
||||
</ion-item>
|
||||
<ion-item primary (click)="load()" class="ion-activated">
|
||||
<ion-item primary (click)="notImplemented()" class="ion-activated">
|
||||
<ion-label>Por validar (MDGPR)</ion-label>
|
||||
<ion-button slot="end">{{count_dip_pv}}</ion-button>
|
||||
</ion-item>
|
||||
@@ -51,7 +51,7 @@
|
||||
<ion-card-header>
|
||||
<ion-card-title>Despachos Efectuados</ion-card-title>
|
||||
<ion-card-content>
|
||||
<ion-item (click)="load()" class="ion-item-change-color">
|
||||
<ion-item (click)="notImplemented()" class="ion-item-change-color">
|
||||
<ion-label>Presidente da República</ion-label>
|
||||
<ion-button slot="end">{{count_de_pr}}</ion-button>
|
||||
</ion-item>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ProcessesService } from 'src/app/services/processes.service';
|
||||
import { AlertService } from 'src/app/services/alert.service';
|
||||
|
||||
@Component({
|
||||
selector: 'app-gabinete-digital',
|
||||
@@ -11,7 +12,7 @@ export class GabineteDigitalPage implements OnInit {
|
||||
segment:string;
|
||||
showLoader: boolean;
|
||||
|
||||
constructor(private processesbackend:ProcessesService) { }
|
||||
constructor(private processesbackend:ProcessesService, private alertService: AlertService) { }
|
||||
|
||||
count_exp_dailywork : number;
|
||||
count_exp_pp : string;
|
||||
@@ -46,9 +47,9 @@ export class GabineteDigitalPage implements OnInit {
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
load()
|
||||
notImplemented()
|
||||
{
|
||||
|
||||
this.alertService.presentAlert('Funcionalidade em desenvolvimento');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user