This commit is contained in:
Peter Maquiran
2021-07-16 19:32:13 +01:00
parent c028e4e6f5
commit 050f84bc8e
13 changed files with 49 additions and 48 deletions
@@ -199,7 +199,7 @@ export class RequestOptionsPage implements OnInit {
await modal.present();
modal.onDidDismiss().then(res => {
modal.onDidDismiss().then(async (res) => {
const DocumentToSave = res.data.documents.map((e) => {
@@ -218,10 +218,10 @@ export class RequestOptionsPage implements OnInit {
if(res.data){
if(actionName == 'Solicitar Reapreciação') {
this.repreciar(res.data.note, docs);
await this.repreciar(res.data.note, docs);
}
else if(actionName == 'Arquivar'){
this.arquivar(res.data.note, docs);
await this.arquivar(res.data.note, docs);
}
}
});