mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
commit
This commit is contained in:
+5
-2
@@ -374,7 +374,7 @@ export class BookMeetingModalPage implements OnInit {
|
||||
backdropDismiss: false
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
|
||||
|
||||
modal.onDidDismiss().then((data) => {
|
||||
|
||||
@@ -391,6 +391,8 @@ export class BookMeetingModalPage implements OnInit {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
|
||||
} else {
|
||||
this.showAttendees = true;
|
||||
}
|
||||
@@ -450,12 +452,13 @@ export class BookMeetingModalPage implements OnInit {
|
||||
backdropDismiss: false
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(
|
||||
()=> {}
|
||||
, (error) => {
|
||||
console.log(error)
|
||||
})
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
async getDoc() {
|
||||
|
||||
+8
-3
@@ -507,7 +507,7 @@ export class ExpedientTaskModalPage implements OnInit {
|
||||
backdropDismiss: false
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
|
||||
|
||||
modal.onDidDismiss().then((data) => {
|
||||
|
||||
@@ -523,6 +523,8 @@ export class ExpedientTaskModalPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
} else {
|
||||
this.showAttendees = true
|
||||
}
|
||||
@@ -585,9 +587,10 @@ export class ExpedientTaskModalPage implements OnInit {
|
||||
cssClass: classs,
|
||||
backdropDismiss: false
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then((res)=>{
|
||||
});
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
|
||||
@@ -601,7 +604,7 @@ export class ExpedientTaskModalPage implements OnInit {
|
||||
select: true
|
||||
}
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then((res)=>{
|
||||
if(res){
|
||||
const data = res.data;
|
||||
@@ -610,6 +613,8 @@ export class ExpedientTaskModalPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
removeAttachment(index: number){
|
||||
|
||||
+20
-7
@@ -289,7 +289,7 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
//backdropDismiss: true
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
|
||||
|
||||
modal.onDidDismiss().then(res => {
|
||||
|
||||
@@ -319,6 +319,8 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
subscribeEventTrigger(value) {
|
||||
@@ -465,7 +467,7 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
findOnly: [8]
|
||||
}
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(async (res) => {
|
||||
if (res) {
|
||||
const data = res.data;
|
||||
@@ -507,6 +509,8 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
async openExpedientActionsModal(taskAction: any, task: any) {
|
||||
@@ -525,7 +529,7 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
},
|
||||
cssClass: classs,
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(async (res) => {
|
||||
let body = res['data'];
|
||||
if (res['data']) {
|
||||
@@ -545,6 +549,8 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
async distartExpedientModal(body: any) {
|
||||
@@ -556,7 +562,6 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
backdropDismiss: false
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
modal.onDidDismiss().then(async (res) => {
|
||||
|
||||
|
||||
@@ -629,6 +634,8 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
async openBookMeetingModal(task: any) {
|
||||
@@ -648,12 +655,14 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
cssClass: classs,
|
||||
backdropDismiss: false
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(res => {
|
||||
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
goToEvent(eventId: any) {
|
||||
@@ -672,13 +681,15 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
cssClass: 'modal modal-desktop',
|
||||
backdropDismiss: false
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then((res) => {
|
||||
if (res) {
|
||||
}
|
||||
}, (error) => {
|
||||
console.log(error)
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
async openOptions(taskAction?: any) {
|
||||
@@ -724,12 +735,14 @@ export class ExpedienteDetailPage implements OnInit {
|
||||
task: this.task
|
||||
},
|
||||
});
|
||||
await modal.present();
|
||||
|
||||
modal.onDidDismiss().then(
|
||||
()=>{},
|
||||
(error) => {
|
||||
console.log(error)
|
||||
})
|
||||
|
||||
await modal.present();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user