Merged in bugfix/PMCORE-3526 (pull request #8281)

PMCORE-3526

Approved-by: Rodrigo Quelca
This commit is contained in:
Henry Jonathan Quispe Quispe
2021-11-16 22:16:40 +00:00
committed by Paula Quispe

View File

@@ -467,11 +467,11 @@
mounted() { mounted() {
this.$nextTick(function () { this.$nextTick(function () {
let promise = null; let promise = null;
this.getTimeZoneList();
if ("USR_UID" in window && window.USR_UID !== "") { if ("USR_UID" in window && window.USR_UID !== "") {
this.editing = true; this.editing = true;
promise = this.load(); promise = this.load();
promise.then(response => { promise.then(() => {
response;
this.loadServices(); this.loadServices();
}); });
} else { } else {
@@ -851,7 +851,6 @@
loadServices() { loadServices() {
this.getCountryList(); this.getCountryList();
this.getAvailableCalendars(); this.getAvailableCalendars();
this.getTimeZoneList();
this.getLanguagesList(); this.getLanguagesList();
this.getDefaultMainMenuOptionList(); this.getDefaultMainMenuOptionList();
this.getDefaultCasesMenuOptionList(); this.getDefaultCasesMenuOptionList();