Skip to content

Commit

Permalink
- Ajout d'un filtre sur 930$b afin de n'afficher que les exemplaires …
Browse files Browse the repository at this point in the history
…de son RCR et non plus les exemplaires de son ILN

- Les exemplaires restants sont calculés à partir des exemplaires filtrés, normalement il n'y a pas lieu de procéder à un second filtre
  • Loading branch information
jvk88511334 committed Oct 14, 2024
1 parent 1920dca commit 357e809
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@ public String[] getNoticeExemplaireAvantApres(Demande demande, LigneFichier lign
try {
traitementService.authenticate("M" + demandeSupp.getRcr());
List<Exemplaire> exemplairesExistants = getExemplairesExistants(ligneFichierSupp);
//On ne conserve que les EPN de son RCR
exemplairesExistants = exemplairesExistants.stream().filter(exemplaire -> exemplaire.findZone("930", 0).findSubLabel("$b").equals(demandeSupp.getRcr())).toList();
if (exemplairesExistants.isEmpty()) {
return new String[] {
ligneFichierSupp.getPpn(),
Expand Down

0 comments on commit 357e809

Please sign in to comment.