From f8431d5cf951bd50dcce15003c1efa0a9531d95e Mon Sep 17 00:00:00 2001 From: Cherif Date: Sun, 16 Nov 2025 16:33:49 +0100 Subject: [PATCH] 16/11/25 - 16h30 Signed-off-by: Cherif --- .idea/workspace.xml | 24 +- Dashbord_queries/BPF.py | 34 +- .../ressources_humaines_tbd_qries.py | 2 +- Inscription_mgt.py | 2 +- Log/log_file.log | 1266 +++++++++++++++++ attached_file_mgt.py | 3 + base_class_calcul_note.py | 63 +- email_mgt.py | 10 +- module_editique.py | 2 +- 9 files changed, 1376 insertions(+), 30 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8c43d5c..ea40f23 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,24 +4,16 @@ - @@ -531,6 +522,7 @@ - \ No newline at end of file diff --git a/Dashbord_queries/BPF.py b/Dashbord_queries/BPF.py index 2e2a91d..73d0345 100644 --- a/Dashbord_queries/BPF.py +++ b/Dashbord_queries/BPF.py @@ -721,7 +721,20 @@ def Get_Qery_Generate_BPF_From_partner_invoice_header(diction): #print(" ### retval (employé ayant un contrat valide) = ", retval) formateur_id = str(retval['_id']) - formateur_data = str(retval['nom']) + " " + str(retval['prenom']) + " - " + str(retval['email']) + " - " + str(retval['_id']) + + nom = "" + if( "nom" in retval.keys() ): + nom = retval['nom'] + + prenom = "" + if ("prenom" in retval.keys()): + prenom = retval['prenom'] + + email = "" + if ("email" in retval.keys()): + email = retval['email'] + + formateur_data = str(nom) + " " + str(prenom) + " - " + str(email) + " - " + str(retval['_id']) formateur_contrat_type = "" if( "collection_ressource_humaine_contrat" in retval.keys() and "type_contrat" in retval['collection_ressource_humaine_contrat'].keys()): formateur_contrat_type = retval['collection_ressource_humaine_contrat']["type_contrat"] @@ -1943,8 +1956,23 @@ def Prepare_and_Print_BPF_PDF(diction): # print(" ### retval (employé ayant un contrat valide) = ", retval) formateur_id = str(retval['_id']) - formateur_data = str(retval['nom']) + " " + str(retval['prenom']) + " - " + str( - retval['email']) + " - " + str(retval['_id']) + + nom = "" + if ("nom" in retval.keys()): + nom = retval['nom'] + + prenom = "" + if ("prenom" in retval.keys()): + prenom = retval['prenom'] + + email = "" + if ("email" in retval.keys()): + email = retval['email'] + + + formateur_data = str(nom) + " " + str(prenom) + " - " + str(email) + " - " + str(retval['_id']) + + formateur_contrat_type = "" if ("collection_ressource_humaine_contrat" in retval.keys() and "type_contrat" in retval[ 'collection_ressource_humaine_contrat'].keys()): diff --git a/Dashbord_queries/ressources_humaines_tbd_qries.py b/Dashbord_queries/ressources_humaines_tbd_qries.py index e1e7a2f..71aef4e 100644 --- a/Dashbord_queries/ressources_humaines_tbd_qries.py +++ b/Dashbord_queries/ressources_humaines_tbd_qries.py @@ -300,7 +300,7 @@ def Get_Humain_Ressource_With_Planning(diction): event_duration_hour = round(divmod(event_duration_second, 3600)[0]+divmod(event_duration_second, 3600)[1]/3600, 2) - total_duration = total_duration + event_duration_hour + total_duration = round(total_duration + event_duration_hour, 2) new_node['event_duration_second'] = str(event_duration_second) new_node['event_duration_hour'] = str(event_duration_hour) diff --git a/Inscription_mgt.py b/Inscription_mgt.py index e6d8d28..af85af2 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -9915,7 +9915,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): new_e_document_diction['file_cononical_name'] = cononic_name new_e_document_diction['type'] = "convention" - print(" ### 022 new_e_document_diction = ", new_e_document_diction) + #print(" ### 022 new_e_document_diction = ", new_e_document_diction) local_status_e_doc, local_retval_e_doc = E_Sign_Document.Create_E_Document(new_e_document_diction) diff --git a/Log/log_file.log b/Log/log_file.log index c14bbbb..b8bd311 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -74580,3 +74580,1269 @@ INFO:root:2025-11-15 21:22:30.922741 : Security check : IP adresse '127.0.0.1' INFO:root:2025-11-15 21:22:30.924742 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [15/Nov/2025 21:22:30] "POST /myclass/api/Get_List_Internal_Destinataire/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [15/Nov/2025 21:22:30] "POST /myclass/api/Get_List_User_Internal_Mail/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 09:46:59.073378 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 09:46:59.073378 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 09:46:59.074392 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 09:46:59.074392 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 09:46:59.074392 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 09:48:15.872894 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 09:48:15.872894 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 09:48:15.872894 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 09:48:15.872894 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 09:48:15.872894 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 09:57:14.603825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:14] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.415757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:15.426757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:15.439791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.453793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:15.472795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:15.490796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.510810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.518800 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.521802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:15.533314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.547315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:15.557315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:24.266199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:24] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:32.586603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:32.590619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:32.595142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:32.631504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:32.632505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:32] "POST /myclass/api/Get_Qery_List_Taux_Remplissage_Session_Data_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:32] "POST /myclass/api/Get_Qery_Session_For_List_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:32] "POST /myclass/api/Get_Qery_Session_By_Periode_V2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:33] "POST /myclass/api/Get_Qery_Inscription_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:33] "POST /myclass/api/Get_Qery_Taux_Success_For_List_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:39.311965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:39.316960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:39.319959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:39] "POST /myclass/api/Get_Qery_List_Quotation_Data_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:39] "POST /myclass/api/Get_Qery_List_Factures_Data_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:39] "POST /myclass/api/Get_Qery_List_Facture_Previsionnelle_Data_By_Periode/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:43.414932 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:44.427886 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:44.431881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:44] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:44] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:57:55.791826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:57:55.795825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:55] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:57:55] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 09:58:01.040698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 09:58:01.044711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:58:01] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 09:58:01] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:17:08.299729 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:17:08.299729 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:17:08.299729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:17:08.299729 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:17:08.299729 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:18:08.628612 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:18:08.628612 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:18:08.628612 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:18:08.628612 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:18:08.628612 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:20:18.607780 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:20:18.607780 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:20:18.607780 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:20:18.607780 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:20:18.607780 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:21:37.461178 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:21:37.461178 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:21:37.461178 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:21:37.461178 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:21:37.461178 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:22:00.447595 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:22:00.448594 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:22:00.448594 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:22:00.448594 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:22:00.448594 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:22:35.230166 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:22:35.230166 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:22:35.230166 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:22:35.230166 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:22:35.231165 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:23:55.768838 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:23:55.768838 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:23:55.769840 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:23:55.769840 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:23:55.769840 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:24:02.433009 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:24:02.434010 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:24:02.434010 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:24:02.434010 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:24:02.434010 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 10:26:37.427261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 10:26:37] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 10:26:41.990893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 10:26:41] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:32:11.481992 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:32:11.481992 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:32:11.481992 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:32:11.481992 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:32:11.481992 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:33:26.975007 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:33:26.975007 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:33:26.975007 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:33:26.975007 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:33:26.975007 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:37:09.088172 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:37:09.088172 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:37:09.088172 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:37:09.088172 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:37:09.088172 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:40:10.662772 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:40:10.664107 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:40:10.664107 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:40:10.664107 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:40:10.664107 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:41:35.475456 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:41:35.475456 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:41:35.475456 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:41:35.475456 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:41:35.475456 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:42:25.393764 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:42:25.393764 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:42:25.393764 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:42:25.393764 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:42:25.393764 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:42:48.890506 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:42:48.891514 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:42:48.891514 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:42:48.891514 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:42:48.891514 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:45:02.542730 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:45:02.542730 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:45:02.543730 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:45:02.543730 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:45:02.543730 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:47:37.424593 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:47:37.425593 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:47:37.426592 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:47:37.426592 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:47:37.426592 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:48:36.097612 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:48:36.097612 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:48:36.097612 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:48:36.097612 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:48:36.097612 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:49:25.011033 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:49:25.011033 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:49:25.011033 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:49:25.011033 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:49:25.011033 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:49:56.203987 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:49:56.203987 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:49:56.205009 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:49:56.205009 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:49:56.205009 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:50:34.791894 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:50:34.791894 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:50:34.792894 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:50:34.792894 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:50:34.792894 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:51:20.727303 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:51:20.727303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:51:20.727303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:51:20.727303 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:51:20.727303 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:51:44.660163 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:51:44.660163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:51:44.660163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:51:44.660163 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:51:44.660163 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:53:40.193041 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:53:40.193041 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:53:40.193041 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:53:40.194041 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:53:40.194041 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:54:22.134273 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:54:22.134273 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:54:22.134273 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:54:22.134273 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:54:22.134273 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:56:04.952910 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:56:04.952910 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:56:04.952910 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:56:04.952910 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:56:04.952910 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:56:39.688215 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:56:39.688215 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:56:39.688215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:56:39.688215 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:56:39.688215 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:57:10.529056 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:57:10.529056 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:57:10.529056 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:57:10.529056 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:57:10.529056 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:57:43.099500 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:57:43.099500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:57:43.100499 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:57:43.100499 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:57:43.100499 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 10:58:11.466001 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 10:58:11.466001 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 10:58:11.466001 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 10:58:11.466001 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 10:58:11.466986 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 11:00:08.302777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.306801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.310776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.314816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.315775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.322777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:08.333782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:08.340783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.351307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:08.366302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.369302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:08.372302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:11.868566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.872567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.875566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.879565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.885565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.889566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:11.900566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:11.901565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:11.905565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:11] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:00:14.014617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:14.016616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:14.018617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:14.021618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:14.025617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:00:14.032640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:00:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:03:55.620681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:03:55.626682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:03:55.631880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:03:55.638227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:03:55.643192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:03:55.650191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:55] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:55] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:55] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:55] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:03:59.748329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:03:59] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:04:00.747186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:00.749186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:00.752185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:00.754186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:00.759187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:00] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:00] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:04:00.802702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:00] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:04:20.148554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:20.154567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:20.158568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:20.162567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:20.167566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:04:20.177140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:20] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:20] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:20] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:20] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:04:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:16.968558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:16.973074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:16.977077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:16.981074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:16.987075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:16.999075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:17.004075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:17.013303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:17.021301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:17] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:22.123171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:22.130174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:22.136191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:22.143187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:22.149173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:22.154170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:22.162189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:22.164173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:22.167186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:22] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:23.682928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:26.165943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:26.170951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:26.177936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:26] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:26] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:26] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:26.190935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:26.197466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:26.209459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:26] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:32.129492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:34.228316 : run_ue_pre_calcul_moyenne_somme_v2 L'inscription_id '690f39a5995b26cde9611a37' n'est pas valide +INFO:root:2025-11-16 11:05:34.232853 : Calcul_Note_Classement_Session Impossible d'initialiser les calculs (fonction :run_ue_pre_calcul_moyenne_somme ) +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:34] "POST /myclass/api/Calcul_Note_Classement_Session HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:50.180260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:50.185262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:50.187261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:50.191260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:50.195260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:50.201261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:50.212260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:50.216262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:50.222260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:50] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:51.799133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:53.791021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:53.792024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:53.796020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:53.800020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:53] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:53.809037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:53] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:53] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:53.815050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:58.641286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.646287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.650300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.655301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:58.667328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.672880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:05:58.679991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.684978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:05:58.687976 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:05:58] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:00.380812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:02.394783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:02.396780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:02.399798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:02.403801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:02] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:02] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:02.410810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:02.413797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:02] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:02] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:09.619214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:09.623216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:09.628216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:09.632214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:09.642212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:09.645210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:09.649213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:09.655211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:09.662211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:09] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:11.179348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:11.182383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:11.186383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:11.191382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:11.194380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:11] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:11] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:11] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:11.202895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:11] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:22.617152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:22.622152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:22.626154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:22.632151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:22.637149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:22.642166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:22.654178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:22.661178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:22.667177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:22] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:25.209281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:25.211308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:25.214282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:25.219322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:25] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:25] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:25.227288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:25.229288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:25] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:25] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:42.029138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:42.033144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:42.038139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:42.042140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:42.047139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:42.055141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:42.064137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:42.072139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:42.076139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:42] "POST /myclass/api/Get_List_UE_Given_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:43.864433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:45.813450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:45.816497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:45.817495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:45.821535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:45] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 - +INFO:root:2025-11-16 11:06:45.826069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:06:45.830087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:45] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:45] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:45] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:06:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 11:22:26.485890 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 11:22:26.485890 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 11:22:26.485890 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 11:22:26.485890 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 11:22:26.485890 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 11:22:37.729610 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 11:22:37.729610 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 11:22:37.729610 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 11:22:37.729610 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 11:22:37.729610 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\attached_file_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 11:24:45.651657 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 11:24:45.652657 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 11:24:45.652657 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 11:24:45.652657 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 11:24:45.653662 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 11:43:48.556972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.559947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.563978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.568977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.574976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.582037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.587036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:48.594554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:48] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:43:58.081487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:58.084517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:43:58.088490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:58] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:58] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:58] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:43:59.528773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:43:59] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:44:01.709334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:44:01.711339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:44:01.712342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:01] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:01] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:01] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:44:03.227457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:03] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:44:10.569830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:10] "POST /myclass/api/Duplicate_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:44:10.718926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:44:10] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\attached_file_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 11:45:07.570778 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 11:45:07.571779 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 11:45:07.571779 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 11:45:07.571779 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 11:45:07.571779 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 11:45:07.637482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:45:07.639486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:45:07.640487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:45:07] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:45:07] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:45:07] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:45:22.315950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:45:22] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:46:36.110932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:46:36.114947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:46:36.119935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:36] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:36] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:36] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:46:37.473298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:37] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:46:39.800584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:46:39.804599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 11:46:39.808611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:39] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:39] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:39] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2025-11-16 11:46:41.082253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 11:46:41] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:10.138006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:10] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:11.196427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:12.442882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:05:12.445858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:12] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:12] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:17.211637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:05:17.215654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:17] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:17] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:25.453995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:05:25.458000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:25] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:25] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:05:39.725509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:05:39.729526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:39] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:05:39] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:06:03.201426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:06:03.205439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:06:03] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:06:03] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 12:06:16.568187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 12:06:16.572190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:06:16] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 12:06:16] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Dashbord_queries\\BPF.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 12:21:03.729992 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 12:21:03.729992 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 12:21:03.729992 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 12:21:03.729992 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 12:21:03.729992 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Dashbord_queries\\BPF.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 12:23:12.479474 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 12:23:12.479474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 12:23:12.479474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 12:23:12.479474 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 12:23:12.479474 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Dashbord_queries\\BPF.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 12:23:29.989764 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 12:23:29.989764 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 12:23:29.989764 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 12:23:29.989764 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 12:23:29.989764 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Dashbord_queries\\BPF.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 12:23:53.786828 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 12:23:53.786828 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 12:23:53.786828 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 12:23:53.786828 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 12:23:53.786828 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 15:13:35.916032 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 15:13:35.916032 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 15:13:35.916032 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 15:13:35.916032 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 15:13:35.916032 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 15:15:26.701291 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 15:15:26.701291 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 15:15:26.701291 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 15:15:26.701291 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 15:15:26.701291 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\base_class_calcul_note.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 15:16:28.338238 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 15:16:28.338238 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 15:16:28.339233 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 15:16:28.339233 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 15:16:28.339233 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 15:18:55.742129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.744127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.747644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.750139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.752139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:18:55.796159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.799157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:18:55.802157 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:18:55.807157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:18:55.813341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:18:55.823336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:18:55.829732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:18:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:19:02.181990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:19:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:19:03.829626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:19:03] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:19:05.348557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:19:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:19:07.135719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:19:07.139738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:19:07] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:19:07] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:20:02.783754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:20:02.784755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:20:02] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:20:02] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:20:26.356369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:20:26.360353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:20:26] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:20:26] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:21:05.545693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:21:05.548692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:21:05] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:21:05] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:21:30.631691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:21:30.635692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:21:30] "POST /myclass/api/Get_Humain_Ressource_With_Planning/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:21:30] "POST /myclass/api/Get_Humain_Ressource_With_Planning_And_Cost/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:21:50.096377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:21:50] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Dashbord_queries\\ressources_humaines_tbd_qries.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 15:23:08.718541 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 15:23:08.718541 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 15:23:08.719546 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 15:23:08.719546 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 15:23:08.719546 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 15:24:38.367664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:24:38.371602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:24:38] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:24:38] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:24:49.008046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:24:49] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:24:52.870385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:24:52.874383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:24:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:24:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:25:06.606609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:25:06] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:27:38.146268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:27:38] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:27:38.244590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:27:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:38:37.435187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:38:37.439188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:38:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:38:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-11-16 15:41:16.717667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-11-16 15:41:16.720667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:41:16] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 15:41:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2025-11-16 16:27:54.808155 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-11-16 16:27:54.808155 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-11-16 16:27:54.808155 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-11-16 16:27:54.808155 : ++ FLASK PORT 5001 ++ +INFO:root:2025-11-16 16:27:54.808155 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-11-16 16:27:54.931764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 16:27:54] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation HTTP/1.1" 308 - +INFO:root:2025-11-16 16:27:54.937764 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tJMJ FORMATION
\n\t\t\t\t\t388 Chemin Long Pré
\n\t\t\t\t\t97232 Le Lamentin
\n\t\t\t\t\tMartinique\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20251114\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 16/11/2025 Date échéance : 16/11/2025
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : Contrat MTT/2025_N°0012/JMJ FORMATION
\n\t\t\t\t\tPériode : 13/11/2025 au 14/12/2025 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
ELYOS - Pack BASIQUE
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
1130 €130 €
 
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 130   €
    TVA : 11.05   €
    Montant TTC : 141,05   €
\n\n\t\t\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire

\n\n\t\t\t

\n\t\t\t\t> Relevé d\'identité bancaire\n\t\t\t

\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
BanqueCode agenceNuméro de compteClé RIB
30087338560002128550340
\n\n\t\t\t

\n\t\t\t\t> Identification internationale\n\t\t\t

\n\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\n\n\n\n\t\t\t\t\n\n\t\t\t
IBANCode BIC
FR76 3008 7338 5600 0212 8550 340CMCIFRPP
\n\n\t\t\n\n\t\n\n\t
\n\t
\n\n\t\n\n\t\tTermes et conditions
\n\n\t\tPas d\'escompte accordé pour paiement anticipé.
\n\t\tEn cas de non-paiement à la date d\'échéance, des pénalités calculées à trois fois le taux d\'intérêt légal\n\t\tseront appliquées.
\n\t\tTout retard de paiement entraînera une indemnité forfaitaire pour frais de recouvrement de 40€.
\n\n\t\n\n\t
\n\t\t\n\n\t\t\t

MySy Training
\n\n\t\t\t\tMySy Training Technology (MTT), société par actions simplifiée au capital de 10 000 euros, dont le siège\n\t\t\t\tsocial est\n\t\t\t\tsitué 2, place des magnolias, 77680, Roissy en Brie, immatriculée au Registre du Commerce et des\n\t\t\t\tSociétés sous le numéro 917 500 860 R.C.S. Melun\n\t\t\t

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20251114.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col widths: ['50%', '10%', '20%', '20%'] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [16/Nov/2025 16:27:55] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation/ HTTP/1.1" 200 - diff --git a/attached_file_mgt.py b/attached_file_mgt.py index a7d83bd..427215a 100644 --- a/attached_file_mgt.py +++ b/attached_file_mgt.py @@ -379,6 +379,9 @@ def Internal_Usage_Store_User_Downloaded_File(Folder=None, diction=None, tab_rel local_node['related_collection'] = diction['object_owner_collection'] local_node['related_collection_id'] = diction['object_owner_id'] + if( tab_related_collection is None ): + tab_related_collection = [] + tab_related_collection.append(local_node) diff --git a/base_class_calcul_note.py b/base_class_calcul_note.py index 0addfbf..e1fcf87 100644 --- a/base_class_calcul_note.py +++ b/base_class_calcul_note.py @@ -806,11 +806,19 @@ def Cacul_UE_Note_Finale_For_calcul_mode_1(diction): classement = 0 note_precedente = "" + for sorted_data in MYSY_GV.dbname['session_formation_final_note_classement'].find(basic_qry).sort([("note_finale", pymongo.DESCENDING), ]).collation({'locale': "fr", 'numericOrdering': True}): # Gestion des Execo + + new_execo_classement = "" + is_execo = "" + if( str(note_precedente) != str(sorted_data['note_finale'])): classement = classement + 1 note_precedente = str(sorted_data['note_finale']) + else: + new_execo_classement = classement + 1 + is_execo = '1' #MAJ du rang #print(" MAJJ classement 0222 = ", classement) @@ -826,6 +834,9 @@ def Cacul_UE_Note_Finale_For_calcul_mode_1(diction): upsert=False, ) + if (is_execo == '1'): + classement = new_execo_classement + return True, "Calcul Final Moyenne et Classement ok" except Exception as e: @@ -1468,14 +1479,20 @@ def Cacul_Session_Note_Finale_For_calcul_mode_1(diction): 'locked': '0' }).sort( [("note_finale", pymongo.DESCENDING), ]).collation({'locale': "fr", 'numericOrdering': True}): + new_execo_classement = "" + is_execo = "" + if( sorted_data and "note_finale" in sorted_data.keys() ): # Gestion des Execo if (str(note_precedente) != str(sorted_data['note_finale'])): classement = classement + 1 note_precedente = str(sorted_data['note_finale']) + else: + new_execo_classement = classement + 1 + is_execo = '1' + print(" 11111 ") # MAJ du rang - #print(" MAJJ classement = ", classement) MYSY_GV.dbname['inscription'].find_one_and_update( {'_id': ObjectId(str(sorted_data['_id'])), 'partner_owner_recid': str(sorted_data['partner_owner_recid']), @@ -1488,6 +1505,9 @@ def Cacul_Session_Note_Finale_For_calcul_mode_1(diction): upsert=False, ) + if (is_execo == '1'): + classement = new_execo_classement + return True, "Calcul Final Moyenne et Classement ok" @@ -1649,6 +1669,23 @@ def Calcul_Note_Classement_Session(diction): """ Preparation des calculs """ + """ + # 1 - On nettoies les anciens calcul qui sont stoké dans les collections : + - session_formation_final_note_classement et + - session_formation_final_note_classement_detail + qui concerne cette session_id + """ + MYSY_GV.dbname['session_formation_final_note_classement_detail'].delete_many({'session_id':diction['session_id'], + 'partner_owner_recid': str( + my_partner['recid']) + }) + + MYSY_GV.dbname['session_formation_final_note_classement'].delete_many( + {'session_id': diction['session_id'], + 'partner_owner_recid': str( + my_partner['recid']) + }) + # On recupere la liste des ue_id de la promotion tab_ue_id = [] @@ -2182,9 +2219,15 @@ def Cacul_UE_Note_Finale_Standard(diction): #print(" ### sorted_data = ", sorted_data) # Gestion des Execo + new_execo_classement = "" + is_execo = "" + if (str(note_precedente) != str(sorted_data['note_finale'])): classement = classement + 1 note_precedente = str(sorted_data['note_finale']) + else: + new_execo_classement = classement + 1 + is_execo = '1' # MAJ du rang #print(" MAJJ classement = ", classement) @@ -2200,6 +2243,9 @@ def Cacul_UE_Note_Finale_Standard(diction): upsert=False, ) + if (is_execo == '1'): + classement = new_execo_classement + """ Remplir la collection 'note_categorie_session_ue' qui permet de connaitre le pourcentage de personnes @@ -2489,7 +2535,7 @@ def run_ue_pre_calcul_moyenne_somme_v2(diction): """ 08/11/2025 - Enveler de cette liste, les type d'evaluation qui sont pas configurée sur la formation. + Enveler de cette liste, les type d'evaluation, celles qui ne sont pas configurée sur la formation. """ Class_UE_type_eval = MYSY_GV.dbname['class_unite_enseignement_type_evaluation'].distinct( "type_evaluation_id", @@ -2621,6 +2667,7 @@ def run_ue_pre_calcul_moyenne_somme_v2(diction): """ Mise à jour de la collection des notes d'une session de formation : 'session_formation_final_note_classement_detail' """ + #print(" ### tab_note_final = ", tab_note_final) for note_finale in tab_note_final: qry_key = {} @@ -2862,15 +2909,21 @@ def Cacul_Session_Note_Finale_For_calcul_Stanard(diction): 'locked': '0' }).sort( [("note_finale", pymongo.DESCENDING), ]).collation({'locale': "fr", 'numericOrdering': True}): + new_execo_classement = "" + is_execo = "" + if( sorted_data and "note_finale" in sorted_data.keys() ): # Gestion des Execo if (str(note_precedente) != str(sorted_data['note_finale'])): classement = classement + 1 note_precedente = str(sorted_data['note_finale']) + else: + new_execo_classement = classement + 1 + is_execo = '1' + # MAJ du rang - MYSY_GV.dbname['inscription'].find_one_and_update( {'_id': ObjectId(str(sorted_data['_id'])), 'partner_owner_recid': str(sorted_data['partner_owner_recid']), @@ -2883,6 +2936,10 @@ def Cacul_Session_Note_Finale_For_calcul_Stanard(diction): upsert=False, ) + if( is_execo == '1'): + classement = new_execo_classement + + return True, "Calcul Final Moyenne et Classement ok" diff --git a/email_mgt.py b/email_mgt.py index 21f4bb8..65c1591 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -2490,7 +2490,7 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(diction): body = { "params": {"order_id": "MTT/2025_N°0012/JMJ FORMATION", "date_order": ": 14/07/2025", - "periode":"14/10/2025 au 13/11/2025", + "periode":"13/11/2025 au 14/12/2025", "total_ht": "130", "tva": "11.05", "total_ttc": "141,05 ", @@ -2506,9 +2506,9 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(diction): "montant": "130 €", - "invoice_id": "FACT_20251012", - "invoice_date": "19/10/2025", - "due_date": "19/10/2025", + "invoice_id": "FACT_20251114", + "invoice_date": "16/11/2025", + "due_date": "16/11/2025", "orign_order": "Contrat MTT/2025_N°0012/JMJ FORMATION", } } @@ -2542,7 +2542,7 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(diction): #print(" ### body 22 = ", body) sourceHtml = template.render(json_data=body["params"]) - orig_file_name = "invoice_FACT_20251012.pdf" + orig_file_name = "invoice_FACT_20251114.pdf" outputFilename = str(MYSY_GV.INVOICE_DIRECTORY) + str(orig_file_name) # open output file for writing (truncated binary) diff --git a/module_editique.py b/module_editique.py index 0bc4775..61054ff 100644 --- a/module_editique.py +++ b/module_editique.py @@ -1107,7 +1107,7 @@ def Editic_Log_History_Action(my_partner, courrier_template_data, related_collec 'locked':'0', 'courrier_template_type_document_ref_interne':str(courrier_template_type_document_ref_interne)} - print(" ### 0123 local_qry = ", local_qry) + #print(" ### 0123 local_qry = ", local_qry) #print(" ### 0123 target_collection = ", target_collection) #print(" ### 0123 target_collection_recid = ", target_collection_recid)