salix/print/methods/closure.js

93 lines
3.4 KiB
JavaScript
Raw Normal View History

const db = require('../core/database');
const Email = require('../core/email');
const smtp = require('../core/smtp');
const config = require('../core/config');
module.exports = app => {
2020-06-03 16:06:30 +00:00
app.get('/api/closure/by-ticket', async function(req, res) {
2020-06-02 16:28:13 +00:00
});
2020-06-03 16:06:30 +00:00
app.get('/api/closure/all', async function(req, res) {
res.status(200).json({
2020-06-02 16:28:13 +00:00
message: 'Task executed successfully'
});
const failedtickets = [];
const tickets = await db.rawSql(`
SELECT
t.id,
t.clientFk,
2020-06-03 09:32:30 +00:00
c.email recipient,
c.isToBeMailed,
2020-06-03 12:56:34 +00:00
c.salesPersonFk,
2020-06-03 09:32:30 +00:00
eu.email salesPersonEmail
FROM expedition e
JOIN ticket t ON t.id = e.ticketFk
JOIN client c ON c.id = t.clientFk
2020-06-03 09:32:30 +00:00
JOIN warehouse wh ON wh.id = t.warehouseFk AND wh.hasComission
JOIN ticketState ts ON ts.ticketFk = t.id
JOIN alertLevel al ON al.alertLevel = ts.alertLevel
LEFT JOIN account.emailUser eu ON eu.userFk = c.salesPersonFk
WHERE al.code = 'PACKED'
AND DATE(t.shipped) BETWEEN DATE_ADD(CURDATE(), INTERVAL -2 DAY) AND CURDATE()
AND t.refFk IS NULL
GROUP BY e.ticketFk`);
for (const ticket of tickets) {
try {
2020-06-01 10:50:50 +00:00
await db.rawSql(`CALL vn.ticket_closeByTicket(:ticketId)`, {
ticketId: ticket.id
});
2020-06-03 09:32:30 +00:00
if (!ticket.salesPersonFk || !ticket.isToBeMailed) continue;
if (!ticket.recipient) {
const body = `No se ha podido enviar el albarán <strong>${ticket.id}</strong>
al cliente <strong>${ticket.clientFk}</strong> porque no tiene un email especificado.<br/><br/>
Para dejar de recibir esta notificación, asígnale un email o desactiva la notificación por email para este cliente.`;
smtp.send({
to: ticket.salesPersonEmail,
subject: 'No se ha podido enviar el albarán',
html: body
});
continue;
}
2020-06-03 16:06:30 +00:00
const reqArgs = req.args;
const args = Object.assign({
ticketId: ticket.id,
2020-05-22 13:20:55 +00:00
recipientId: ticket.clientFk,
2020-06-05 06:23:52 +00:00
recipient: ticket.recipient,
replyTo: ticket.salesPersonEmail
2020-06-03 16:06:30 +00:00
}, reqArgs);
const email = new Email('delivery-note-link', args);
await email.send();
} catch (error) {
// Save tickets on a list of failed ids
2019-11-19 10:53:01 +00:00
failedtickets.push({
id: ticket.id,
stacktrace: error
});
}
}
// Send email with failed tickets
if (failedtickets.length > 0) {
2020-06-03 09:32:30 +00:00
let body = 'This following tickets have failed:<br/><br/>';
2019-11-19 10:53:01 +00:00
for (ticket of failedtickets) {
body += `Ticket: <strong>${ticket.id}</strong>
<br/> <strong>${ticket.stacktrace}</strong><br/><br/>`;
}
smtp.send({
to: config.app.reportEmail,
2020-06-03 09:32:30 +00:00
subject: '[API] Nightly ticket closure report',
2019-11-19 10:53:01 +00:00
html: body
});
}
});
};