Merge pull request 'fix: hotfix email rutas' (!3069) from hotfix-email-rutas into master
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #3069 Reviewed-by: Carlos Andrés <carlosap@verdnatura.es>
This commit is contained in:
commit
ec036de2c9
|
@ -39,8 +39,6 @@ module.exports = Self => {
|
||||||
const {reportMail} = agencyMode();
|
const {reportMail} = agencyMode();
|
||||||
let user;
|
let user;
|
||||||
let account;
|
let account;
|
||||||
let userEmail;
|
|
||||||
ctx.args.recipients = reportMail ? reportMail.split(',').map(email => email.trim()) : [];
|
|
||||||
|
|
||||||
if (workerFk) {
|
if (workerFk) {
|
||||||
user = await models.VnUser.findById(workerFk, {
|
user = await models.VnUser.findById(workerFk, {
|
||||||
|
@ -50,17 +48,10 @@ module.exports = Self => {
|
||||||
account = await models.Account.findById(workerFk);
|
account = await models.Account.findById(workerFk);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user?.active && account)
|
if (user?.active && account) ctx.args.recipient = user.emailUser().email;
|
||||||
userEmail = user.emailUser().email;
|
else ctx.args.recipient = reportMail;
|
||||||
|
|
||||||
if (userEmail)
|
|
||||||
ctx.args.recipients.push(userEmail);
|
|
||||||
|
|
||||||
ctx.args.recipients = [...new Set(ctx.args.recipients)];
|
|
||||||
|
|
||||||
if (!ctx.args.recipients.length)
|
|
||||||
throw new UserError('An email is necessary');
|
|
||||||
|
|
||||||
|
if (!ctx.args.recipient) throw new UserError('An email is necessary');
|
||||||
return Self.sendTemplate(ctx, 'driver-route');
|
return Self.sendTemplate(ctx, 'driver-route');
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue