Bug on expediente details on web fixed

This commit is contained in:
Eudes Inácio
2021-10-30 16:50:04 +01:00
parent 5dc41a1ff0
commit cd88f49469
@@ -106,6 +106,12 @@ export class ExpedienteDetailPage implements OnInit {
this.toastService.presentToast('Não foi possível fazer login'); this.toastService.presentToast('Não foi possível fazer login');
} }
updateProcessDB(res) {
if (this.platform.is('desktop') || this.platform.is('mobileweb')) {
} else {
this.sqliteservice.updateProcess(res)
}
}
getFromDB() { getFromDB() {
this.platform.ready().then(() => { this.platform.ready().then(() => {
@@ -316,7 +322,7 @@ export class ExpedienteDetailPage implements OnInit {
} }
this.fulltask = res; this.fulltask = res;
this.sqliteservice.updateProcess(res) this.updateProcessDB(res)
let thedate = new Date(this.task.CreateDate); let thedate = new Date(this.task.CreateDate);
this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]); this.customDate = this.days[thedate.getDay()] + ", " + thedate.getDate() + " de " + (this.months[thedate.getMonth()]);