Fix some issues
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 43s

This commit is contained in:
Anthony Janin 2025-08-05 14:52:29 +02:00
parent ce2c399055
commit 9f14ae59ff

View File

@ -665,69 +665,32 @@ app.post('/api/subscribe-to-list', validateEmail, async (req, res) => {
} }
}); });
app.post('/api/:uid/send_reminder', validateEmail, async (req, res) => { app.post('/api/send_reminder', async (req, res) => {
const { email, documentsUid } = req.body; const { office, customer } = req.body;
try { try {
const uid = req.params["uid"]; const to = customer.contact.email;
if (!uid) {
//this.httpBadRequest(response, "No uid provided");
return;
}
if (!documentsUid || !Array.isArray(documentsUid)) {
//this.httpBadRequest(response, "Invalid or missing documents");
return;
}
/*
const documentEntities: Documents[] = [];
//For each document uid, use DocumentsService.getByUid to get the document entity and add it to the documents array
for (const documentUid of documentsUid) {
const documentEntity = await this.documentsService.getByUid(documentUid, { document_type: true, folder: true });
if (!documentEntity) {
this.httpBadRequest(response, "Document not found");
return;
}
documentEntities.push(documentEntity);
}
const customerEntity = await this.customersService.getByUid(uid, { contact: true, office: true });
if (!customerEntity) {
this.httpNotFoundRequest(response, "customer not found");
return;
}
//Hydrate ressource with prisma entity
const customer = Customer.hydrate < Customer > (customerEntity, { strategy: "excludeAll" });
// Call service to send reminder with documents
await this.customersService.sendDocumentsReminder(customer, documentEntities);
*/
const templateVariables = { const templateVariables = {
first_name: 'firstName' || '', office_name: office.name,
last_name: 'lastName' || '', last_name: customer.contact.last_name || '',
office_name: 'officeName' || '', first_name: customer.contact.first_name || '',
link: `${process.env.APP_HOST}` link: `${process.env.APP_HOST}`
}; };
const result = await EmailService.sendTransactionalEmail( await EmailService.sendTransactionalEmail(
email, to,
ETemplates.DOCUMENT_REMINDER, ETemplates.DOCUMENT_REMINDER,
'Votre notaire vous envoie un message', 'Vous avez des documents à déposer pour votre dossier.',
templateVariables templateVariables
); );
console.log(result);
res.json({ res.json({
success: true, success: true,
message: 'Email envoyé avec succès' message: 'Email envoyé avec succès'
}); });
} catch (error) { } catch (error) {
console.log(error); console.error(error);
return; return;
} }
}); });