Edit process to approve

This commit is contained in:
Peter Maquiran
2021-05-04 15:44:48 +01:00
parent ab1954255e
commit 6a3fda279e
16 changed files with 203 additions and 102 deletions
@@ -180,9 +180,10 @@ export class ApproveEventComponent implements OnInit {
async editar(serialNumber: string) {
const modal = await this.modalController.create({
component: EditEventToApproveComponent,
componentProps:{
componentProps: {
serialNumber: serialNumber,
InstanceId:this.InstanceId
},
@@ -193,7 +194,8 @@ export class ApproveEventComponent implements OnInit {
await modal.present();
modal.onDidDismiss().then(res => {
this.getTask();
this.getAttachments();
});
}