salix/print/methods/closure.js

70 lines
2.3 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-02 16:28:13 +00:00
app.get('/api/closure/by-ticket', async function(request, response) {
});
app.get('/api/closure/all', async function(request, response) {
response.status(200).json({
message: 'Task executed successfully'
});
const failedtickets = [];
const tickets = await db.rawSql(`
SELECT
t.id,
t.clientFk,
c.email recipient
FROM expedition e
JOIN ticket t ON t.id = e.ticketFk
JOIN client c ON c.id = t.clientFk
JOIN warehouse w ON w.id = t.warehouseFk AND hasComission
LEFT JOIN ticketState ts ON ts.ticketFk = t.id
2019-11-19 10:53:01 +00:00
WHERE ts.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
});
const args = {
ticketId: ticket.id,
2020-05-22 13:20:55 +00:00
recipientId: ticket.clientFk,
recipient: ticket.recipient
};
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) {
2019-11-19 10:53:01 +00:00
let body = 'This following tickets has failed:<br/><br/>';
for (ticket of failedtickets) {
body += `Ticket: <strong>${ticket.id}</strong>
<br/> <strong>${ticket.stacktrace}</strong><br/><br/>`;
}
smtp.send({
to: config.app.reportEmail,
2019-11-19 10:53:01 +00:00
subject: '[API] Nightly ticket closure has failed',
html: body
});
}
});
};