salix/modules/worker/back/methods/worker-calendar/absences.js

141 lines
4.0 KiB
JavaScript
Raw Normal View History

2019-03-22 07:28:57 +00:00
const UserError = require('vn-loopback/util/user-error');
module.exports = Self => {
Self.remoteMethodCtx('absences', {
description: 'Returns an array of absences from an specified worker',
accepts: [{
arg: 'workerFk',
type: 'Number',
required: true,
},
{
arg: 'started',
type: 'Date',
required: true,
},
{
arg: 'ended',
type: 'Date',
required: true,
}],
returns: [{
arg: 'calendar'
},
{
2019-04-23 11:29:52 +00:00
arg: 'absences',
type: 'Number'
2019-03-22 07:28:57 +00:00
},
{
2019-04-23 11:29:52 +00:00
arg: 'holidays',
type: 'Number'
2019-03-22 07:28:57 +00:00
}],
http: {
path: `/absences`,
verb: 'GET'
}
});
2019-06-21 07:43:47 +00:00
Self.absences = async(ctx, workerFk, yearStarted, yearEnded) => {
2019-03-22 07:28:57 +00:00
const models = Self.app.models;
2019-05-17 11:27:51 +00:00
const isSubordinate = await models.Worker.isSubordinate(ctx, workerFk);
2019-03-22 07:28:57 +00:00
2019-05-17 11:27:51 +00:00
if (!isSubordinate)
2019-03-22 07:28:57 +00:00
throw new UserError(`You don't have enough privileges`);
2019-05-17 11:27:51 +00:00
const calendar = {totalHolidays: 0, holidaysEnjoyed: 0};
const holidays = [];
2019-03-22 07:28:57 +00:00
// Get absences of year
let absences = await Self.find({
include: {
relation: 'absenceType'
},
where: {
workerFk: workerFk,
2019-06-21 07:43:47 +00:00
dated: {between: [yearStarted, yearEnded]}
2019-03-22 07:28:57 +00:00
}
});
absences.forEach(absence => {
if (absence.absenceType().id === 1)
calendar.holidaysEnjoyed++;
absence.dated = new Date(absence.dated);
absence.dated.setHours(0, 0, 0, 0);
});
// Get active contracts on current year
2019-06-21 07:43:47 +00:00
const year = yearStarted.getFullYear();
2019-03-22 07:28:57 +00:00
const contracts = await models.WorkerLabour.find({
include: [{
relation: 'holidays',
scope: {
where: {year}
}
},
{
relation: 'workCenter',
scope: {
include: {
relation: 'holidays',
scope: {
include: [{
relation: 'detail'
},
{
relation: 'type'
}],
where: {
2019-06-21 07:43:47 +00:00
dated: {between: [yearStarted, yearEnded]}
2019-03-22 07:28:57 +00:00
}
}
}
}
}],
where: {
and: [
{workerFk: workerFk},
{or: [{
2019-06-21 07:43:47 +00:00
ended: {gte: [yearStarted]}
2019-03-22 07:28:57 +00:00
}, {ended: null}]}
],
}
});
// Get number of total holidays
contracts.forEach(contract => {
2019-06-21 07:43:47 +00:00
calendar.totalHolidays += getHolidaysByContract(contract, yearEnded);
2019-03-22 07:28:57 +00:00
let holidayList = contract.workCenter().holidays();
for (let day of holidayList) {
day.dated = new Date(day.dated);
day.dated.setHours(0, 0, 0, 0);
holidays.push(day);
}
});
return [calendar, absences, holidays];
};
2019-06-21 07:43:47 +00:00
function getHolidaysByContract(contract, endOfYear) {
2019-03-22 07:28:57 +00:00
const dayTimestamp = 1000 * 60 * 60 * 24;
2019-06-21 07:43:47 +00:00
const started = contract.started;
const ended = contract.ended;
const startedTime = started.getTime();
2019-06-21 07:43:47 +00:00
const endedTime = ended && ended.getTime() || endOfYear;
2019-03-22 07:28:57 +00:00
const contractDays = Math.floor((endedTime - startedTime) / dayTimestamp);
2019-04-23 11:29:52 +00:00
if (contractDays < 365) {
2019-06-21 07:43:47 +00:00
let holidays = Math.round(2 * contract.holidays().days * (contractDays + 1) / 365) / 2;
2019-04-23 11:29:52 +00:00
return holidays;
}
2019-03-22 07:28:57 +00:00
return contract.holidays().days;
}
};