5918-worker.time-control_resend #1685

Merged
alexm merged 14 commits from 5918-worker.time-control_resend into dev 2023-10-18 09:10:19 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 9da5c4c1db - Show all commits

View File

@ -113,21 +113,21 @@ class Controller extends Section {
}
isMailSended() {
const filter = {
const filterTimeControl = {
where: {
year: this._date.getFullYear(),
week: this.getWeekNumber(this._date)
vicent marked this conversation as resolved Outdated

ací al final no pugueres posar el workerFk?

ací al final no pugueres posar el workerFk?

Teu havia possat en la nota de ahir:

No se envía el workerFk, pq puede que ese workerFk no tenga ningún registro. Se ha solucionado poniendo un limit 1 en la petición.

Just lo que soluciona esta tarea es poder enviar el registro horario aunq no se li haja enviat la ninguna volta.

Teu havia possat en la nota de ahir: No se envía el workerFk, pq puede que ese workerFk no tenga ningún registro. Se ha solucionado poniendo un limit 1 en la petición. Just lo que soluciona esta tarea es poder enviar el registro horario aunq no se li haja enviat la ninguna volta.
},
vicent marked this conversation as resolved Outdated

enviar el workerFk

enviar el workerFk

No se envía el workerFk, pq puede que ese workerFk no tenga ningún registro. Se ha solucionado poniendo un limit 1 en la petición.

No se envía el workerFk, pq puede que ese workerFk no tenga ningún registro. Se ha solucionado poniendo un limit 1 en la petición.
limit: 1
};
this.$http.get('WorkerTimeControlMails', {filter})
this.$http.get('WorkerTimeControlMails', {filterTimeControl})
.then(res => {
if (!res.data.length) {
this.canResend = false;
return;
}
const filter = {
const filterDepartment = {
where: {
workerFk: this.$params.id
},
@ -135,7 +135,7 @@ class Controller extends Section {
relation: 'department'
}
};
this.$http.get('WorkerDepartments', {filter})
this.$http.get('WorkerDepartments', {filterDepartment})
.then(res => {
const department = res.data[0].department;
if (department.isTeleworking) this.canResend = true;