mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
Remove relevant console log,
This commit is contained in:
@@ -71,7 +71,7 @@ export class PedidoPage implements OnInit {
|
||||
this.loggeduser = authService.ValidatedUser;
|
||||
|
||||
this.activatedRoute.paramMap.subscribe(params => {
|
||||
// console.log(params["params"]);
|
||||
//
|
||||
|
||||
if (params["params"].SerialNumber) {
|
||||
this.serialnumber = params["params"].SerialNumber;
|
||||
@@ -105,7 +105,7 @@ export class PedidoPage implements OnInit {
|
||||
this.processes.GetTask(this.serialnumber).subscribe(res => {
|
||||
|
||||
this.fulltask = res
|
||||
console.log('FULLTAK ONLINe', this.fulltask);
|
||||
|
||||
|
||||
if (res.workflowDisplayName == 'Pedido de Parecer' || res.workflowDisplayName == 'Pedido de Parecer do Presidente') {
|
||||
|
||||
@@ -130,7 +130,7 @@ export class PedidoPage implements OnInit {
|
||||
"activityInstanceName": res.activityInstanceName,
|
||||
"Status": res.workflowInstanceDataFields.Status,
|
||||
}
|
||||
console.log(this.task);
|
||||
|
||||
this.updateProcess(res);
|
||||
}
|
||||
else if (res.workflowDisplayName == 'Pedido de Deferimento') {
|
||||
@@ -207,7 +207,7 @@ export class PedidoPage implements OnInit {
|
||||
} else {
|
||||
this.sqliteservice.getProcessById(this.serialnumber).then((process) => {
|
||||
|
||||
console.log('PROCESS BY ID', process, this.serialnumber)
|
||||
|
||||
|
||||
let fulltak = {
|
||||
Documents: JSON.parse(process[0].Documents) || [],
|
||||
@@ -227,7 +227,7 @@ export class PedidoPage implements OnInit {
|
||||
}
|
||||
|
||||
this.fulltask = fulltak;
|
||||
console.log('FULLTAK OFFLINE', this.fulltask);
|
||||
|
||||
|
||||
if (process[0].workflowDisplayName == 'Pedido de Parecer' || process[0].workflowDisplayName == 'Pedido de Parecer do Presidente') {
|
||||
let date = new Date(process[0].taskStartDate);
|
||||
@@ -296,7 +296,7 @@ export class PedidoPage implements OnInit {
|
||||
getDocumentDetails(forlderId: string, applicationId: string) {
|
||||
this.processes.GetDocumentDetails(forlderId, applicationId).subscribe(res => {
|
||||
this.attachments = res.Documents;
|
||||
console.log(res['Documents']);
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
@@ -453,7 +453,7 @@ export class PedidoPage implements OnInit {
|
||||
});
|
||||
await modal.present();
|
||||
modal.onDidDismiss().then(res => {
|
||||
console.log('Modal closed');
|
||||
|
||||
this.goBack();
|
||||
});
|
||||
}
|
||||
@@ -522,7 +522,7 @@ export class PedidoPage implements OnInit {
|
||||
// }
|
||||
|
||||
async distartExpedientModal() {
|
||||
console.log(this.fulltask);
|
||||
|
||||
const modal = await this.modalController.create({
|
||||
component: DiscartExpedientModalPage,
|
||||
componentProps: {
|
||||
@@ -538,7 +538,7 @@ export class PedidoPage implements OnInit {
|
||||
modal.onDidDismiss().then(res => {
|
||||
if (res['data'] == 'close') {
|
||||
this.close();
|
||||
/* console.log('2Expedient Discard closed2');
|
||||
/*
|
||||
this.close();
|
||||
this.openMenu(); */
|
||||
}
|
||||
@@ -547,7 +547,7 @@ export class PedidoPage implements OnInit {
|
||||
}
|
||||
|
||||
async openDelegarModal(task: any) {
|
||||
console.log(task);
|
||||
|
||||
|
||||
let classs;
|
||||
if (window.innerWidth <= 800) {
|
||||
@@ -596,7 +596,7 @@ export class PedidoPage implements OnInit {
|
||||
}
|
||||
|
||||
async openDarParecer(task: any) {
|
||||
console.log(task);
|
||||
|
||||
|
||||
let classs;
|
||||
if (window.innerWidth < 701) {
|
||||
|
||||
@@ -119,7 +119,7 @@ export class PedidosPage implements OnInit {
|
||||
}
|
||||
|
||||
openExpedientDetailPage(data) {
|
||||
console.log(data);
|
||||
|
||||
this.openExpedientDetail.emit(data);
|
||||
}
|
||||
|
||||
@@ -136,7 +136,7 @@ export class PedidosPage implements OnInit {
|
||||
let parecer = await this.processes.GetTasksList("Pedido de Parecer", false).toPromise();
|
||||
let parecerPr = await this.processes.GetTasksList("Pedido de Parecer do Presidente", false).toPromise();
|
||||
|
||||
console.log(parecerPr);
|
||||
|
||||
|
||||
this.skeletonLoader = false
|
||||
|
||||
@@ -177,7 +177,7 @@ export class PedidosPage implements OnInit {
|
||||
|
||||
this.skeletonLoader = false
|
||||
|
||||
console.log(result);
|
||||
|
||||
|
||||
this.deferimentoList = [];
|
||||
|
||||
@@ -257,7 +257,7 @@ export class PedidosPage implements OnInit {
|
||||
}
|
||||
})
|
||||
this.listToPresentparecerList = this.sortService.sortArrayISODate(parecerlist);
|
||||
console.log('parecer', process)
|
||||
|
||||
})
|
||||
|
||||
this.sqliteservice.getprocessByworkflow("Pedido de Deferimento").then((process: any[]) => {
|
||||
@@ -284,7 +284,7 @@ export class PedidosPage implements OnInit {
|
||||
}
|
||||
})
|
||||
this.listToPresentdeferimentoList = this.sortService.sortArrayISODate(deferimentolist);
|
||||
console.log('deferimento', process)
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user