remove console logs

This commit is contained in:
Peter Maquiran
2023-09-22 17:34:39 +01:00
parent e4bba2e68b
commit 6033ecdfb0
6 changed files with 31 additions and 27 deletions
@@ -115,7 +115,7 @@ export class DespachoPage implements OnInit {
this.processes.GetTask(serial).subscribe((res: fullTask) => {
this.TaskService.loadDiplomas();
let stringDraft = res.workflowInstanceDataFields.DraftIds;
console.log('sring to array', stringDraft)
// console.log('sring to array', stringDraft)
let split_stringDraft = stringDraft?.split(";").filter(Boolean);
this.mergedArray = []
@@ -148,7 +148,7 @@ export class DespachoPage implements OnInit {
this.fulltask = res;
this.getDocumentPdf(this.fulltask.Documents)
console.log('All', this.mergedArray)
let thedate = new Date(this.task.CreateDate);
@@ -201,7 +201,7 @@ export class DespachoPage implements OnInit {
}
getDraft(split_stringDraft: string[]) {
split_stringDraft.forEach(element => {
console.log('List of ids', element)
// console.log('List of ids', element)
this.processes.GetDraftByID(element).subscribe((resd) => {
let object = {
"ApplicationId": "",
@@ -218,7 +218,7 @@ export class DespachoPage implements OnInit {
"status": resd.data.status,
}
this.mergedArray.push(object)
console.log('List of draff', resd)
// console.log('List of draff', resd)
})
});
@@ -486,9 +486,9 @@ export class DespachoPage implements OnInit {
if(res.data?.action != 'cancel') {
this.goBack();
}
}, (error) => {
console.log(error)
// console.log(error)
});
await modal.present();
@@ -562,7 +562,7 @@ export class DespachoPage implements OnInit {
modal.onDidDismiss().then(res => {
if (res['data'] == 'close') {
this.close();
/*
/*
this.close();
this.openMenu(); */
}
@@ -516,7 +516,7 @@ export class BookMeetingModalPage implements OnInit {
if (res) {
const data = res.data;
this.documents.push(data.selected);
console.log(this.documents)
// console.log(this.documents)
}
}, (error) => {
console.log(error)