From 115c1cfb31efdc93b7ecbad6b1ab384f36efb132 Mon Sep 17 00:00:00 2001 From: Amandine Date: Fri, 13 Sep 2024 11:00:36 +0200 Subject: [PATCH] Fix taxref route : noms with 2 lists (#558) * Fix taxref route : noms with 2 lists - fix : PnX-SI/gn_mobile_occtax#263 --- VERSION | 2 +- apptax/taxonomie/routestaxref.py | 4 +++- docs/changelog.md | 10 +++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 30f101cb..a32d5a6a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.1 \ No newline at end of file +1.14.2 \ No newline at end of file diff --git a/apptax/taxonomie/routestaxref.py b/apptax/taxonomie/routestaxref.py index 406ddc60..11bcc1b9 100644 --- a/apptax/taxonomie/routestaxref.py +++ b/apptax/taxonomie/routestaxref.py @@ -235,7 +235,9 @@ def getTaxrefHierarchieBibNoms(rang): def genericTaxrefList(inBibtaxon, parameters): - q = Taxref.query.options(raiseload("*"), joinedload(Taxref.bib_nom).joinedload(BibNoms.listes)) + q = Taxref.query.options( + raiseload("*"), joinedload(Taxref.bib_nom).joinedload(BibNoms.listes) + ).distinct() nbResultsWithoutFilter = q.count() diff --git a/docs/changelog.md b/docs/changelog.md index d3b09c08..bf56bad4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,14 @@ +1.14.2 (2024-09-13) +=================== + +**🐛 Corrections** + +- Correction de la route `/taxref` quand un nom appartient à plusieurs listes (https://github.com/PnX-SI/gn_mobile_occtax/issues/263) + + 1.14.1 (2024-05-23) =================== + **🚀 Nouveautés** - Mise à jour de dépendances critiques : `requests`, `jinja2`, `werkzeug`, `idna`, `gunicorn` (#497) @@ -12,7 +21,6 @@ * Mise à jour de TaxRef et de la base de connaissance "Statuts" en v17 (#487) * Amélioration des performances du script de migration entre deux versions de Taxref. Contribution de @nico-imbert et @MathieuManceau. - **🐛 Corrections**. * Correction d'une mauvaise synchronisation du cookie et du JWT via une MAJ de pypnusershub (https://github.com/PnX-SI/UsersHub-authentification-module/pull/94)