2019-05-17 11:27:51 +00:00
|
|
|
const UserError = require('vn-loopback/util/user-error');
|
|
|
|
|
|
|
|
module.exports = Self => {
|
|
|
|
require('../methods/worker-time-control/filter')(Self);
|
2019-11-05 07:59:48 +00:00
|
|
|
require('../methods/worker-time-control/addTimeEntry')(Self);
|
|
|
|
require('../methods/worker-time-control/deleteTimeEntry')(Self);
|
2021-06-17 13:09:04 +00:00
|
|
|
require('../methods/worker-time-control/updateTimeEntry')(Self);
|
2022-10-31 06:34:34 +00:00
|
|
|
require('../methods/worker-time-control/sendMail')(Self);
|
2022-11-02 13:22:18 +00:00
|
|
|
require('../methods/worker-time-control/updateWorkerTimeControlMail')(Self);
|
2022-11-28 12:56:21 +00:00
|
|
|
require('../methods/worker-time-control/weeklyHourRecordEmail')(Self);
|
2023-03-08 10:47:10 +00:00
|
|
|
require('../methods/worker-time-control/getMailStates')(Self);
|
2023-04-03 19:29:02 +00:00
|
|
|
require('../methods/worker-time-control/resendWeeklyHourEmail')(Self);
|
2019-05-17 11:27:51 +00:00
|
|
|
|
|
|
|
Self.rewriteDbError(function(err) {
|
|
|
|
if (err.code === 'ER_DUP_ENTRY')
|
|
|
|
return new UserError(`The introduced hour already exists`);
|
|
|
|
return err;
|
|
|
|
});
|
|
|
|
};
|