This commit is contained in:
2026-07-12 19:38:41 +02:00
parent 47c5ad34fa
commit 316a86c95a
6 changed files with 21 additions and 9 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ export function detectTypeEvenement(changements) {
// table dédiée, déclenche la régénération automatique de l'échéancier futur.
const RevisionSchema = z.object({
date_effet: z.string().regex(/^\d{4}-\d{2}-\d{2}$/),
nouveau_taux: z.number().positive().optional(),
nouveau_taux: z.number().nonnegative().optional(),
nouvelle_date_cible: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional(),
motif: z.string().trim().min(1, 'Le motif est obligatoire'),
}).refine(d => d.nouveau_taux !== undefined || d.nouvelle_date_cible !== undefined, {
+3 -1
View File
@@ -102,7 +102,9 @@ router.post('/generate', (req, res, next) => {
const { investissement_id, replace = true } = req.body;
if (!investissement_id) throw new HttpError(400, 'investissement_id required');
const inv = assertOwnedInvestissement(Number(investissement_id), req.user.id);
if (!inv.taux_interet || !inv.duree_mois) {
// taux_interet peut légitimement valoir 0 (ex. révision suite à un arrêt de production) —
// ne pas confondre avec "non renseigné" (null/undefined).
if (inv.taux_interet == null || !inv.duree_mois) {
throw new HttpError(400, 'Investissement requires taux_interet and duree_mois');
}
+7 -3
View File
@@ -129,7 +129,9 @@ export function adjustSimulForActuals(db, investissementId) {
FROM investissements WHERE id = ?
`).get(investissementId);
if (!inv || !inv.taux_interet || !inv.duree_mois) return;
// taux_interet peut légitimement valoir 0 (ex. révision suite à un arrêt de production
// n'engendrant plus d'intérêts) — ne pas confondre avec "non renseigné" (null/undefined).
if (!inv || inv.taux_interet == null || !inv.duree_mois) return;
// Réinvestissements triés par date (peuvent être vides)
const reinvests = db.prepare(
@@ -379,7 +381,8 @@ export function generateSimulWithReinvestissements(db, investissementId) {
return;
}
if (!inv.taux_interet || !inv.duree_mois) return;
// taux_interet peut légitimement valoir 0 (cf. commentaire dans adjustSimulForActuals)
if (inv.taux_interet == null || !inv.duree_mois) return;
const startDate = inv.date_debut_simul || inv.date_premiere_echeance || inv.date_souscription;
if (!startDate) return;
@@ -525,7 +528,8 @@ export function generateSimul(db, inv) {
const { id, montant_investi, taux_interet, duree_mois, type_remb, freq_interets,
date_premiere_echeance, date_debut_simul, date_souscription, echeance_fin_de_mois } = inv;
if (!taux_interet || !duree_mois) return;
// taux_interet peut légitimement valoir 0 (cf. commentaire dans adjustSimulForActuals)
if (taux_interet == null || !duree_mois) return;
// date_debut_simul remplace le point de départ quand le prêt a été restructuré
const startDate = date_debut_simul || date_premiere_echeance || date_souscription;