Colin Maudry
3776b18ff5
Meilleure gestion des colonnes absentes du schéma
2026-01-20 11:24:26 +01:00
Colin Maudry
6005b2fcb5
Mise en valeur des moyens de consommer les données
2026-01-19 11:44:41 +01:00
Colin Maudry
fc99723b2e
Gestion des colonnes ajoutées mais absentes du schéma
2026-01-19 11:44:14 +01:00
Colin Maudry
c3e801a15a
Utilisation des dbc pour /marche #63
2026-01-19 11:34:20 +01:00
Colin Maudry
38ea8834af
Merge tag 'v2.3.1' into dev
...
- Les champs absents du [schéma](https://www.data.gouv.fr/datasets/donnees-essentielles-de-la-commande-publique-consolidees-format-tabulaire?resource_id=9a4144c0-ee44-4dec-bee5-bbef38191d9a ) sont ignorés pour éviter les erreurs
2026-01-16 14:16:47 +01:00
Colin Maudry
efac172ac8
Merge branch 'hotfix/2.3.1'
v2.3.1
2026-01-16 14:11:15 +01:00
Colin Maudry
337f68f2fc
Changelog 2.3.1
2026-01-16 14:10:56 +01:00
Colin Maudry
2d43654c81
Ignore les champs absents du schéma
2026-01-16 14:08:42 +01:00
Colin Maudry
5bcd17e8b0
Skip les colonnes absentes du schéma
2026-01-16 13:57:19 +01:00
Colin Maudry
ec28e89788
Style et texte
2026-01-16 03:14:56 +01:00
Colin Maudry
338311fc62
Style et texte
2026-01-16 02:57:35 +01:00
Colin Maudry
86b445a007
Tableau pour les statistiques par an
2026-01-16 02:18:17 +01:00
Colin Maudry
16a914a98a
Ajout de la matrice de doublons par source
2026-01-16 02:17:47 +01:00
Colin Maudry
0bc82fae1e
màj de l'état des sources de DECP
2026-01-16 00:31:27 +01:00
Colin Maudry
3c68317f9d
Utilisation des stats produites par decp_processing
2026-01-14 18:16:50 +01:00
Colin Maudry
d8dcb04fbf
Fix anchor pour Sources
2025-12-27 10:18:01 +01:00
Colin Maudry
edfe6dd65e
Correction URL changelog
2025-12-24 11:44:40 +01:00
Colin Maudry
021361e2c1
Màj CHANGELOG.md
v2.3.0
2025-12-24 11:34:23 +01:00
Colin Maudry
04ec9438f1
Liste de colonnes dans les URL plus compacte #58
2025-12-24 11:32:15 +01:00
Colin Maudry
e6960dc16d
Merge branch 'main' into dev
2025-12-24 11:05:28 +01:00
Colin Maudry
2fb71e466c
Exemple d'URL dans le CHANGELOG
2025-12-24 11:02:35 +01:00
Colin Maudry
b47463b638
L'URL de partage contient les colonnes à afficher, non les colonnes à masquer #58
2025-12-24 10:50:21 +01:00
Colin Maudry
84cf48182d
Possibilité de filtrer une colonne avec plusieurs mots
2025-12-24 10:16:25 +01:00
Colin Maudry
0f11a575ff
Merge tag 'v2.3.0' into dev
...
- Possibilité de filtrer, trier etc. dans les vues acheteur et titulaire
- Possibilité de partager les filtres, tris et choix de colonnes via une adresse Web
2025-12-24 09:46:48 +01:00
Colin Maudry
c9459771ac
Merge branch 'release/2.3.0'
2025-12-24 09:45:55 +01:00
Colin Maudry
99eef0eaa3
Ajout mode d'emploi #58
2025-12-24 09:40:15 +01:00
Colin Maudry
4719ef5754
Ajout de copy.svg
2025-12-24 09:35:55 +01:00
Colin Maudry
032ca5554e
Déplacement des notes de version vers CHANGELOG.md
2025-12-24 09:31:33 +01:00
Colin Maudry
90d66bcbb6
Merge branch 'feature/58_filter_url' into dev
2025-12-18 04:25:39 +01:00
Colin Maudry
43104f611e
Réparation des callbacks, mode d'emploi #58
2025-12-18 04:23:53 +01:00
Colin Maudry
24ef21761f
Gestion des annonces dans .env
2025-12-18 01:37:58 +01:00
Colin Maudry
e0fa8464d2
Merge tag 'v2.2.3' into dev
...
- mise à jour de l'adresse email de contact (colmo.tech)
- message sur l'indisponibilité des données MINEF
2025-12-04 16:40:14 +01:00
Colin Maudry
0691329b04
Merge branch 'hotfix/2.2.3'
v2.2.3
2025-12-04 16:38:38 +01:00
Colin Maudry
359ba248ac
Changelog 2.2.3
2025-12-04 16:38:19 +01:00
Colin Maudry
19d7735306
Message informant du problème avec les données MINEF
2025-12-04 16:34:56 +01:00
Colin Maudry
43fd2df2c0
Suggested by Gemini Pro, but race condition: filters apply before columns are created #58
...
Prompt: - In the tableau page (src/pages/tableau.py), I want to allow users to copy a URL in their clipboard that enables opening the page with the same view: applied filters, sorting and column selection of the datatable. Typically to share the view with a colleague via email or chat.
In terms of Dash callbacks, that would mean the following:
- one callback syncs the filters, the sort parameters and the selection of columns with a read-only text input that stores the URL to copy. This callback also ensures the button to copy to the clipboard is visible, possibly replacing the confirmation message (see next point)
- one callback reacts to clicks on a button to store the URLin the clipboard. This button in on the same row as "Télécharger au format Excel" button. When clicked, the URL is stored in the clipboard, and the button is replaced with a confrmation message (URL copiée)
- one callback reads the URL, and applies the filters, sorting and column selection
- The URL stores the view configuration (filters, sorting and columns) in URL parameters, similar to what is done in REST APIs. The values are the same as stored in the DataTable parameters, just URL encoded. The URL parameters are in French: filtres, tris, colonnes.
2025-12-03 16:31:05 +01:00
Colin Maudry
9ae6f29391
Plus de tolérance dans l'ingestion des data dicts
2025-11-24 16:54:50 +01:00
Colin Maudry
80a7e51ec4
Merge branch 'feature/share_filtering_datatables' into dev
2025-11-24 16:01:34 +01:00
Colin Maudry
e216b42379
Meilleure gestion des df vides acheteur/titulaire
2025-11-24 16:00:21 +01:00
Colin Maudry
7f42ca67a2
Bonne configuration des boutons de téléchargemetn
2025-11-24 15:33:27 +01:00
Colin Maudry
ec15852406
Téléchargemetn filtré OK dans acheteur
2025-11-24 14:00:28 +01:00
Colin Maudry
8c98a60c75
filtres, tris fonctionnels (acheteur)
2025-11-24 13:43:42 +01:00
Colin Maudry
565a0cfd08
Custom filter logic
2025-11-24 11:17:05 +01:00
Colin Maudry
53919bff3e
Cast acheteur_year to int et non dateNotification to string
2025-11-24 10:41:47 +01:00
Colin Maudry
193cf5302c
Merge branch 'main' into dev
2025-11-24 09:38:27 +01:00
Colin Maudry
fd2f87e382
Annonce fichiers excel fonctionnels
2025-11-24 09:37:35 +01:00
Colin Maudry
59e363a1fc
Merge tag 'v2.2.2' into dev
...
- Correction d'un bug dans le téléchargement Excel
2025-11-22 18:49:11 +01:00
Colin Maudry
fdeedde983
Merge branch 'hotfix/2.2.2'
v2.2.2
2025-11-22 18:48:51 +01:00
Colin Maudry
925d050c96
Changelog 2.2.2
2025-11-22 18:48:42 +01:00
Colin Maudry
5d4ee692f3
Changements de type pour le téléchargement
2025-11-22 18:45:14 +01:00