refs #5918 refacotr: cambiado nombre variable
This commit is contained in:
parent
1f63648697
commit
9da5c4c1db
|
@ -113,21 +113,21 @@ class Controller extends Section {
|
||||||
}
|
}
|
||||||
|
|
||||||
isMailSended() {
|
isMailSended() {
|
||||||
const filter = {
|
const filterTimeControl = {
|
||||||
where: {
|
where: {
|
||||||
year: this._date.getFullYear(),
|
year: this._date.getFullYear(),
|
||||||
week: this.getWeekNumber(this._date)
|
week: this.getWeekNumber(this._date)
|
||||||
},
|
},
|
||||||
limit: 1
|
limit: 1
|
||||||
};
|
};
|
||||||
this.$http.get('WorkerTimeControlMails', {filter})
|
this.$http.get('WorkerTimeControlMails', {filterTimeControl})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if (!res.data.length) {
|
if (!res.data.length) {
|
||||||
this.canResend = false;
|
this.canResend = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const filter = {
|
const filterDepartment = {
|
||||||
where: {
|
where: {
|
||||||
workerFk: this.$params.id
|
workerFk: this.$params.id
|
||||||
},
|
},
|
||||||
|
@ -135,7 +135,7 @@ class Controller extends Section {
|
||||||
relation: 'department'
|
relation: 'department'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
this.$http.get('WorkerDepartments', {filter})
|
this.$http.get('WorkerDepartments', {filterDepartment})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
const department = res.data[0].department;
|
const department = res.data[0].department;
|
||||||
if (department.isTeleworking) this.canResend = true;
|
if (department.isTeleworking) this.canResend = true;
|
||||||
|
|
Loading…
Reference in New Issue