Correct serialNumber

This commit is contained in:
tiago.kayaya
2021-02-10 18:34:46 +01:00
parent 2d5bfbc524
commit 0ab08473ba
16 changed files with 20 additions and 22 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -421,9 +421,6 @@ let HomePage = class HomePage {
//this.router.navigate(['/home/', service, idObject, 'home']);
this.viewEventDetail(idObject);
}
else if (service === "gabinete-digital" && object != "expediente" || object != "event-list") {
this.router.navigate(['/home/gabinete-digital']);
}
else if (service === "gabinete-digital" && object === "expediente") {
this.viewExpedientDetail(idObject);
}
File diff suppressed because one or more lines are too long
@@ -690,8 +690,6 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
if (service === "agenda") {
//this.router.navigate(['/home/', service, idObject, 'home']);
_this.viewEventDetail(idObject);
} else if (service === "gabinete-digital" && object != "expediente" || object != "event-list") {
_this.router.navigate(['/home/gabinete-digital']);
} else if (service === "gabinete-digital" && object === "expediente") {
_this.viewExpedientDetail(idObject);
} else if (service === "gabinete-digital" && object === "event-list") {
File diff suppressed because one or more lines are too long
@@ -268,11 +268,11 @@ let PublicationsPage = class PublicationsPage {
}
});
}
doRefresh(event) {
doRefresh() {
/* this.getActions(); */
setTimeout(() => {
this.getActions();
event.target.complete();
/* event.target.complete(); */
}, 2000);
}
getActions() {
@@ -315,7 +315,7 @@ let PublicationsPage = class PublicationsPage {
});
yield modal.present();
modal.onDidDismiss().then(() => {
this.doRefresh(event);
this.doRefresh();
});
});
}
File diff suppressed because one or more lines are too long
@@ -490,14 +490,14 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
}
}, {
key: "doRefresh",
value: function doRefresh(event) {
value: function doRefresh() {
var _this2 = this;
/* this.getActions(); */
setTimeout(function () {
_this2.getActions();
/* event.target.complete(); */
event.target.complete();
}, 2000);
}
}, {
@@ -561,7 +561,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
case 5:
modal.onDidDismiss().then(function () {
_this4.doRefresh(event);
_this4.doRefresh();
});
case 6:
File diff suppressed because one or more lines are too long