This commit is contained in:
tiago.kayaya
2021-04-30 12:07:51 +01:00
parent 84dad542aa
commit ba29fc2f65
3 changed files with 24 additions and 11 deletions
@@ -112,11 +112,15 @@ export class BookMeetingModalPage implements OnInit {
}
console.log(this.postData);
this.calendarService.postExpedientEvent(this.task.DocId, this.postData, "md",this.task.SerialNumber, this.task.FsId);
if(this.task.FsId == '8'){
this.calendarService.postExpedientEvent(this.task.DocId, this.postData, "md",this.task.SerialNumber, this.task.FsId);
this.distartExpedientModal();
}
else if(this.task.FsId == '361'){
this.calendarService.createTaskEvent(this.task.FolderId, this.postData, "md",this.task.SerialNumber, this.task.FsId);
}
this.close();
}