From 680c6cb126ebb4ec1ff0f2ae29af51505de93f1c Mon Sep 17 00:00:00 2001 From: cherif Date: Wed, 28 Feb 2024 21:35:04 +0100 Subject: [PATCH] 28/02/2024 - 21h30 --- .idea/workspace.xml | 27 +- Inscription_mgt.py | 34 +- Log/log_file.log | 2377 ++++++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 14 +- 4 files changed, 2414 insertions(+), 38 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 4aa521a..ff9902e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,11 @@ - + + - - - + @@ -434,7 +433,6 @@ - @@ -459,6 +457,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 5492ef9..bc016b5 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -307,10 +307,10 @@ def AddStagiairetoClass(diction): if diction['email']: mydata['email'] = str(diction['email']).strip() regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' - if (not re.fullmatch(regex, str(diction['email']) ) ): + if (not re.fullmatch(regex, str(diction['email']).strip() ) ): mycommon.myprint( - str(inspect.stack()[0][3]) + " l'adresse email "+str(diction['email'])+" est invalide") - return False, " l'adresse email -"+str(diction['email'])+"- est invalide" + str(inspect.stack()[0][3]) + " l'adresse email "+str(diction['email']).strip() +" est invalide") + return False, " l'adresse email -"+str(diction['email']).strip() +"- est invalide" if ("modefinancement" in diction.keys()): @@ -2322,12 +2322,12 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) - mydata['email'] = str(df['email'].values[n]) + mydata['email'] = str(df['email'].values[n]).strip() regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' - if (not re.fullmatch(regex, str(df['email'].values[n]))): + if (not re.fullmatch(regex, str(df['email'].values[n]).strip() )): mycommon.myprint( - str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") - return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]).strip() + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]).strip() + "- est invalide" mydata['session_id'] = str(session_data['_id']) @@ -2669,12 +2669,12 @@ def Controle_AddStagiairetoClass_mass(saved_file=None, Folder=None, diction=None mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) - mydata['email'] = str(df['email'].values[n]) + mydata['email'] = str(df['email'].values[n]).strip() regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' - if (not re.fullmatch(regex, str(df['email'].values[n]))): + if (not re.fullmatch(regex, str(df['email'].values[n]).strip() )): mycommon.myprint( - str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") - return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]).strip() + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]).strip() + "- est invalide" mydata['session_id'] = str(session_data['_id']) mydata['token'] = str(my_token) @@ -2997,12 +2997,12 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) - mydata['email'] = str(df['email'].values[n]) + mydata['email'] = str(df['email'].values[n]).strip() regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' - if (not re.fullmatch(regex, str(df['email'].values[n]))): + if (not re.fullmatch(regex, str(df['email'].values[n]).strip() )): mycommon.myprint( - str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") - return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]).strip() + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]).strip() + "- est invalide" mydata['token'] = str(my_token) @@ -3323,7 +3323,7 @@ def Controle_AddStagiairetoClass_mass_for_many_session(saved_file=None, Folder=N mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) - mydata['email'] = str(df['email'].values[n]) + mydata['email'] = str(df['email'].values[n]).strip() print(" contole du mail = ", mydata['email']) regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' if (not re.fullmatch(regex, str( mydata['email']) )): @@ -7586,7 +7586,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): - # Verifier si le modele de courrier est 'edit_by_client', au quel cas on verifie que l'appressant est bien lié à un client + # Verifier si le modele de courrier est 'edit_by_client', au quel cas on verifie que l'apprenant est bien lié à un client if ("edit_by_client" in courrier_template_data.keys() and str(courrier_template_data['edit_by_client']) == "1"): stagiaire_client_id = "" if( "client_rattachement_id" in inscription_data.keys() ): diff --git a/Log/log_file.log b/Log/log_file.log index 8cc956e..a7a0760 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2106194,3 +2106194,2380 @@ INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 16:38:20] "POST /myclass/api/Get_List_P INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 16:38:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 16:38:20] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 16:38:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:49:23.790780 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-26 21:49:23.791775 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-26 21:49:23.791775 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-26 21:49:23.791775 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-26 21:49:23.791775 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2024-02-26 21:49:32.872210 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-26 21:49:32.872210 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-26 21:49:32.872210 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-26 21:49:32.872210 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-26 21:49:32.872210 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-26 21:50:04.288619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:04.288619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:04.289631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:04] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:04] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:04.545418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:04.547419 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:04.803757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.112005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.112522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.112522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.119545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.125251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.131259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.437642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.442630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.444634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.452319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.460292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.464295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.765932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.766951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.768864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.774388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:05.782324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:05.784670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.095931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:06.097459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:06.102336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.106104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.111597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.116242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.424522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:06.426077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:06.431089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.433082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:06.438914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:06] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:22.323181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:22.324177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:22.326173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:22] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:22] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:22.909516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:22.910529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.281073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.284117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.288602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.291811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.299729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.302741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.308018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.316470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.323288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.324607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.329346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.336365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.339772 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.345289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.349047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.353128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.356125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.360364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.364606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.368693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.373279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.379109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.384996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.389133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.393145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.397424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.403277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.409276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:23.413527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:23.420531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:30.067893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:30.234623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:30.237166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:30.242193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:30.248412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:30.286917 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:30.397979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:50:30.400983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:49.077602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:49] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:50:49.080745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:50:49] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:51:01.219192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:51:01.222766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:51:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:51:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:56:00.098736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:56:00] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:56:32.121971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 21:56:32.126816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:56:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:56:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-26 21:56:52.587921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 21:56:52] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:03.150677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:02:03.155935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:02:03.159974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:03.172455 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:03.343524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:03.348523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:10.323108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:10] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:02:27.434327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:02:27.439747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:27] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:02:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:03:24.073276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:03:24.079791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:03:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:03:24.087458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:03:24.096347 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:03:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:03:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:03:24.261992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:03:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:03:24.267076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:03:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:11:49.639192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:11:49.645971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:11:49] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:11:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:11:56.664827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:11:56] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:12:57.757479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:12:57.764145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:12:57] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:12:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:13:05.272559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:13:05] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:20:39.137788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-26 22:20:39.143014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:20:39] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:20:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-26 22:20:53.748479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/Feb/2024 22:20:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:11:11.800882 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-27 19:11:11.800882 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-27 19:11:11.800882 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-27 19:11:11.800882 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-27 19:11:11.800882 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2024-02-27 19:11:23.382990 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-27 19:11:23.382990 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-27 19:11:23.383991 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-27 19:11:23.383991 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-27 19:11:23.383991 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-27 19:12:59.219063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:12:59.220052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:12:59.221045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:12:59] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:12:59] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:12:59] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:00.140275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:00.143266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:00] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.384358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.390361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.396978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.402913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.407252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.413417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.419723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.433280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.443756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.450835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.458835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.466745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.470622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.482006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.486271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.492264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.503329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.512323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.518770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.523785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.529194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.536370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.547207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.549203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.556964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.565024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.568589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:01.576224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.581680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:01.588850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:05.433001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:05.747253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:05.752862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:05.760243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:05.768176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:05.787210 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:05.895380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:05.899564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:13.666075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.670269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.674849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.679764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.688614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:13.697770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.704989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.709853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:13:13.718429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:13.730720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:13.736385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:13:26.533904 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:13:26] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:14:56.200044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:14:56] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:14:59.152816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:14:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:15:35.228540 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:15:35.234871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:15:35.242698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:15:35.250231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:15:35.266017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:15:35.278584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:15:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:40.364935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:40.375925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:40.382933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:40.389132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:40.401465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:47.356382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:47.358801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:47.360134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:47] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:47] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:47] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:47.963442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:47.964984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.752727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.756729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.760737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.765726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.771723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.779730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.787727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.797728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.801725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.815725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.827004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.833476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.841593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.849256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.859373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.865800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.876450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.886857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.893725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.903727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.910055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.915473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.919687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.927708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.936237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.946957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.952970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.961443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:48.964488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:48.974602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:49.789700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:49.792697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:49.797698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:49.801696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:49.817692 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:49.900328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:18:49.903326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:18:57.022608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:18:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:08.056876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:08.063668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:08.072665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:08.080881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:17.677067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:17] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:17.722193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:17] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:24.974369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:25] "POST /myclass/api/Update_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:25.123812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:25] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:35.541005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:35.550003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:35.558997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:35.567002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:35] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:35] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:19:45.484178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:45.489979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:45.498631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:19:45.505129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:45] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:19:45] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:20:08.421270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:20:08] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:20:09.302024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:20:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:20:39.870172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:20:39] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:20:39.904614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:20:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:21:37.699487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:21:37.703490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:21:37.707005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:21:37.718870 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:21:37.866488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:21:54.069904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:21:54.076433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:21:54.084843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:21:54.088387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:54] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:54] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:54] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:21:54] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:22:28.751147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:22:28] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:22:29.009191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:22:29] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:23:14.327801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:23:14] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:24:12.646109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:15] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:24:17.426219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:24:17.939495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:24:19.141659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:24:30.036405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:24:30.045431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:24:30.051768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:24:30.059363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:24:30.061176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:30] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:24:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:09.823710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:12] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:14.140076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:14.606824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:15.583631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:33.681300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:25:33.688530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:25:33.700780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:25:33.704354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:25:33.715276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:25:33.727446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:25:40.245225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:25:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:26:12.387629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:26:12.404643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:26:12.407644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:26:12.418644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:26:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:26:12.436406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:26:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:26:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:26:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:26:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:28:37.686060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.689793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.695635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:28:37.708753 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:28:37.887992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.891608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.905734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.919068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:28:37.923492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:28:37.932895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:28:48.104534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:28:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:35.718826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:37] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:39.453957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:58.393214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.400211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.403315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.412734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.420140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:58.432364 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.439366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:30:58.450405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:58.468031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:58.478691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:30:58.490381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:30:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:31:08.796843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:08.810667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:08.815031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:08.820043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:31:08.835544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:08.842952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:08] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:31:36.903912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:36.910102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:36.916312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:36.920132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:31:36.932538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:36] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:31:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:32:29.556059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:32] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:32:35.161861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:32:35.642098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:32:36.644392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:32:48.907333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:32:48.912937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:32:48.921097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:32:48.932921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:32:48.948720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:32:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:33:57.562003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:33:58] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:00.595371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:01.097154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:02.058945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:21.072760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:21.997919 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:22] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:25.172081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:25.175295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:26.327212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:36.039435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:36.967409 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:36] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:38.229741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:38.756164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:39.642539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:39] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:49.210307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:49.214255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:49.218469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:49.227617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:34:49.230055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:34:49.240804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:34:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:00.176973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:01] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:03.610314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:10.033413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:10] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:11.739485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:18.729292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:19] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:20.802488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:28.041326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.048214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.055176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.067827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:28.081045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.096409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:28.105739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.116397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:28.127417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:28.138327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:28.146386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:37.853680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:37.864212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:37.871052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:35:37.878246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:37.889832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:35:37.902611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:35:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:03.994986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:04] "POST /myclass/api/Create_Automatic_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:06.914700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:19.306022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:36:19.312054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:24.611893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:24] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:27.105732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:38.706937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:38] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:38.711790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:38] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:43.972568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:43] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:36:57.332182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:36:57.337193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:57] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:36:57] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:08.510808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:08] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:11.496861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:11] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:18.172962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:18] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:20.545562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.119117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.124432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.132170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.142125 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.362636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.368636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.376633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.384690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.398870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.411511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.429227 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.439179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.451789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:34.463688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:34.486476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:49.513533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:49.519690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:49.531129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:38:49.543131 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:49.556134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:38:49.568134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:38:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:39:12.800312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:39:12.804329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:39:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:39:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:39:22.365507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:39:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:39:25.431561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:39:25] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:40:24.962122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:40:25.001130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:40:25] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:40:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-27 19:42:08.041077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 19:42:08.044679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:42:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 19:42:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:27:45.624665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:27:45.629144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:27:45.633653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:27:45.642166 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:27:45.758628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:27:45.762623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:27:56.212527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:27:56] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:28:08.921822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:28:08.924839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:28:08] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:28:08] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:29:02.219002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:29:02] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:29:04.781330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:29:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:29:12.398821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:29:12] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:29:27.680473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:29:27.682812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:29:27] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:29:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:18.386503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:18] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:20.975101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:20] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:27.219465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:30:27.221464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:27.227990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:30:27.230987 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:27.338616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:27.341682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:32.356079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:30:32.359850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:42.670081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:42] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:30:51.032799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:30:51.036509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:51] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:30:51] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:31:48.695825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:31:48] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:31:51.690742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:31:51] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:32:05.763581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:32:05] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:32:15.453534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:32:15.456201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:32:15] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:32:15] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:32:52.704446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:32:52] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:32:55.248998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:32:55] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:33:45.523080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:33:45.526727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:33:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:33:45.530743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:33:45.543467 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:33:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:33:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:33:45.639901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:33:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:33:45.642928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:33:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:07.289998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:35:07.294234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:35:07.298215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:07.309492 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:07.430086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:07.433608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:13.480223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:13] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:18.676856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:35:18.680880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:18] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:18] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:25.978574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:26] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:28.419082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:34.776838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:34] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:42.250626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:35:42.254154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:42] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:42] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:49.391063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:49] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:51.837214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:51] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:35:58.347887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:35:58] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:06.044996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:06.050801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:06] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:06] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:13.946669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:13] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:16.776978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:23.525073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:23] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:30.385458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:30.388928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:30] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:30] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:36.926733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:36] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:39.453427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.323461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.325481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.330111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.339878 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.461126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.464702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.469456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.475534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.480066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.491090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.500942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.510228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.521349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:36:51.531348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:36:51.548082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:36:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:03.440628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:03.444616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:03.449625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:03.453637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:03.458625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:03.466316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:03] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:21.283853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:21.287086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:24.759924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:24] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:27.410626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:37:31.298953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:37:32.899103 : Create_Convention_By_Stagiaire_PDF -list object has no element 0 - Line : 5456 +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:37:32] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65de397e8770b8e294956c84 HTTP/1.1" 500 - +INFO:root:2024-02-27 20:39:01.725237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:39:01] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:39:05.122339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:39:05] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:39:08.485512 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : addd  cpp   
Représenté par :  prenommm prenommm  en qualité de
Contact : mysytraining+client101@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN OLFACTOTHERAPIE 

Durée : 21.0   jour (s) 
Lieu de formation :site_ville_01 
Dates de formation : 10/03/2024  13/03/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
nom04   prenom04   mysytraining+client201@gmail.com
nom5   prenom5   mysytraining+client202@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 2590 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_70192.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 2 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : adr  CP   
Représenté par :  prenom prenom  en qualité de dg
Contact : mysytraining+client204@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN OLFACTOTHERAPIE 

Durée : 21.0   jour (s) 
Lieu de formation :site_ville_01 
Dates de formation : 10/03/2024  13/03/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
nom2   prenom2   mysytraining+client101@gmail.com
nom03   prenom03   mysytraining+client102@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 2590 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_79094.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:39:08] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65de397e8770b8e294956c84 HTTP/1.1" 200 - +INFO:root:2024-02-27 20:39:08.986392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:39:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:42:36.339585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:42:36] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:46:02.811944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:46:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:46:02.815442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:46:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:08.975802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:08.982335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:18.706467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:18] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:18.709499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:18] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:53.246570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:47:53.249896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:47:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:02.423785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:02] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:03.174892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:10.461251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:10] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:18.777879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:48:18.782130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:18] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:18] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:27.717337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:27] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:31.115942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:31] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:39.037105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 20:48:39.040140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:39] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:53.852640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:53] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:48:56.213237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:48:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 20:49:00.120790 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : addd  cpp   
Représenté par :  prenommm prenommm  en qualité de
Contact : mysytraining+client101@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN OLFACTOTHERAPIE 

Durée : 21.0   jour (s) 
Lieu de formation :site_ville_01 
Dates de formation : 10/03/2024  13/03/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
nom04   prenom04   mysytraining+client201@gmail.com
nom5   prenom5   mysytraining+client202@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 2590 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_44291.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 2 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : adr  CP   
Représenté par :  prenom prenom  en qualité de dg
Contact : mysytraining+client204@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN OLFACTOTHERAPIE 

Durée : 21.0   jour (s) 
Lieu de formation :site_ville_01 
Dates de formation : 10/03/2024  13/03/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
nom2   prenom2   mysytraining+client101@gmail.com
nom03   prenom03   mysytraining+client102@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 2590 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 27/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_75721.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:49:00] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65de3c8b8770b8e294956c8c HTTP/1.1" 200 - +INFO:root:2024-02-27 20:49:00.765237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 20:49:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:01.724447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:01] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:03.893323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:03] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:07.305865 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

N° de déclaration d\'activité :  mysy_NDA 1234 

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

Et

\n
Et le bénéciaire :
 prenom1 nom1 
(Ci-aprés nommé le client)
Situé :     

\n
\n
\n

PRÉAMBULE
EZUS Lyon   MySy Dev Compte filiale de Valorisation de l\'Université Claude Bernard Lyon I, s\'est vue confier la gestion des activités industrielles et commerciales des centres et services de l\'UCBL, ainsi que les actions de formation continue par la convention cadre signée le 23 janvier 2008.

\n

A cet effet, la société MySy Dev Compte  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

Est conclu un contrat de formation professionnelle en application de l\'article L6353-3 du Code du Travail.

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation

\n

 MySy Dev Compte 

\nFormation : DEMO 1 PRATICIEN EN OLFACTOTHERAPIE 
Durée : 21.0   jour (s) 
Lieu de formation :   site_ville_01 
Dates de formation :  10/03/2024  13/03/2024 
Nom formateur :  
\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.

\n

Article 4 : Prix de la formation
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire :  2590 €

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

Paris , 27/02/2024 

\n\n\n\n\n\n\n\n
\n

 

\nPour l\'organisme de formation Sekou Cheif   BALDE \n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_82218.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:07] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65de39c48770b8e294956c87 HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:07.546273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:25.986107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:26] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:29.001765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:29] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:32.079743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 21:17:32.114267 : Create_Convocation_By_Stagiaire_PDF L'identifiant du modèle de courrier est invalide +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:32] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65b7bd14ce14fe0d46e393d3 HTTP/1.1" 500 - +INFO:root:2024-02-27 21:17:41.156009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:41] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:17:53.102989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-27 21:17:53.106727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:53] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:17:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:00.489067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:00] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:03.308249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:08.270119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:08] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:10.974430 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:10] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:14.053197 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  prenom1 nom1  

Situé :

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN OLFACTOTHERAPIE
Durée :  21.0 jour (s)
Lieu de formation :   site_ville_01
Dates de formation :  10/03/2024 13/03/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_31625.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  prenom2 nom2  

Situé :

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN OLFACTOTHERAPIE
Durée :  21.0 jour (s)
Lieu de formation :   site_ville_01
Dates de formation :  10/03/2024 13/03/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_29072.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  prenom03 nom03  

Situé :

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN OLFACTOTHERAPIE
Durée :  21.0 jour (s)
Lieu de formation :   site_ville_01
Dates de formation :  10/03/2024 13/03/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_34786.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  prenom04 nom04  

Situé :

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN OLFACTOTHERAPIE
Durée :  21.0 jour (s)
Lieu de formation :   site_ville_01
Dates de formation :  10/03/2024 13/03/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_30044.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  prenom5 nom5  

Situé :

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN OLFACTOTHERAPIE
Durée :  21.0 jour (s)
Lieu de formation :   site_ville_01
Dates de formation :  10/03/2024 13/03/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 27/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_29461.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:14] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/dwWQb9AL0s99xU5aS8q29cXW3SL9WUa5UA/65de26a08770b8e294956c36/65de43788770b8e294956c92 HTTP/1.1" 200 - +INFO:root:2024-02-27 21:18:14.688008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [27/Feb/2024 21:18:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:13:15.937796 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 12:13:15.938798 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 12:13:15.938798 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 12:13:15.938798 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 12:13:15.938798 : ++ LMS_BAS_URL mysy-training.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 +INFO:root:2024-02-28 12:13:30.118463 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 12:13:30.118463 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 12:13:30.118463 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 12:13:30.119489 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 12:13:30.119489 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 12:14:07.371369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:07.373356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:07.375723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:07.800730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:07.801746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.744332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.747695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.754146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.759777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.766289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.770320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.780495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.787072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.791224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.801018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.804271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.811612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.816751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.823069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.827104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.831153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.837767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.842817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.850403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.853365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.861034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.864580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.868744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.872232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.879612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.882599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.887939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:08.891492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.897588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:08.904057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:14.359657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:14.671172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:14.678229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:14.689070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:14.699521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:14.722140 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:14.880095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:14.885071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:20.504246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.510156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.516183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.520933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.528624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:20.540731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.551755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.560282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.570146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:20.575572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:20.586321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:28.405337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:28.411458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:28.417307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:28.426311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:28.446140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:28.454410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:48.656660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:14:48.659406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:51.988500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:14:56.014302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:14:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:15:00.718820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:15:02.672118 : Sent_Convention_Stagiaire_By_Email -list object has no element 0 - Line : 7658 +INFO:root:2024-02-28 12:15:02.673131 : WARNING impossible d'envoyer la convention a l'apprenant : 65de28cc5f365d26c95a2a52 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:15:02] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:15:02.837767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:15:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.611911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.616930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.620929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.635525 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.820185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.831193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.837826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.844114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.850766 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.865149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.882379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.889514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.911496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:00.923540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:00.941902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:05.773917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:05.869452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:05.872706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:25.875989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:25.972742 : Controle_add_class_mass : entete du fichier csv. 'formation_code_externe' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:25] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:46.795393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:46.800431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:46.803412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:46.817374 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:46.990293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:17:46.994308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:17:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:17:59.461204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:00.043241 : external_code = MYSY_Demo_AP ==> DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2024-02-28 12:18:00.052255 : ela_index_record_field - INDEXATION IMPOSSIBLE. 'is_Valide_partner_owner_recid_count' est invalide +INFO:root:2024-02-28 12:18:00.052255 : 1 ont été indexes => title +INFO:root:2024-02-28 12:18:00.777878 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Demo_AP +INFO:root:2024-02-28 12:18:00.920267 : external_code = MYSY_Demo_OP ==> DEMO 1 PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2024-02-28 12:18:00.928271 : ela_index_record_field - INDEXATION IMPOSSIBLE. 'is_Valide_partner_owner_recid_count' est invalide +INFO:root:2024-02-28 12:18:00.928271 : 1 ont été indexes => title +INFO:root:2024-02-28 12:18:01.386974 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Demo_OP +INFO:root:2024-02-28 12:18:01.533345 : external_code = MYSY_Demo_AR ==> DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2024-02-28 12:18:01.542542 : ela_index_record_field - INDEXATION IMPOSSIBLE. 'is_Valide_partner_owner_recid_count' est invalide +INFO:root:2024-02-28 12:18:01.542542 : 1 ont été indexes => title +INFO:root:2024-02-28 12:18:02.018574 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Demo_AR +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:02] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:04.251601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:08.174957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.178192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.183992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.190890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.199183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:08.211725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.217483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.220610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:08.227890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:08.238894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:08.253910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:24.892827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:24.895854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:24.897026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:24] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.519460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.521461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.898269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.903590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.910491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.916821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.925440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.931207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.940551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.957920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.965460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:25.972655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.985999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:25.998755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.014813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.022583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.027925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.040427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.057569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.064878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.078470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.088211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.094804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.106259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.116811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.131291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.141887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.152281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.167686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.177462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:26.189913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:26.192918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:26] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:27.053083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:27.059083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:27.064083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:27.072083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:27.081083 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:27.220972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:18:27.225970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:18:34.300387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:18:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:19:39.240078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:19:39.246169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:19:39.255582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:19:39.260611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:39] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:39] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:39] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:39] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:19:49.616974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:49] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:19:49.897863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:19:49] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:21:26.144312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:21:26.154043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:21:26.162479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:21:26.165287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:26] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:26] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:26] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:26] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:21:38.781510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:38] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:21:38.983305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:21:39] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:36.125588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:36.131162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:36.137473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:36.148486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:36.163413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:36.169523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:43.246619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:43.282755 : Controle_AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:43] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:52.582709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.586518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:52.593767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.603115 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:52.753726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.758578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.763228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.770426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:22:52.775949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:22:52.792838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:22:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:06.968162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:07.003192 : Controle_AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:07] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:17.722760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.726149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.734624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:17.750352 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:17.924245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.929994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.934468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.939739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.948581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:17.956854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:28.938970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:28.987394 : Controle_AddStagiairetoClass_mass_for_many_sessionLigne : 2: Le code externe de la formation et le code de la session ne correspondent pas (2). +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:28] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.073548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:45.080917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:45.089477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:45.098463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.113927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.129618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.141769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:45.150581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:23:45.163012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.176896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:45.185689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:55.855970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:56] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:56.829438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:23:57.046266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:23:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:02.968256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:24:02.975538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:24:02.984744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:24:02.996026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:24:03.003077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:03.018394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:10.387082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:16] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:17.054373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:26.173795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:28] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:30.319074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:35.293925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:36] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:37.221025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:42.661118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:44] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:44.954537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:51.058754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:52] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:24:53.244745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:24:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:00.938505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:01] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:02.463830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:07.089756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.097319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.105624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.113794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.125813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:07.147745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.158170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.162712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:07.170722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:07.184707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:07.190278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:16.119064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:16.134251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:16.143826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:16.154579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:16.162557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:16.178780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:34.804042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:25:34.809475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:34] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:36.584336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:36] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:45.056841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:45] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:48.305450 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : addd  cppp   
Représenté par :  prenommm prenommm  en qualité de
Contact : mysytraining+client101@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 20/04/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 28/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_78078.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 2 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : adr  CP   
Représenté par :  prenom prenom  en qualité de dg
Contact : mysytraining+client204@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 20/04/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysylaplumedepierrot+01@gmail.com
part nom6_client   part 6   mysylaplumedepierrot+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 28/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_88202.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:49] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/hIW20vUZ4XBJH6rTBPbRl5gPTn1hPeyS7g/65df17cc6483f6e29fbd4138/65de3c8b8770b8e294956c8c HTTP/1.1" 200 - +INFO:root:2024-02-28 12:25:49.188149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:25:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:26:02.367095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:26:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:26:05.291958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:26:05] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:26:10.043289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:26:10.209084 : Sent_Convention_Stagiaire_By_Email -list object has no element 0 - Line : 7658 +INFO:root:2024-02-28 12:26:10.209084 : WARNING impossible d'envoyer la convention a l'apprenant : 65df17da5f365d26c95a7572 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:26:10] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:26:10.523751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:26:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:56.701659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:56.704083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:56.707162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:56] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:56] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:56] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:57.278460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:57.280906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.035931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.043262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.052279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.056503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.063041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.070463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.076888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.087467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.095972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.101592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.116232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.122308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.130925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.151030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.159675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.161665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.166488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.178415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.184576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.189928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.197164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.207126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.212624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.228991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.237242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.241625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.247905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.254015 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:27:58.259688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:27:58.266133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:27:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:15.945120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:15.955810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:15.958839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:15.968029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:15.981757 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:16.149363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:16.153597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:16] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:20.453883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:20.460411 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:20.465668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:20.473234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:20.482851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:20.487789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:27.927104 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:27.934308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:27.943943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:27.948966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:27.964142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:56.003119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:56.009240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:56.014538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:56.026714 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:56.187590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:28:56.348714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:56.353116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:56.359090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:28:56.368521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:28:56] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 12:30:19.697214 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 12:30:19.697214 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 12:30:19.697214 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 12:30:19.697214 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 12:30:19.697214 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 12:30:37.653367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:30:37.660153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:30:39.461289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:39] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:30:42.306040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:42] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:30:45.590938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:30:46.752715 : Sent_Convention_Stagiaire_By_Email -list object has no element 0 - Line : 7658 +INFO:root:2024-02-28 12:30:46.752715 : WARNING impossible d'envoyer la convention a l'apprenant : 65df17da5f365d26c95a7572 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:46] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:30:46.860364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:30:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:31:11.182427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:31:11] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:31:11.188334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:31:11] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 12:31:17.360749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 12:31:17.368902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:31:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 12:31:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 12:40:15.976936 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 12:40:15.976936 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 12:40:15.976936 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 12:40:15.977949 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 12:40:15.977949 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 12:41:37.172812 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 12:41:37.172812 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 12:41:37.172812 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 12:41:37.172812 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 12:41:37.172812 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 13:30:52.777081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:30:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:30:56.495053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:30:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:31:56.234523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:31:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:31:58.632115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:31:58] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:32:03.667056 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 1 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : addd  cppp   
Représenté par :  prenommm prenommm  en qualité de
Contact : mysytraining+client101@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 20/04/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom3_client   part 3   mysytraining+apprenant2@gmail.com
part nom4_client   part 4   mysytraining+apprenant3@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 28/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_50912.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

\n\n\n\n\n\n\n\n
\n

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 

\n

 

\n
\n

Et le bénéciaire : Client 2 Nom   Réprésenté par
(Ci-aprés nommé le client)
Situé : adr  CP   
Représenté par :  prenom prenom  en qualité de dg
Contact : mysytraining+client204@gmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

Article 1 : Objet, nature, et durée de la formation
Le bénéciaire entend faire participer une partie de son personnel à l\'action de formation suivante organisée par l\'organisme de formation MySy Dev Compte 

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

Durée : 21.0   jour (s) 
Lieu de formation :Paris 2 
Dates de formation : 20/04/2024  24/04/2024 
Nom formateur :  

\n

Article 2 : Programme de la formation
La description detaillée du programme (méthodes pédagogiques, évaluation) est fourni au client

\n

Article 3 : Engagement de participation à la formation
Le bénéciaire s\'engage à assurer la présence du / des stagiaire/s aux dates et lieux prévus ci-dessus.
Liste des stagiaires : 

\n
part nom5_client   part 5   mysylaplumedepierrot+01@gmail.com
part nom6_client   part 6   mysylaplumedepierrot+02@gmail.com
\n

Article 4 : Prix de la formation 
La formation est réglée en totalité par le client
Coût pédagogique par stagiaire : 1550.0 

\n

Article 5 : Modalités de réglement
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article 6 : Moyes pédagogiques et techniques mises en oeuvre
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

Article x : Litiges
orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

\n

 

\n

 

\n

Paris , 28/02/2024 

\n\n\n\n\n\n\n\n
\n

Pour l\'organisme de formation
Sekou Cheif  BALDE

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

MySy Dev Compte 
Téléphone : 
Site web : www.mysy-test.com 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd3_76519.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:32:06] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:32:06.263108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:32:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:36.856019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:36] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:39.982046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:40] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:43.673154 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_28365.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_29115.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_14735.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_01119.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_71745.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:44] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/hIW20vUZ4XBJH6rTBPbRl5gPTn1hPeyS7g/65df17cc6483f6e29fbd4138/65de43788770b8e294956c92 HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:44.930914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:56.919884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:56] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:56:59.087014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:56:59] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:08.681312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 13:57:10.068412 : Sent_Convocation_Stagiaire_By_Email L'identifiant du modèle de courrier est invalide +INFO:root:2024-02-28 13:57:10.068412 : WARNING impossible d'envoyer la convocation a l'apprenant : 65df17da5f365d26c95a7572 +INFO:root:2024-02-28 13:57:10.157033 : Sent_Convocation_Stagiaire_By_Email L'identifiant du modèle de courrier est invalide +INFO:root:2024-02-28 13:57:10.158042 : WARNING impossible d'envoyer la convocation a l'apprenant : 65df17dc5f365d26c95a75a3 +INFO:root:2024-02-28 13:57:10.229994 : Sent_Convocation_Stagiaire_By_Email L'identifiant du modèle de courrier est invalide +INFO:root:2024-02-28 13:57:10.231089 : WARNING impossible d'envoyer la convocation a l'apprenant : 65df17dd5f365d26c95a75d2 +INFO:root:2024-02-28 13:57:10.282222 : Sent_Convocation_Stagiaire_By_Email L'identifiant du modèle de courrier est invalide +INFO:root:2024-02-28 13:57:10.282222 : WARNING impossible d'envoyer la convocation a l'apprenant : 65df17de5f365d26c95a7601 +INFO:root:2024-02-28 13:57:10.349871 : Sent_Convocation_Stagiaire_By_Email L'identifiant du modèle de courrier est invalide +INFO:root:2024-02-28 13:57:10.349871 : WARNING impossible d'envoyer la convocation a l'apprenant : 65df17df5f365d26c95a762f +INFO:root:2024-02-28 13:57:10.388896 : Editic_Log_History_Action -'NoneType' object has no attribute 'keys' - Line : 792 +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:10] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:10.567754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:53.107802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 13:57:53.111271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 13:57:53.117583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:53.129958 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:53.264170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:57:53.267712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:57:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:06.751547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:06] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:18.639983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 13:58:18.646403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:18] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:18] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:32.819539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:32] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:39.175819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:39] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:49.585529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:49] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:58:52.383330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:58:52] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:59:02.568637 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_07526.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_87878.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_53911.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_54524.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_25028.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:59:08] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 13:59:08.265532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 13:59:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 13:59:52.657348 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 13:59:52.657869 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 13:59:52.657869 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 13:59:52.657869 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 13:59:52.657869 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 14:00:26.912454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:00:26.919448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:00:30.325872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:30] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:00:32.612304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:32] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:00:36.100125 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_69978.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_68335.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_71362.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_02172.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_86019.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:44] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:00:44.319149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:00:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:02:52.970663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:02:52.975550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:02:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:02:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:02:55.160231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:02:55] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:02:58.485104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:02:58] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:03:02.441710 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_12561.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_34853.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_54339.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_36863.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_57962.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:03:08] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:03:08.889195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:03:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 14:04:53.288040 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 14:04:53.288040 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 14:04:53.288040 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 14:04:53.288040 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 14:04:53.288040 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 14:05:27.237436 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:05:27.241913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:27] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:05:44.965230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:05:44.970715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:05:48.428544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:48] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:05:51.683705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:05:51] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:05:58.252903 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_44738.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_60777.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_60516.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_00079.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_47664.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:06:03] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:06:03.933668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:06:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-28 14:06:55.206125 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-28 14:06:55.207140 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-28 14:06:55.207140 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-28 14:06:55.207140 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-28 14:06:55.207140 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-28 14:06:55.257038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:06:55.258562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:06:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:06:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:06:57.614970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:06:57] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:06:59.988420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:00] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:05.933250 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_96746.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_71534.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_86872.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_97941.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_62245.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:10] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:10.517836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:20.802089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:20] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:23.652549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:23] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:25.998050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:26] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:30.595990 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 2 part nom2  

Situé : adresse01
code_postal01 ville01
pays01

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_07169.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 3 part nom3_client  

Situé : adresse02
code_postal02 ville02
pays02

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_04086.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 4 part nom4_client  

Situé : adresse03
code_postal03 ville03
pays03

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_08268.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 5 part nom5_client  

Situé : adresse04
code_postal04 ville04
pays04

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_34737.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention de :  part 6 part nom6_client  

Situé : adresse05
code_postal05 ville05
pays05

\n
\n
\n
\n
\n
 
\n
L\'Organisme de formation  MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé : place du test  
Déclation d\'activité :  mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes : Sekou Cheif BALDE 
Contact :  cbalde@mysy-training.com 
Téléphone : 0123456789 
\n

\n
à le plaisir de vous convier à la formation ci-dessous :


Formation :   DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Durée :  21.0 jour (s)
Lieu de formation :   Paris 2
Dates de formation :  20/04/2024 24/04/2024
Nom formateur :  
\n

Vous êtes invités à vous présenter …….. minutes avant l\'horaire prévu.
\n
Cette formation se deroule aux dates suivantes :

\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 28/02/2024
\n

 

\n

 MySy Dev Compte 
Téléphone : 01234562 
Email :  mysytraining+dev@gmail.com 
Site :  www.mysy-test.com 

\n

 

\n
' + dest = <_io.BufferedRandom name='./temp_direct/Convocation_dbdd3_99073.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:31] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/hIW20vUZ4XBJH6rTBPbRl5gPTn1hPeyS7g/65df17cc6483f6e29fbd4138/65de43788770b8e294956c92 HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:31.730450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:07:54.457618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:07:54.462350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:54] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:07:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:08:01.748096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:08:02] "POST /myclass/api/Prepare_and_Send_Facture_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:08:02.298538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:08:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:08:02.632621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:08:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:08:36.419946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:08:36.425770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:08:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:08:36] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:14:13.568529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:14:13.572783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:14:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:14:13.579553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:14:13.584867 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:14:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:14:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:14:13.720807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:14:13.724938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:14:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:14:13] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:16:04.841264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:16:04.845268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:16:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:16:04] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-28 14:16:43.516428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-28 14:16:43.525051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:16:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [28/Feb/2024 14:16:43] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index f6a3bdd..66c3522 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -5886,14 +5886,14 @@ def Prepare_and_Send_Convocation_From_Session_By_Email(tab_files, Folder, dictio mycommon.myprint(" WARNING impossible d'envoyer la convocation a l'apprenant : " + str(single_inscrit['_id']) ) - # Traitement de l'eventuel fichier joint - tab_files_to_attache_to_mail = [] + # Traitement de l'eventuel fichier joint + tab_files_to_attache_to_mail = [] - """ - 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history - """ - local_status, local_retval = module_editique.Editic_Log_History_Action(my_partner, courrier_template_data, - str(diction['session_id']), "inscription", str(single_inscrit['_id'])) + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + local_status, local_retval = module_editique.Editic_Log_History_Action(my_partner, courrier_template_data, + str(diction['session_id']), "inscription", str(single_inscrit['_id'])) return True, " Les convocations ont été correctement envoyées par emails"