This commit is contained in:
Peter Maquiran
2021-06-30 09:45:56 +01:00
parent fb367b40ae
commit 22bafcc357
9 changed files with 139 additions and 197 deletions
@@ -52,16 +52,14 @@ export class ApproveEventPage implements OnInit {
private iab: InAppBrowser,
private animationController: AnimationController,
private toastService: ToastService
) {
// $$$
) {
// Event to approve detailss
}
ngOnInit() {
this.getTask();
this.getAttachments();
// console.log(this.showAside);
}
notImplemented() {
@@ -85,7 +83,7 @@ export class ApproveEventPage implements OnInit {
})
}
async approveTask(serialNumber:string){
async approveTask(serialNumber:string) {
let body = { "serialNumber": serialNumber, "action": "Aprovar" }
console.log(body);
@@ -108,8 +106,6 @@ export class ApproveEventPage implements OnInit {
}); */
}
async rejectTask(serialNumber:string) {
let body = { "serialNumber": serialNumber, "action": "Rejeitar" }
@@ -124,13 +120,13 @@ export class ApproveEventPage implements OnInit {
}
}
async getAttachments(){
async getAttachments() {
this.loadedAttachments = await this.attachmentsService.getAttachmentsById(this.InstanceId).toPromise();
}
viewDocument(sourceId){
viewDocument(sourceId) {
this.processes.GetDocumentUrl(sourceId, '8').subscribe(res=>{
/* console.log(res); */
const url: string = res.replace("webTRIX.Viewer","webTRIX.Viewer.Branch1");
@@ -150,7 +146,7 @@ export class ApproveEventPage implements OnInit {
return await popover.present();
}
async emendTask(serialNumber:string){
async emendTask(serialNumber:string) {
console.log('Desktop');
const modal = await this.modalController.create({
@@ -193,7 +189,7 @@ export class ApproveEventPage implements OnInit {
//this.goBack();
}
goToEventsToApprove(){
goToEventsToApprove() {
let navigationExtras: NavigationExtras = {
queryParams: {
"eventos": true,
@@ -203,32 +199,10 @@ export class ApproveEventPage implements OnInit {
}
/** @description edit event to aprove */
async editar(serialNumber: string) {
if(window.innerWidth > 800){
console.log('DESTOP');
this.EditApproveEventDismiss.emit();
}
else{
/* const modal = await this.modalController.create({
component: EditEventToApproveComponent,
componentProps: {
serialNumber: serialNumber,
InstanceId:this.InstanceId
},
cssClass: 'modal modal-desktop',
// backdropDismiss: false
});
await modal.present();
modal.onDidDismiss().then(res => {
this.getTask();
this.getAttachments();
}); */
}
this.EditApproveEventDismiss.emit();
}
}