This commit is contained in:
tiago.kayaya
2021-07-13 09:31:42 +01:00
parent f457952220
commit f1d706a0d5
4 changed files with 32 additions and 40 deletions
@@ -33,10 +33,10 @@ export class ViewEventPage implements OnInit {
customDate:any;
today:any;
months = ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"];
days = ["Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"];
documents: Attachment[] = [];
dicIndex = 0;
@@ -54,7 +54,7 @@ export class ViewEventPage implements OnInit {
private modalController: ModalController,
public popoverController: PopoverController,
private toastService: ToastService,
)
)
{
this.isEventEdited = false;
this.loadedEvent = new Event();
@@ -63,19 +63,19 @@ export class ViewEventPage implements OnInit {
}
ngOnInit() {
/* console.log(this.eventId); */
this.loadEvent();
//this.getAttachments();
}
ngOnChanges(changes: any): void {
this.loadedAttachments = null;
this.loadEvent();
}
openOptions(){
}
docIndex(index: number) {
@@ -84,7 +84,7 @@ export class ViewEventPage implements OnInit {
close(){
console.log(this.isEventEdited);
this.viewEventDetailDismiss.emit({
type: 'close'
})
@@ -93,7 +93,7 @@ export class ViewEventPage implements OnInit {
loadEvent(){
this.eventsService.getEvent(this.eventId).subscribe(res => {
this.loadedEvent = res;
// console.log(res);
console.log(res);
this.today = new Date(res.StartDate);
// console.log(new Date(this.today));
this.customDate = this.days[this.today.getDay()]+ ", " + this.today.getDate() +" de " + ( this.months[this.today.getMonth()]);
@@ -102,11 +102,11 @@ export class ViewEventPage implements OnInit {
}
deleteEvent(){
this.eventsService.deleteEvent(this.loadedEvent.EventId, 0).subscribe(async () =>
this.eventsService.deleteEvent(this.loadedEvent.EventId, 0).subscribe(async () =>
{
this.toastService.successMessage('Evento apagado');
this.close();
});
});
}
getAttachments(eventId){
@@ -122,14 +122,14 @@ export class ViewEventPage implements OnInit {
event: this.loadedEvent
})
}
viewDocument(sourceId){
this.processes.GetDocumentUrl(sourceId, '8').subscribe(res=>{
console.log(res);
const url: string = res.replace("webTRIX.Viewer","webTRIX.Viewer.Branch1");
const browser = this.iab.create(url,"_blank");
browser.show();
});
}
@@ -149,9 +149,9 @@ export class ViewEventPage implements OnInit {
taskStartDate: doc.CreateDate,
isEvent: true,
workflowInstanceDataFields: {
FsId: doc.ApplicationId,
FsId: doc.ApplicationId,
FolderID: null,
DocId: doc.SourceId,
DocId: doc.SourceId,
Subject: doc.SourceName
},
}
@@ -170,7 +170,7 @@ export class ViewEventPage implements OnInit {
console.log(res['data']);
if(res['data']=='openDiscart'){
console.log('open discart');
// this.distartExpedientModal();
}
@@ -187,13 +187,13 @@ export class ViewEventPage implements OnInit {
taskStartDate: doc.CreateDate,
isEvent: true,
workflowInstanceDataFields: {
FsId: doc.ApplicationId,
FsId: doc.ApplicationId,
FolderID: null,
DocId: doc.SourceId,
DocId: doc.SourceId,
Subject: doc.SourceName
},
}
let classs;
if( window.innerWidth <= 800){
classs = 'book-meeting-modal modal modal-desktop'
@@ -213,7 +213,7 @@ export class ViewEventPage implements OnInit {
}
async openTaskOptions() {
const doc = this.loadedAttachments[ this.dicIndex];
@@ -223,9 +223,9 @@ export class ViewEventPage implements OnInit {
taskStartDate: doc.CreateDate,
isEvent: true,
workflowInstanceDataFields: {
FsId: doc.ApplicationId,
FsId: doc.ApplicationId,
FolderID: null,
DocId: doc.SourceId,
DocId: doc.SourceId,
Subject: doc.SourceName
},
}
@@ -242,4 +242,4 @@ export class ViewEventPage implements OnInit {
return await popover.present();
}
}
}