From 86645467f6390a8554b9cba023cbc9e04c8bc410 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:00:48 +0000 Subject: [PATCH 01/66] a --- Controleur/ControleurRendezvous.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index f5a474f..708bd04 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -30,7 +30,6 @@ class ControleurRendezvous extends Controleur { $prestataires = $this->prestataire->getprestatairerdvmobile(); - /* var_dump ( array @@ -43,7 +42,6 @@ class ControleurRendezvous extends Controleur { ) ); exit(); - */ $this->genererVue(array('benficiaires' => $benficiaires, 'demande' => $demande, 'specialites' => $specialites, 'prestataires' => $prestataires)); From 2b83c1ce7bad9f60319816f29a5dab0718503cca Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:02:11 +0000 Subject: [PATCH 02/66] a --- Controleur/ControleurRendezvous.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index 708bd04..67e76aa 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -20,6 +20,9 @@ class ControleurRendezvous extends Controleur { public function index() { + echo "Rendezvous"; + exit(); + $idDemandeRdv = $_SESSION['idDemandeRdv'] ?? '0'; $benficiaires = $this->rendezvous->getBeneficaire(); From 82bdcc0e9ed7390e43b57056fdce8f18b822c2b5 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:03:02 +0000 Subject: [PATCH 03/66] a --- Controleur/ControleurRendezvous.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index 67e76aa..3919efe 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -20,13 +20,23 @@ class ControleurRendezvous extends Controleur { public function index() { - echo "Rendezvous"; - exit(); - $idDemandeRdv = $_SESSION['idDemandeRdv'] ?? '0'; $benficiaires = $this->rendezvous->getBeneficaire(); + var_dump + ( + array + ( + "idDemandeRdv" => $idDemandeRdv, + "benficiaires" => $benficiaires, + /*"demande" => $demande, + "specialites" => $specialites, + "prestataires" => $prestataires,*/ + ) + ); + exit(); + $demande = $this->rendezvous->getDemandeRdv($idDemandeRdv); $specialites = $this->rendezvous->getSpecialiteRdv(); From e641c9c023bd68829f56f96af24fe9095f2a8ba4 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:03:34 +0000 Subject: [PATCH 04/66] a --- Controleur/ControleurRendezvous.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index 3919efe..f41d05e 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -24,21 +24,20 @@ class ControleurRendezvous extends Controleur { $benficiaires = $this->rendezvous->getBeneficaire(); + $demande = $this->rendezvous->getDemandeRdv($idDemandeRdv); + var_dump ( array ( "idDemandeRdv" => $idDemandeRdv, "benficiaires" => $benficiaires, - /*"demande" => $demande, - "specialites" => $specialites, + "demande" => $demande, + /*"specialites" => $specialites, "prestataires" => $prestataires,*/ ) ); exit(); - - $demande = $this->rendezvous->getDemandeRdv($idDemandeRdv); - $specialites = $this->rendezvous->getSpecialiteRdv(); $prestataires = $this->prestataire->getprestatairerdvmobile(); From 3b30044dceaba0857816d323df6a0e12b19a76a6 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:04:14 +0000 Subject: [PATCH 05/66] a --- Controleur/ControleurRendezvous.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index f41d05e..3099840 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -26,6 +26,8 @@ class ControleurRendezvous extends Controleur { $demande = $this->rendezvous->getDemandeRdv($idDemandeRdv); + $specialites = $this->rendezvous->getSpecialiteRdv(); + var_dump ( array @@ -33,12 +35,11 @@ class ControleurRendezvous extends Controleur { "idDemandeRdv" => $idDemandeRdv, "benficiaires" => $benficiaires, "demande" => $demande, - /*"specialites" => $specialites, - "prestataires" => $prestataires,*/ + "specialites" => $specialites, + // "prestataires" => $prestataires, ) ); exit(); - $specialites = $this->rendezvous->getSpecialiteRdv(); $prestataires = $this->prestataire->getprestatairerdvmobile(); From 1d4b0c554dfe5f345b18a2dc61ea9c0197f4a270 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:04:56 +0000 Subject: [PATCH 06/66] a --- Modele/Rendezvous.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modele/Rendezvous.php b/Modele/Rendezvous.php index aaed185..4cddf7e 100755 --- a/Modele/Rendezvous.php +++ b/Modele/Rendezvous.php @@ -49,7 +49,7 @@ class Rendezvous extends Modele { public function getSpecialiteRdv() { if(est_anglophone()){ - $sql = 'CALL sp_a_get_specialites_rdv_eng();'; + $sql = 'CALL sp_a_get_specialites_rdv_eng(?);'; }else{ $sql = 'CALL sp_a_get_specialites_rdv(?)'; } From 56639e67d96d030cce345d4b5f305846fb84c9e6 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:05:26 +0000 Subject: [PATCH 07/66] a --- Controleur/ControleurRendezvous.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index 3099840..708bd04 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -28,19 +28,6 @@ class ControleurRendezvous extends Controleur { $specialites = $this->rendezvous->getSpecialiteRdv(); - var_dump - ( - array - ( - "idDemandeRdv" => $idDemandeRdv, - "benficiaires" => $benficiaires, - "demande" => $demande, - "specialites" => $specialites, - // "prestataires" => $prestataires, - ) - ); - exit(); - $prestataires = $this->prestataire->getprestatairerdvmobile(); var_dump From 89f5ebeb74ba42678792f65cdf73acccb8804b53 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:05:46 +0000 Subject: [PATCH 08/66] a --- Controleur/ControleurRendezvous.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Controleur/ControleurRendezvous.php b/Controleur/ControleurRendezvous.php index 708bd04..f5a474f 100755 --- a/Controleur/ControleurRendezvous.php +++ b/Controleur/ControleurRendezvous.php @@ -30,6 +30,7 @@ class ControleurRendezvous extends Controleur { $prestataires = $this->prestataire->getprestatairerdvmobile(); + /* var_dump ( array @@ -42,6 +43,7 @@ class ControleurRendezvous extends Controleur { ) ); exit(); + */ $this->genererVue(array('benficiaires' => $benficiaires, 'demande' => $demande, 'specialites' => $specialites, 'prestataires' => $prestataires)); From af419727d2afed08fe61bf8a916fd1f0160766d9 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:17:40 +0000 Subject: [PATCH 09/66] a --- Js/fonctions.js | 3 ++- Vue/gabarit.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index a8590b7..2c569ea 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18505,7 +18505,8 @@ function enregistrer_rdv() }, complete: function() { - ouvrir_rdv(); + // ouvrir_rdv(); + listerrdv(); } }); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index e0e544b..00f921d 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 00b3d6cd7ac07183079d20c8748837a6692bd642 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Fri, 16 Jan 2026 11:19:37 +0000 Subject: [PATCH 10/66] a --- Js/fonctions.js | 3 ++- Vue/gabarit.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 2c569ea..741f7d8 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18506,7 +18506,8 @@ function enregistrer_rdv() }, complete: function() { // ouvrir_rdv(); - listerrdv(); + // listerrdv(); + historique_rdv(); } }); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 00f921d..247927d 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 3c386eda4dc75fea3e78d0269311441e704b9897 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Sat, 17 Jan 2026 12:12:14 +0000 Subject: [PATCH 11/66] a --- Framework/Functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Functions.php b/Framework/Functions.php index 7442abc..d23298d 100755 --- a/Framework/Functions.php +++ b/Framework/Functions.php @@ -161,7 +161,7 @@ function dateFr($d) function dateEng($d) { if ($d<="0000-00-00") return ""; - return date("m/j/Y", strtotime($d)); + return date("m/d/Y", strtotime($d)); } function dateLang($d, $lang=null) From 173f0f124a87f484db137d9ba181acb30c68bab2 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Wed, 21 Jan 2026 11:47:54 +0000 Subject: [PATCH 12/66] z --- Vue/Remboursement/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vue/Remboursement/index.php b/Vue/Remboursement/index.php index d8a67f5..8714ac3 100755 --- a/Vue/Remboursement/index.php +++ b/Vue/Remboursement/index.php @@ -205,7 +205,7 @@ " ")) : ?> -
+ + +
+ \ No newline at end of file diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 16ea4d7..b14e411 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From bf9af4c8992884b367922adb0a1d5d427353892c Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 06:43:02 +0000 Subject: [PATCH 18/66] a --- Js/fonctions.js | 5 +++-- Vue/Rendezvous/index.php | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index fbe41fd..e3b5065 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18849,8 +18849,9 @@ function afficherhistoriquefactures() } -function selectPrestataireMobile(codePrestataire){ - +function selectPrestataireMobile(){ + codePrestataire=$("#codePrestataire").val(); + donnees = 'codePrestataire='+codePrestataire; alert("selectPrestataireMobile => "+donnees); diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index ac9ac1a..3964a84 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -187,7 +187,7 @@
From 43c4f2b6638d4a6bcd8224fc550477e7d4b8d575 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 06:50:31 +0000 Subject: [PATCH 19/66] a --- Js/fonctions.js | 4 ++-- Vue/Rendezvous/index.php | 9 ++++++++- Vue/gabarit.php | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index e3b5065..270adad 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18850,8 +18850,8 @@ function afficherhistoriquefactures() } function selectPrestataireMobile(){ - codePrestataire=$("#codePrestataire").val(); - + codePrestataire=$("#codePrestataireMobile").val(); + donnees = 'codePrestataire='+codePrestataire; alert("selectPrestataireMobile => "+donnees); diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 3964a84..f044d6c 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -186,8 +186,15 @@
+ + +
diff --git a/Vue/gabarit.php b/Vue/gabarit.php index b14e411..56c32a8 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 3a348fe070b04cae2902eb9286931326c5277bff Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 06:50:44 +0000 Subject: [PATCH 20/66] a --- Vue/gabarit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 56c32a8..4796b37 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 1bdc3dfeb9c3b2ddd47fb8da85b3cb2eb96e7854 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 08:47:42 +0000 Subject: [PATCH 21/66] a --- Vue/Rendezvous/rdvpossible.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vue/Rendezvous/rdvpossible.php b/Vue/Rendezvous/rdvpossible.php index b468670..137bf12 100755 --- a/Vue/Rendezvous/rdvpossible.php +++ b/Vue/Rendezvous/rdvpossible.php @@ -1,2 +1,2 @@ - \ No newline at end of file + From 7f8de198fdb03fd40b16919bf4f208c63afaa1f9 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 08:48:55 +0000 Subject: [PATCH 22/66] a --- Js/fonctions.js | 2 +- Vue/gabarit.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 270adad..ff9f714 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18854,7 +18854,7 @@ function selectPrestataireMobile(){ donnees = 'codePrestataire='+codePrestataire; - alert("selectPrestataireMobile => "+donnees); + // alert("selectPrestataireMobile => "+donnees); $("#div_rdvPossible").html('
' + '' + '
'); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 4796b37..0748c75 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 22640d477e0d1919f09c78b4355d057609c5a63b Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 08:53:29 +0000 Subject: [PATCH 23/66] a --- Js/fonctions.js | 2 ++ Vue/gabarit.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index ff9f714..6b62044 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18410,6 +18410,8 @@ function controle_date_fin_rdv(dateFin) function enregistrer_rdv() { + alert("codePrestataire => "+$("#codePrestataire").val()); + numeroBeneficiaire = $("#numeroBeneficiaire").val(); debutRdv = $("#debutRdv").val(); finRdv = $("#finRdv").val(); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 0748c75..9e5109d 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 6596df8a01d095f699623763c0bae923350fcb86 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 08:55:30 +0000 Subject: [PATCH 24/66] a --- Js/fonctions.js | 3 ++- Vue/gabarit.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 6b62044..a5adb90 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18853,7 +18853,8 @@ function afficherhistoriquefactures() function selectPrestataireMobile(){ codePrestataire=$("#codePrestataireMobile").val(); - + $("#codePrestataire").val(codePrestataire); + donnees = 'codePrestataire='+codePrestataire; // alert("selectPrestataireMobile => "+donnees); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 9e5109d..7c28ba0 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From ca86ab6c3c45613731aeaff3fb4e0968350585f2 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 08:57:57 +0000 Subject: [PATCH 25/66] a --- Js/fonctions.js | 8 ++++---- Vue/gabarit.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index a5adb90..147c426 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18410,8 +18410,6 @@ function controle_date_fin_rdv(dateFin) function enregistrer_rdv() { - alert("codePrestataire => "+$("#codePrestataire").val()); - numeroBeneficiaire = $("#numeroBeneficiaire").val(); debutRdv = $("#debutRdv").val(); finRdv = $("#finRdv").val(); @@ -18481,7 +18479,6 @@ function enregistrer_rdv() return; } - v_msg="Confirmez-vous l'enregistrement de votre demande?"; v_msgEng="Do you confirm the registration of your request?"; @@ -18492,6 +18489,9 @@ function enregistrer_rdv() donnees = 'numeroBeneficiaire='+ numeroBeneficiaire+'&debutRdv='+debutRdv; donnees += '&finRdv='+finRdv+'&codePrestataire='+codePrestataire; donnees += '&codeSpecialite='+codeSpecialite+'&motifRdv='+motifRdv; + + alert(donnees); + return; vLink = "Ajaxdemanderdv/enregistrer/"; @@ -18854,7 +18854,7 @@ function afficherhistoriquefactures() function selectPrestataireMobile(){ codePrestataire=$("#codePrestataireMobile").val(); $("#codePrestataire").val(codePrestataire); - + donnees = 'codePrestataire='+codePrestataire; // alert("selectPrestataireMobile => "+donnees); diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 7c28ba0..18cd167 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 4f36333dd33e46e213bc7ce1f5ad35fd656b1c63 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:03:40 +0000 Subject: [PATCH 26/66] a --- Js/fonctions.js | 10 ---------- Vue/Rendezvous/rdvpossible.php | 1 - Vue/gabarit.php | 2 +- 3 files changed, 1 insertion(+), 12 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 147c426..d73c86d 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18490,9 +18490,6 @@ function enregistrer_rdv() donnees += '&finRdv='+finRdv+'&codePrestataire='+codePrestataire; donnees += '&codeSpecialite='+codeSpecialite+'&motifRdv='+motifRdv; - alert(donnees); - return; - vLink = "Ajaxdemanderdv/enregistrer/"; $.ajax({ @@ -18502,20 +18499,13 @@ function enregistrer_rdv() error: function(errorData) { }, success: function(data) { - // alert(data); - // $('#div_test_gabarit').html(data); - }, complete: function() { - // ouvrir_rdv(); - // listerrdv(); historique_rdv(); } - }); } else { - // L'utilisateur a annulé console.log("Confirmation refusée"); } }); diff --git a/Vue/Rendezvous/rdvpossible.php b/Vue/Rendezvous/rdvpossible.php index 137bf12..daf7dfd 100755 --- a/Vue/Rendezvous/rdvpossible.php +++ b/Vue/Rendezvous/rdvpossible.php @@ -1,2 +1 @@ - diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 18cd167..bf8a6a4 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 97fcc6f32aae71debcf0a3f362289d922df5e1bd Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:11:47 +0000 Subject: [PATCH 27/66] a --- Vue/Rendezvous/index.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index f044d6c..0e99f3d 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -217,6 +217,12 @@ + +
+ + + +
From 78a6aaba12b34f283f150a82f9cdee3c55544b77 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:12:59 +0000 Subject: [PATCH 28/66] a --- Vue/Rendezvous/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 0e99f3d..65404fa 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -45,6 +45,7 @@ $heureRdvAccordee = ""; } + $messageRdv = "TEST MESSAGE RDV"; ?>
@@ -220,7 +221,7 @@
- +
From 9f112b3e0ad0736d04312b40dbb12dfafbb5fe13 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:31:41 +0000 Subject: [PATCH 29/66] q --- Js/fonctions.js | 9 ++++++++- Vue/Rendezvous/index.php | 11 ++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index d73c86d..675d387 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -18858,10 +18858,17 @@ function selectPrestataireMobile(){ error: function(errorData) { }, success: function(data) { - $('#div_test_gabarit').html(data); + // $('#div_test_gabarit').html(data); $("#div_rdvPossible").html(data); }, complete: function() { + // div_message_rdv + rdvPossible=$("#rdvPossible").val(); + alert("rdvPossible => "+rdvPossible); + if(rdvPossible!="1") + { + $("#div_message_rdv").show(); + } } }); } diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 65404fa..77011e7 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -45,7 +45,7 @@ $heureRdvAccordee = ""; } - $messageRdv = "TEST MESSAGE RDV"; + $messageRdv = _("Attention! Ce prestataire ne prend pas de Rendez-vous en ligne."); ?>
@@ -79,6 +79,12 @@
+ +
+ + + +
@@ -185,7 +191,6 @@
-
diff --git a/Vue/Rendezvous/rdvpossible.php b/Vue/Rendezvous/rdvpossible.php index daf7dfd..50d83ed 100755 --- a/Vue/Rendezvous/rdvpossible.php +++ b/Vue/Rendezvous/rdvpossible.php @@ -1 +1,2 @@ +rdvPossible ajax : \ No newline at end of file From fb43a9fca8d2597e1636779f80cb0fd3051cd7a5 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:39:20 +0000 Subject: [PATCH 32/66] a --- Vue/Rendezvous/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 2683bbc..4fdfad1 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -200,10 +200,12 @@ --> + + rdvPossible 1er :
From 72cfb5b8d527feddaa87292d911ec0ece6ec5fb8 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:40:18 +0000 Subject: [PATCH 33/66] a --- Vue/Rendezvous/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 4fdfad1..a649239 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -35,7 +35,7 @@ $debutRdv = date('Y-m-d'); $finRdv = date('Y-m-d'); $codePrestataire = ""; - $rdvPossible = "-11"; + $rdvPossible = "-1"; $prestataire = ""; $codeSpecialite = ""; $etatRdv = ""; From 426f89cbe16130306ac609d6a7df1dc1bc3461cd Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:49:50 +0000 Subject: [PATCH 34/66] a --- Js/fonctions.js | 10 ++++++++-- Vue/Rendezvous/index.php | 7 ++++--- Vue/Rendezvous/rdvpossible.php | 2 +- Vue/gabarit.php | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 7ec027f..423a916 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -17992,6 +17992,12 @@ function selectPrestataire(code, libelle, rdvPossible){ $("#div_selection_prestataire").hide(); $("#codePrestataire").val(code); $("#rdvPossible").val(rdvPossible); + + alert("rdvPossible selectPrestataire Desktop => "+rdvPossible); + if(rdvPossible != "1") + { + $("#div_message_rdv").show(); + } } function estDateAnncienne(date) { @@ -18863,8 +18869,8 @@ function selectPrestataireMobile(){ }, complete: function() { // div_message_rdv - rdvPossible=$("#rdvPossible").val(); - alert("rdvPossible => "+rdvPossible); + rdvPossible=$("#rdvPossibleAjax").val(); + alert("rdvPossible selectPrestataire Mobile => "+rdvPossible); if(rdvPossible != "1") { $("#div_message_rdv").show(); diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index a649239..8c5cf9d 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -48,6 +48,10 @@ $messageRdv = _("Attention! Ce prestataire ne prend pas de Rendez-vous en ligne."); ?> +rdvPossible 1er : + + +
@@ -185,9 +189,6 @@ onkeyup="javascript:affichelisteprestataires(this.value);" value="" placeholder=""> - - - rdvPossible 1er :
diff --git a/Vue/Rendezvous/rdvpossible.php b/Vue/Rendezvous/rdvpossible.php index 50d83ed..a081ef6 100755 --- a/Vue/Rendezvous/rdvpossible.php +++ b/Vue/Rendezvous/rdvpossible.php @@ -1,2 +1,2 @@ - + rdvPossible ajax : \ No newline at end of file diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 9828b90..13edd32 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From fd9af8b3f6d578ca86a1f92f53721b4b86f19ec1 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:52:24 +0000 Subject: [PATCH 35/66] a --- Vue/Rendezvous/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index 8c5cf9d..f2db635 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -48,9 +48,9 @@ $messageRdv = _("Attention! Ce prestataire ne prend pas de Rendez-vous en ligne."); ?> -rdvPossible 1er : - + +
From 9c3de45be46bfc42f26c871b65e6a4d74cc1111b Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 09:55:35 +0000 Subject: [PATCH 36/66] a --- Js/fonctions.js | 7 ++----- Vue/Rendezvous/index.php | 6 +++--- Vue/Rendezvous/rdvpossible.php | 3 +-- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 423a916..97dc3f5 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -17993,7 +17993,7 @@ function selectPrestataire(code, libelle, rdvPossible){ $("#codePrestataire").val(code); $("#rdvPossible").val(rdvPossible); - alert("rdvPossible selectPrestataire Desktop => "+rdvPossible); + // alert("rdvPossible selectPrestataire Desktop => "+rdvPossible); if(rdvPossible != "1") { $("#div_message_rdv").show(); @@ -18853,8 +18853,6 @@ function selectPrestataireMobile(){ donnees = 'codePrestataire='+codePrestataire; - // alert("selectPrestataireMobile => "+donnees); - $("#div_rdvPossible").html('
' + '' + '
'); $.ajax({ @@ -18868,9 +18866,8 @@ function selectPrestataireMobile(){ $("#div_rdvPossible").html(data); }, complete: function() { - // div_message_rdv rdvPossible=$("#rdvPossibleAjax").val(); - alert("rdvPossible selectPrestataire Mobile => "+rdvPossible); + // alert("rdvPossible selectPrestataire Mobile => "+rdvPossible); if(rdvPossible != "1") { $("#div_message_rdv").show(); diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index f2db635..f87a096 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -49,8 +49,7 @@ ?> - - +
@@ -228,7 +227,8 @@
- - -
+ From 9b739968d974f32eb38aa7329099404a5601c873 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 10:01:39 +0000 Subject: [PATCH 40/66] a --- Js/fonctions.js | 12 ++++++++++-- Vue/gabarit.php | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Js/fonctions.js b/Js/fonctions.js index 97dc3f5..e1ee55f 100755 --- a/Js/fonctions.js +++ b/Js/fonctions.js @@ -17994,7 +17994,11 @@ function selectPrestataire(code, libelle, rdvPossible){ $("#rdvPossible").val(rdvPossible); // alert("rdvPossible selectPrestataire Desktop => "+rdvPossible); - if(rdvPossible != "1") + if(rdvPossible == "1") + { + $("#div_message_rdv").hide(); + } + else { $("#div_message_rdv").show(); } @@ -18868,7 +18872,11 @@ function selectPrestataireMobile(){ complete: function() { rdvPossible=$("#rdvPossibleAjax").val(); // alert("rdvPossible selectPrestataire Mobile => "+rdvPossible); - if(rdvPossible != "1") + if(rdvPossible == "1") + { + $("#div_message_rdv").hide(); + } + else { $("#div_message_rdv").show(); } diff --git a/Vue/gabarit.php b/Vue/gabarit.php index 13edd32..f6e58ac 100755 --- a/Vue/gabarit.php +++ b/Vue/gabarit.php @@ -548,7 +548,7 @@ - + From 75cd339593e5aa7c7b3d7638ec0c8bb54e080b34 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Thu, 5 Mar 2026 10:07:48 +0000 Subject: [PATCH 41/66] a --- Vue/Rendezvous/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vue/Rendezvous/index.php b/Vue/Rendezvous/index.php index c2a7d50..5fb2da1 100755 --- a/Vue/Rendezvous/index.php +++ b/Vue/Rendezvous/index.php @@ -226,8 +226,8 @@
- - -