From 4cd534518a6822ce5114c3390aa3ed3e96aa284b Mon Sep 17 00:00:00 2001 From: KONE SOREL Date: Mon, 5 Jan 2026 08:09:55 +0000 Subject: [PATCH 1/7] Ajout du fichier ControleurListeimportassure.php --- Controleur/ControleurListeimportassure.php | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Controleur/ControleurListeimportassure.php diff --git a/Controleur/ControleurListeimportassure.php b/Controleur/ControleurListeimportassure.php new file mode 100644 index 0000000..a1458f1 --- /dev/null +++ b/Controleur/ControleurListeimportassure.php @@ -0,0 +1,32 @@ +menuvue = new Menuvueutilisateur(); + $this->menuvue->getMenuVue("Listeimportassure"); + + $this->beneficiaire = new Beneficiaire(); + } + public function index() + { + $beneficiaires = $this->beneficiaire->getListeAssuresImportes(); + + $nb_adh = $this->beneficiaire->getnbadhimpsanscollege(); + + $dbeneficiaires_total = null; + $nb_ligne_ass = count($beneficiaires); + + if($nb_ligne_ass>0) + { + $dbeneficiaires_total = $beneficiaires['0']; + } + + $this->genererVue(array('beneficiaires' => $beneficiaires, 'dbeneficiaires_total' => $dbeneficiaires_total, + 'nb_adh' => $nb_adh, 'nb_ligne_ass' => $nb_ligne_ass)); + } +} \ No newline at end of file From df5afe1fe218e3fd952d81191a2dfae2c1ff60a6 Mon Sep 17 00:00:00 2001 From: KONE SOREL Date: Mon, 5 Jan 2026 08:27:25 +0000 Subject: [PATCH 2/7] f --- Bootstrap_new/css/style_office.css | 22 ++++++++++++++++++++++ Vue/gabarit.php | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Bootstrap_new/css/style_office.css b/Bootstrap_new/css/style_office.css index a7e6c30..98b2161 100644 --- a/Bootstrap_new/css/style_office.css +++ b/Bootstrap_new/css/style_office.css @@ -320,6 +320,28 @@ body { font-size: 16px; } +/* Style général de la scrollbar */ +.nav-bar > .nav-tabs::-webkit-scrollbar { + height: 10px; /* épaisseur de la barre horizontale */ +} + +/* Couleur de la piste (fond de la scrollbar) */ +.nav-bar > .nav-tabs::-webkit-scrollbar-track { + background: #f1f1f1; + border-radius: 8px; +} + +/* Couleur et style du curseur (thumb) */ +.nav-bar > .nav-tabs::-webkit-scrollbar-thumb { + background: var(--office-secondary); + border-radius: 8px; +} + +/* Effet au survol */ +.nav-bar > .nav-tabs::-webkit-scrollbar-thumb:hover { + background: var(--office-dark); +} + /* Content card */ .content-card { background: var(--office-card); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index deace2b..da5f42c 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -123,7 +123,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte']; - +