This commit is contained in:
Peter Maquiran
2021-07-23 10:35:53 +01:00
parent 875229b2dc
commit 7b2e16b200
10 changed files with 36 additions and 35 deletions
@@ -34,6 +34,7 @@
<div class="width-100" [ngSwitch]="segment"> <div class="width-100" [ngSwitch]="segment">
<ion-progress-bar type="indeterminate" *ngIf="skeletonLoader"></ion-progress-bar> <ion-progress-bar type="indeterminate" *ngIf="skeletonLoader"></ion-progress-bar>
<div *ngIf="diplomasList"> <div *ngIf="diplomasList">
<ion-list *ngSwitchCase="'validar'"> <ion-list *ngSwitchCase="'validar'">
<ion-item <ion-item
class="expediente ion-no-padding cursor-pointer" class="expediente ion-no-padding cursor-pointer"
@@ -129,7 +130,6 @@
</ion-list> </ion-list>
</div> </div>
</div> </div>
</ion-content> </ion-content>
@@ -248,7 +248,7 @@ export class GabineteDigitalPage implements OnInit {
let despachos = await this.processesbackend.GetTasksList("Despacho", false).toPromise(); let despachos = await this.processesbackend.GetTasksList("Despacho", false).toPromise();
this.count_desp_dailywork = Object.keys(despachos.filter(data => data.workflowInstanceDataFields.Status == "Active")).length; this.count_desp_dailywork = Object.keys(despachos.filter(data => data.workflowInstanceDataFields.Status == "Active")).length;
this.despachoStore.count this.despachoStore.count = this.count_desp_dailywork
let pareceres = await this.processesbackend.GetTasksList("Pedido de Parecer", false).toPromise(); let pareceres = await this.processesbackend.GetTasksList("Pedido de Parecer", false).toPromise();
let pareceresPr = await this.processesbackend.GetTasksList("Pedido de Parecer do Presidente", false).toPromise(); let pareceresPr = await this.processesbackend.GetTasksList("Pedido de Parecer do Presidente", false).toPromise();
+2 -1
View File
@@ -33,7 +33,8 @@ export class DespachoStoreService {
get count() { get count() {
return this._count return this._count
} }
set count(value) {
set count(value: number) {
this._count = value this._count = value
} }
+1 -1
View File
@@ -33,7 +33,7 @@ get list() {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }
@@ -41,7 +41,7 @@ export class EventoaprovacaoStoreService {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }
@@ -35,7 +35,7 @@ class ExpedienteStorageServiceService {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }
+1 -1
View File
@@ -32,7 +32,7 @@ get list() {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }
+1 -1
View File
@@ -32,7 +32,7 @@ get list() {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }
+2 -2
View File
@@ -42,14 +42,14 @@ export class PedidosStoreService {
get countparecer() { get countparecer() {
return this._countparecer return this._countparecer
} }
set countparecer(value) { set countparecer(value: number) {
this._countparecer = value this._countparecer = value
} }
get countdeferimento() { get countdeferimento() {
return this._countdeferiemnto return this._countdeferiemnto
} }
set countdeferimento(value) { set countdeferimento(value: number ) {
this._countdeferiemnto = value this._countdeferiemnto = value
} }
@@ -34,7 +34,7 @@ export class ToDayEventStorageService {
get count() { get count() {
return this._count return this._count
} }
set count(value) { set count(value: number) {
this._count = value this._count = value
} }