mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
Improve change to camelcase
This commit is contained in:
@@ -13,21 +13,21 @@ import { DespachosprStore } from 'src/app/store/despachospr-store.service';
|
|||||||
})
|
})
|
||||||
export class DocumentCounterService {
|
export class DocumentCounterService {
|
||||||
|
|
||||||
expedientegbstore = ExpedienteGdStore;
|
expedienteGbStore = ExpedienteGdStore;
|
||||||
pendentesstore = PendentesStore;
|
pendentesStore = PendentesStore;
|
||||||
despachoStore = DespachoStore;
|
despachoStore = DespachoStore;
|
||||||
eventoaprovacaostore = EventoAprovacaoStore;
|
eventoAprovacaoStore = EventoAprovacaoStore;
|
||||||
pedidosstore = PedidosStore;
|
pedidosStore = PedidosStore;
|
||||||
expedienteprstore = ExpedienteprStore;
|
expedientePrStore = ExpedienteprStore;
|
||||||
despachoprstore = DespachosprStore;
|
despachoPrStore = DespachosprStore;
|
||||||
|
|
||||||
constructor() { }
|
constructor() { }
|
||||||
|
|
||||||
// falta a contagem dos deplomas
|
// falta a contagem dos deplomas
|
||||||
get mdTotalDocument() {
|
get mdTotalDocument() {
|
||||||
return this.despachoStore.count + this.expedientegbstore.count + this.pedidosstore.countdeferimento
|
return this.despachoStore.count + this.expedienteGbStore.count + this.pedidosStore.countdeferimento
|
||||||
+ this.pedidosstore.countparecer + this.expedienteprstore.count + this.despachoprstore.count + this.pendentesstore.count
|
+ this.pedidosStore.countparecer + this.expedientePrStore.count + this.despachoPrStore.count + this.pendentesStore.count
|
||||||
+ this.eventoaprovacaostore.count
|
+ this.eventoAprovacaoStore.count
|
||||||
}
|
}
|
||||||
|
|
||||||
get prTotalDocument() {
|
get prTotalDocument() {
|
||||||
|
|||||||
@@ -82,8 +82,6 @@ export class AgendaPage implements OnInit {
|
|||||||
/* List of events of our calendar */
|
/* List of events of our calendar */
|
||||||
eventSource : eventSource[] = []
|
eventSource : eventSource[] = []
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* The title of the calendar */
|
/* The title of the calendar */
|
||||||
viewTitle: string;
|
viewTitle: string;
|
||||||
|
|
||||||
@@ -590,7 +588,6 @@ export class AgendaPage implements OnInit {
|
|||||||
if(this.profile == "mdgpr" && this.loggeduser.Profile == 'MDGPR') {
|
if(this.profile == "mdgpr" && this.loggeduser.Profile == 'MDGPR') {
|
||||||
this.eventService.getAllMdEvents(momentG(new Date(startTime),'yyyy-MM-dd HH:mm:ss'), momentG(new Date(endTime),'yyyy-MM-dd 23:59:59')).then((res:any) => {
|
this.eventService.getAllMdEvents(momentG(new Date(startTime),'yyyy-MM-dd HH:mm:ss'), momentG(new Date(endTime),'yyyy-MM-dd 23:59:59')).then((res:any) => {
|
||||||
|
|
||||||
|
|
||||||
this.calendarService.removeRange(startTime, endTime, 'md')
|
this.calendarService.removeRange(startTime, endTime, 'md')
|
||||||
|
|
||||||
const eventsList = res.filter(data => data.CalendarName == "Oficial");
|
const eventsList = res.filter(data => data.CalendarName == "Oficial");
|
||||||
|
|||||||
@@ -422,10 +422,8 @@ export class EditEventPage implements OnInit {
|
|||||||
this.loadedEventAttachments[index]['remove'] = true
|
this.loadedEventAttachments[index]['remove'] = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async getDoc() {
|
async getDoc() {
|
||||||
|
|
||||||
const modal = await this.modalController.create({
|
const modal = await this.modalController.create({
|
||||||
|
|||||||
Reference in New Issue
Block a user