mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
remove console logs
This commit is contained in:
@@ -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(); */
|
||||
}
|
||||
|
||||
+1
-1
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user