This commit is contained in:
Bernat 2019-10-15 14:35:58 +02:00
commit c6a078d82d
3 changed files with 22 additions and 5 deletions

View File

@ -9,7 +9,7 @@ class Controller {
this.$translate = $translate;
this.accessToken = vnToken.token;
this.companyFk = vnConfig.companyFk;
this.vnConfig = vnConfig;
this.filter = {
include: {
relation: 'company',
@ -29,6 +29,17 @@ class Controller {
},
};
}
get companyFk() {
if (!this._companyFk)
return this.vnConfig.companyFk;
return this._companyFk;
}
set companyFk(id) {
this._companyFk = id;
}
setOrder(value) {
this.params.params.companyFk = value;
this.filter.where.companyFk = value;

View File

@ -33,7 +33,13 @@ module.exports = Self => {
const subordinate = await Worker.findById(data.workerFk);
return Self.rawSql('CALL vn.workerTimeControl_add(?, ?, ?, ?)', [
subordinate.userFk, null, data.timed, true]);
return Self.create({
userFk: subordinate.userFk,
timed: data.timed,
manual: 1
});
/* return Self.rawSql('CALL vn.workerTimeControl_add(?, ?, ?, ?)', [
subordinate.userFk, null, data.timed, true]); */
};
};

View File

@ -59,8 +59,8 @@ module.exports = {
percent(input) {
return new Intl.NumberFormat('es', {
style: 'percent',
minimumFractionDigits: 0,
maximumFractionDigits: 0
minimumFractionDigits: 2,
maximumFractionDigits: 2
}).format(parseFloat(input));
},
date(input) {