Compare commits

...

1 Commits

Author SHA1 Message Date
Vicent Llopis f0d532e4bc a
gitea/salix/pipeline/head This commit looks good Details
2023-07-13 15:02:27 +02:00
2 changed files with 8 additions and 6 deletions

View File

@ -33,12 +33,14 @@ class Controller extends ModuleCard {
};
this.$http.get(`Workers/${this.$params.id}`, {filter})
.then(res => this.worker = res.data)
.then(() =>
.then(res => {
this.$http.get(`Workers/${this.$params.id}/activeContract`)
.then(res => {
if (res.data) this.worker.hasWorkCenter = res.data.workCenterFk;
}));
.then(activeContract => {
const worker = res.data;
if (activeContract.data) worker.hasWorkCenter = res.data.workCenterFk;
this.worker = worker;
});
});
}
}

View File

@ -151,7 +151,7 @@ class Controller extends Section {
}
getAbsences() {
if (!this.worker.hasWorkerCenter) return;
if (!this.worker.hasWorkCenter) return;
const fullYear = this.started.getFullYear();
let params = {
workerFk: this.$params.id,