Skip to content

Commit

Permalink
fix: ne pas verrouiller les champs quand import excel (#3404)
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre authored Nov 30, 2023
1 parent 2e5699a commit b15f4d0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions server/src/jobs/ingestion/process-ingestion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -458,9 +458,11 @@ const createOrUpdateEffectif = async (
}
itemProcessingInfos.effectif_id = effectifDb._id.toString();

// lock de tous les champs mis à jour par l'API pour ne pas permettre la modification côté UI
// TODO vérifier que ça marche bien
await lockEffectif(effectifDb);
// Lock de tous les champs (non vide) mis à jour par l'API pour ne pas permettre la modification côté UI
// Uniquement dans le cas où c'est bien par API et non par import manuel (a.k.a téléversement)
if (effectif.source !== "televersement") {
await lockEffectif(effectifDb);
}

return { effectifId: effectifDb._id, itemProcessingInfos };
};
Expand Down

0 comments on commit b15f4d0

Please sign in to comment.