feat: refs #7343 Requested changes
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Ivan Mas 2024-09-19 12:49:45 +02:00
parent c30ecd3760
commit c82c9395a4
1 changed files with 7 additions and 12 deletions

View File

@ -39,8 +39,8 @@ module.exports = Self => {
const {reportMail} = agencyMode(); const {reportMail} = agencyMode();
let user; let user;
let account; let account;
let userEmail = null; let userEmail;
let reportEmails = reportMail ? reportMail.split(',').map(email => email.trim()) : []; 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,22 +50,17 @@ module.exports = Self => {
account = await models.Account.findById(workerFk); account = await models.Account.findById(workerFk);
} }
if (user?.active && account) { if (user?.active && account)
userEmail = user.emailUser().email; userEmail = user.emailUser().email;
}
let recipients = reportEmails; if (userEmail)
if (userEmail) { ctx.args.recipients.push(userEmail);
recipients.push(userEmail);
}
recipients = [...new Set(recipients)]; ctx.args.recipients = [...new Set(ctx.args.recipients)];
if (recipients.length === 0) { if (!ctx.args.recipients.length)
throw new UserError('An email is necessary'); throw new UserError('An email is necessary');
}
ctx.args.recipients = recipients;
return Self.sendTemplate(ctx, 'driver-route'); return Self.sendTemplate(ctx, 'driver-route');
}; };
}; };