This commit is contained in:
Peter Maquiran
2023-04-18 14:38:32 +01:00
parent 45a4014307
commit 27fd1d8765
4 changed files with 17 additions and 10 deletions
@@ -130,8 +130,9 @@ export class DespachoPrPage implements OnInit {
"TaskStartDate": res.taskStartDate
}
this.fulltask = res;
this.updateProcessOnDB(res);
console.log('this.fulltask', this.fulltask)
let thedate = new Date(this.task.CreateDate);
this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]);
@@ -416,13 +417,15 @@ export class DespachoPrPage implements OnInit {
} else {
classs = 'modal modal-desktop showAsideOptions'
}
// console.log('this.fulltask send', this.fulltask)
const modal = await this.modalController.create({
component: CreateProcessPage,
componentProps: {
taskAction: taskAction,
task: task,
profile: this.profile,
fulltak: this.fulltask
fulltask: this.fulltask
},
cssClass: classs,
});