2021-10-08 19:29:21 +01:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2022-04-26 16:53:10 +01:00
|
|
|
import { ModalController } from '@ionic/angular';
|
2022-03-28 15:46:07 +01:00
|
|
|
import { PermissionService } from 'src/app/services/permission.service';
|
2021-10-08 19:29:21 +01:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-event-details-documents-options',
|
|
|
|
|
templateUrl: './event-details-documents-options.page.html',
|
|
|
|
|
styleUrls: ['./event-details-documents-options.page.scss'],
|
|
|
|
|
})
|
|
|
|
|
export class EventDetailsDocumentsOptionsPage implements OnInit {
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
public p: PermissionService,
|
|
|
|
|
private modalController: ModalController,
|
|
|
|
|
) {}
|
|
|
|
|
|
|
|
|
|
ngOnInit() {}
|
|
|
|
|
|
|
|
|
|
close() {
|
|
|
|
|
this.modalController.dismiss();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
goBack() {
|
|
|
|
|
this.modalController.dismiss();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async openBookMeetingModal() {
|
|
|
|
|
this.modalController.dismiss({component:'openBookMeetingModal', taskAction: ''});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async openExpedientActionsModal( taskAction: any) {
|
|
|
|
|
this.modalController.dismiss({component:'openExpedientActionsModal', taskAction});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async distartExpedientModal(body:any) {}
|
|
|
|
|
|
|
|
|
|
}
|