mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
Issue
A contagem dos itens no icone "Inicio" e "Gabinete" não correspondem ao número de eventos e correspondências disponiveis
This commit is contained in:
@@ -31,7 +31,7 @@ export class HomePage implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
/* //Initialize profile as mdgpr
|
//Initialize profile as mdgpr
|
||||||
|
|
||||||
let date = new Date();
|
let date = new Date();
|
||||||
date.setMonth(date.getMonth() + 1);
|
date.setMonth(date.getMonth() + 1);
|
||||||
@@ -55,7 +55,8 @@ export class HomePage implements OnInit {
|
|||||||
this.processesbackend.GetTasksList("Expediente", true).subscribe(result => {
|
this.processesbackend.GetTasksList("Expediente", true).subscribe(result => {
|
||||||
this.totalExpediente = result;
|
this.totalExpediente = result;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
PushNotifications.addListener('registrationError', (error: any) => {
|
PushNotifications.addListener('registrationError', (error: any) => {
|
||||||
alert('Error on registration: ' + JSON.stringify(error));
|
alert('Error on registration: ' + JSON.stringify(error));
|
||||||
});
|
});
|
||||||
@@ -225,7 +226,7 @@ export class HomePage implements OnInit {
|
|||||||
modal.onDidDismiss();
|
modal.onDidDismiss();
|
||||||
} */
|
} */
|
||||||
|
|
||||||
/* async viewPublications(folderId) {
|
/* async viewPublications(folderId) {
|
||||||
const modal = await this.modalController.create({
|
const modal = await this.modalController.create({
|
||||||
component: ViewPublicationsPage,
|
component: ViewPublicationsPage,
|
||||||
enterAnimation,
|
enterAnimation,
|
||||||
@@ -238,8 +239,8 @@ export class HomePage implements OnInit {
|
|||||||
});
|
});
|
||||||
await modal.present();
|
await modal.present();
|
||||||
modal.onDidDismiss();
|
modal.onDidDismiss();
|
||||||
}
|
} */
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import { ViewEventPage } from '../agenda/view-event/view-event.page';
|
|||||||
import { ExpedientePage } from '../gabinete-digital/expediente/expediente.page';
|
import { ExpedientePage } from '../gabinete-digital/expediente/expediente.page';
|
||||||
import { ExpedienteDetailPage } from '../gabinete-digital/expediente/expediente-detail/expediente-detail.page';
|
import { ExpedienteDetailPage } from '../gabinete-digital/expediente/expediente-detail/expediente-detail.page';
|
||||||
import { GabineteDigitalPage } from '../gabinete-digital/gabinete-digital.page';
|
import { GabineteDigitalPage } from '../gabinete-digital/gabinete-digital.page';
|
||||||
|
import { EditEventPage } from '../agenda/edit-event/edit-event.page';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-events',
|
selector: 'app-events',
|
||||||
@@ -343,6 +344,24 @@ export class EventsPage implements OnInit {
|
|||||||
modal.onDidDismiss();
|
modal.onDidDismiss();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async openEditEventModal(){
|
||||||
|
let classs;
|
||||||
|
if( window.innerWidth <= 800){
|
||||||
|
classs = 'modal'
|
||||||
|
} else {
|
||||||
|
classs = 'modal modal-desktop'
|
||||||
|
}
|
||||||
|
const modal = await this.modalController.create({
|
||||||
|
component: EditEventPage,
|
||||||
|
componentProps:{
|
||||||
|
profile: this.profile,
|
||||||
|
},
|
||||||
|
cssClass: classs,
|
||||||
|
});
|
||||||
|
await modal.present();
|
||||||
|
modal.onDidDismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user