diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 135c374..e772593 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,12 +1,15 @@ - + + - - + + + + @@ -435,7 +438,6 @@ - @@ -460,6 +462,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 580ca72..8947e76 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -5335,7 +5335,7 @@ def AcceptAttendeeInscription(diction): """ local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne(my_partner, "CONF_INSCRIPTION", - str(ret_val2['session_id']), 'inscription', str(diction['inscription_id'])) + str(ret_val2['session_id']), 'inscription', str(diction['inscription_id']), "") @@ -7303,7 +7303,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -7444,6 +7444,15 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): smtpserver.close() print(" Email envoyé " + str(val)) + """ + 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(diction['inscription_id'])) + + """ # Ajout de l'evenement dans l'historique """ @@ -7806,7 +7815,7 @@ def Sent_Convention_Individuelle_Stagiaire_By_Email(tab_files, Folder, diction): ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -8329,7 +8338,7 @@ def Download_Convention_Stagiaire_PDF(diction): ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -8570,7 +8579,7 @@ def Download_Convention_Individuelle_Stagiaire_PDF(diction): ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -8774,7 +8783,7 @@ def Download_Convention_Stagiaire_PDF_By_Partner_client(diction): ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -8815,7 +8824,6 @@ donc on n'envoie pas l'email à l'adresss de prod ou contact du client def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path, Folder, diction): try: - print(" #### Sent_Convention_Stagiaire_By_Email_By_Partner_client diction = ", diction) field_list_obligatoire = ['token', 'courrier_template_id', 'email_test', 'email_production', 'partner_client_id', 'session_id'] for val in field_list_obligatoire: @@ -9075,7 +9083,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat ts = datetime.now().timestamp() ts = str(ts).replace(".", "").replace(",", "")[-5:] - orig_file_name = "Convention_" + str(my_partner['recid']) + "_" + str(ts) + ".pdf" + orig_file_name = "Convention_" + str(my_partner['recid'])[0:5] + "_" + str(ts) + ".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) + "/" + str(orig_file_name) # open output file for writing (truncated binary) @@ -9224,6 +9232,25 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat smtpserver.close() print(" Email envoyé " + str(val)) + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + # Recuperation des données du stagiaire + inscription_data = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + 'client_rattachement_id': str( + diction['partner_client_id'])}) + + for inscription in inscription_data: + + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( + my_partner, "CONVENTION_STAGIAIRE_ENTREPRISE", str(diction['session_id']), 'inscription', + str(inscription['_id']), str(courrier_template_data['_id'])) + + #print(" local_status = ", local_status) + + """ # Ajout de l'evenement dans l'historique """ diff --git a/Log/log_file.log b/Log/log_file.log index 43c36b0..fa000af 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2068373,3 +2068373,4309 @@ INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:50:40] "POST /myclass/api/Get_Partne INFO:root:2024-01-31 19:50:40.354580 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:50:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:50:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.715437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.719166 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.722885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.733955 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.848546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.851563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.856567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.863831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.870827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.878095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.880531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:03.892118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.909579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:03.931064 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:11.296455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:11.300401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:11.306400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:51:11.314398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:11.323252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:30.713646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:30] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:35.519576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:35] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:51:51.419721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:51:51] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:53:01.998747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.003158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.008372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.015339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.020345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.031344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:53:02.047559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-31 19:53:02.057238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:53:02.075583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-01-31 19:53:02.096364 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [31/Jan/2024 19:53:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:14:54.509790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 09:14:54.511201 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 09:14:54.511201 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 09:14:54.511201 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 09:14:54.512216 : ++ 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-01 09:15:12.446238 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 09:15:12.446238 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 09:15:12.446238 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 09:15:12.446238 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 09:15:12.447241 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 09:16:17.900192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:17.902208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:17.904625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:18.276098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:18.278962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:18.285120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:18.708034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:18.710428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.004707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.007769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.545956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.553423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.561422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.564434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.573966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.580404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.587407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.599397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.605393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.611786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.620897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.626900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.635063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.644965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.651797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.661517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.667061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.673599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.678375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.687552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.690999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.694156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.700145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.711920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.717188 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.722738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.729738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.740087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.743094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.749352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.868169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.876707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:19.878710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.895706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.903705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:19.919707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.180454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.205456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.211459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:20.216459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.221449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.231711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.501223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.517218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.526225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.534215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:20.538219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.546223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.827705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:20.832087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.842518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:20.850086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:20.862862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:20.864337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:21.151619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:21.155635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:21.170189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:21.175181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:21.182067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:21.186114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:23.478220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:23] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:23.681654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:23.684655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:23.689651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:23.696657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:23.712793 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:23.803713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:23.806870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:24.789881 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-01 09:16:24.790888 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:30.105050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.108566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.113200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.119094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.124096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.132868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:30.140291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.149940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:30.157440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:30.187611 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:38.609408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:38.613656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:38.618880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:38.623163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:38] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:38.632742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:16:52.685166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:16:52.688226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:16:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:17:35.326705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:17:35.330650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:17:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:17:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:19:29.608114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:19:29.611549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:19:29] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:19:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:19:51.815625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:19:51] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:27:23.738816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:27:23.746876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:27:23.755750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:27:23.760060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:27:23.769761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:27:23.776690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:27:23.815025 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:23] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:27:53.600264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:27:53.606670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:27:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:28:39.444854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:28:39.452562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:28:39] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:28:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:05.443127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:05] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.035435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.040780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.047539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.056074 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.274922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.279943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.288347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.297006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.309535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.321118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:29:07.333248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.347175 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.363033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:29:07.387975 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:29:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:30:30.636200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:30:30.641680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:30:30.648755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:30:30.655846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:30:30.664906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:30:30.671769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:30:30.694740 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:30:30] "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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 09:33:00.997231 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 09:33:00.997231 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 09:33:00.998262 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 09:33:00.998262 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 09:33:00.998262 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 09:33:04.280019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:04.283851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:04.286369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:04.291529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:04.296012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:33:04.302088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:33:04.916103 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:04] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:33:53.306024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:53.355597 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:33:53.441662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:33:53.445201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:33:53.461965 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:33:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:02.233790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.238326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.241787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.246838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:02.252990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.261708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:02.272187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.277190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:02.279182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:02.306417 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:30.801565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:30.820535 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:30.909950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:30.912958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:30.929081 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:35.417785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.420169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.424723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.428542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.431558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.438271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:35.442274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:34:35.449874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:35.460393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:35.485905 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:34:49.246590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:34:49] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:36:47.371951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:36:47] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:36:49.139365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:36:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:37:34.462184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:37:34.466570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:37:34.472310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:37:34.477460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:37:34.479900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:37:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:37:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:37:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:37:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:37:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:38:32.877634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:38:32.880915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:38:32.883960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:38:32.888251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:38:32.895420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:38:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:38:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:38:32.915215 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:38:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:38:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:38:33] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:41:17.451776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:21] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:41:23.060256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:41:32.537268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:41:32.541722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:41:32.544096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:41:32.550583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:41:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:42:08.200830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:42:08.222255 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:42:08] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:42:10.212907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:42:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:42:17.603050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:42:17] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:42:40.168143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:42:40] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:46:00.565761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:46:03] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:46:05.064783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:46:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:47:58.003634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:01] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:02.076839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:19.267990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:19.271066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:19.276416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:19.280596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:19.290402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:19.296401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:19.302414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:19.312310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:19.324836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:19.348612 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:48:24.674280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:24.678489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:24.683079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:24.686212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:48:24.693664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:24] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:24] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:24] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:48:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:52:40.400050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:52:43.016596 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:43] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:52:44.678299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:52:44.681487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:52:45.498981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:52:51.791362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:52:51.795677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:52:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:03.037323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:05.816066 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:05] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:06.593406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:06.978621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:07.657855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:23.958655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:24.066933 : incription_training_refused_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2024-02-01 09:53:24.067930 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:24] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:25.312884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:25.668092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:26.296414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:36.386485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:36.388596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:36] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:48.761207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:48.765245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:48.769428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:48.773529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:48.777278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:48.800233 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:53:55.501469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:55.503456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:55.508681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:53:55.513487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:55] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:55] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:53:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:21.830305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:24.654393 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:24] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:26.088257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:30.951705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:44.005613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.009957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.012966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.019842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.023837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:44.036301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.037386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.044832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:44.048849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:44.075550 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:49.948958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:49.954256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:49.957406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:54:49.959966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:54:49.969660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:54:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:21.313244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:21.316428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:21.320431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:21.325902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:21.333844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:21.354984 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:25.630343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:25.633349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:25.636864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:25.641950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:25] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:34.606467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:34.608309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:34.609488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:34] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:34] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:34] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.312515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.313532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.622659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.627346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.630452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.638892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.644686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.653346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.661213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.664577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.677483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.684612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.697678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.704128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.710018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.716261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.721970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.734140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.740758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.744985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.754945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.761847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.770695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.780572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.786520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.796839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.800840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.809143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.812535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.828939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:35.835311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:35.844444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:36.526165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:36.528552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:36.532848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:36.542127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:36.546576 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:36.561904 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:36.633994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:36.637611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:36.656074 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:40.042942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:40.045938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:40.049938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:40.055840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:40.058240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:40.068135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:40.074157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:40.086823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:40.094816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:40.112971 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:45.134999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:45.139004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:45.143692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:45.146021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:45.153771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:55:59.581043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:55:59.584257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:59] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:55:59] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:57:52.268193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.270527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.275224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.280566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.288232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.295101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:57:52.304475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:52.311682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:57:52.326146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:57:52.347246 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:57:56.729285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:56.734220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:56.738371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:56.746962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:57:56.752654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:57:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:58:13.971600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:58:13.975774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:58:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:58:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:58:16.813546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:58:16] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:58:21.662033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:58:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 09:58:32.037382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 09:58:32.106189 : Prepare_and_Send_Convention_From_Session_By_Email -local variable 'single_inscrit_no_client' referenced before assignment - Line : 4298 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 09:58:32] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ 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-01 10:01:26.820317 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:01:26.820317 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:01:26.820317 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:01:26.820317 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:01:26.820317 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:01:39.049134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:01:39] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:01:42.006264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:01:42] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:01:48.208067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:01:48] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:01:48.339875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:01:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:04.859451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:04.861537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:04.865809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:04.875736 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:04.999637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:05.003631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:05.006635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:05.010635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:05.015637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:05.017640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:05.035918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:05.049150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:05.062940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:05.912754 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:15.954974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:15.957974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:15.961732 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:15.966914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:15.972187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:02:55.572627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:02:55.575995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:02:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:01.759366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:01] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:04.432248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:04] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:09.358083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:03:09.540261 : Get_Dictionnary_data_For_Template -'list_sequence_session_id' - Line : 4701 +INFO:root:2024-02-01 10:03:09.541261 : WARNING impossible d'envoyer la convention a l'apprenant : 65bb592dc34356e617402e1d +INFO:root:2024-02-01 10:03:09.664481 : Get_Dictionnary_data_For_Template -'list_sequence_session_id' - Line : 4701 +INFO:root:2024-02-01 10:03:09.664481 : WARNING impossible d'envoyer la convention a l'apprenant : 65bb5a48c34356e617403064 +INFO:root:2024-02-01 10:03:09.771522 : Get_Dictionnary_data_For_Template -'list_sequence_session_id' - Line : 4701 +INFO:root:2024-02-01 10:03:09.771522 : WARNING impossible d'envoyer la convention a l'apprenant : 65bb5abec34356e61740315e +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:09] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:09.847406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:20.589938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:22.818069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:27.490577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:27] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:27.609518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:35.336671 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:35] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:37.920241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:37] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:03:40.944813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:03:41.004440 : Get_Dictionnary_data_For_Template -'list_sequence_session_id' - Line : 4701 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:03:41] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/657327551d3796bc291cca74 HTTP/1.1" 500 - +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-01 10:06:07.743504 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:06:07.743504 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:06:07.743504 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:06:07.743504 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:06:07.743504 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:06:07.835569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:07] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:10.330012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:10] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:15.913836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:15] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:16.002478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:27.791763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:31.013077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:34.699448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:34] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:34.806611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:44.699386 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:44] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:46.525871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:46] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:49.666631 : 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 paert1_nom_client 
(Ci-aprés nommé le client)
Situé :  adrss 1  CP 1 Ville 1 

\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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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_97353.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: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 :
 prenom2 part2_nom 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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_68312.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: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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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_94449.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 - - [01/Feb/2024 10:06:50] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2024-02-01 10:06:50.143474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:06:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:20:31.946638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:20:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:20:38.088510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:20:38] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:20:47.606161 : 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 paert1_nom_client 
(Ci-aprés nommé le client)
Situé :  adrss 1  CP 1 Ville 1 

\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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_54442.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: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 :
 prenom2 part2_nom 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_76659.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: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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 01/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_81692.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 - - [01/Feb/2024 10:21:08] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:21:08.515548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:21:09] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 10:26:24.015009 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:26:24.015009 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:26:24.015009 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:26:24.015009 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:26:24.015009 : ++ 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-01 10:29:26.714373 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:29:26.714373 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:29:26.714373 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:29:26.714373 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:29:26.714373 : ++ 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-01 10:29:35.421995 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:29:35.422994 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:29:35.422994 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:29:35.422994 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:29:35.422994 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:29:35.458006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:35.461016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:35] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:35] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:54.439651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.443022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:54.447657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.456594 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:54.599597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.603061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.607860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.612432 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.617176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.623764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:54.639604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:29:54.643625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:54.671122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:29:55.287409 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:29:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:10.117618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:30:10.120089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:30:10.124621 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:30:10.130902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:30:10.137342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:10] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:44.110881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:30:44.114130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:44] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:46.739208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:46] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:50.199027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:50] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:56.949192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:56] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:30:57.295406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:30:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:07.937409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:07] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:10.196989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:10] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:14.435584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:14] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:14.524736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:31.371833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:33.521790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:33] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:36.973466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:37] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 10:31:37.130759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:31:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:32:05.558388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:05.560381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:05.564898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:05.570183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:05.578237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:32:05.594356 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:32:13.256065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:13.259530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:13.263077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:32:13.265470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:13] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:13] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:32:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:33:26.079736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:26] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:33:28.227775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:33:48.180921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:33:48.184577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:33:48.187729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:33:48.193032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:48] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:48] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:33:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:34:13.627334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:34:16.097337 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:34:16] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:34:17.549612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:34:17] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:34:23.838634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:34:23] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:35:45.501238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:45] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:35:46.874760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:35:54.249494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:35:54.252496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:35:54.255493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:35:54.260545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:35:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:20.279058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:36:23.465230 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:23] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:24.607370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:29.896710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:48.232991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:49] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:50.819971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:57.466794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:58] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:36:59.634332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:36:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.165813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.167971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.172162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.179709 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.310374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.313541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.317880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.322866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.327873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.333870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.341871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:37:11.353862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.365203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:37:11.378208 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:37:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:38:56.705431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:38:56.710483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:38:56.714494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:38:56.720086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:38:56.727697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:38:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:38:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:38:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:38:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:38:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:39:16.668972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:39:16.672624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:39:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:39:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:39:20.583219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:39:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:39:23.478123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:39:23] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:39:34.191829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:39:34.310387 : Get_Dictionnary_data_For_Template -'list_apprenant_id' - Line : 4488 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:39:34] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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-01 10:40:46.316498 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:40:46.316498 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:40:46.316498 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:40:46.316498 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:40:46.316498 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:41:16.800750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:41:16] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:41:19.505838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:41:19] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:41:27.302585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:41:27.926302 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 5215 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:41:27] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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-01 10:42:45.614291 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:42:45.614291 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:42:45.614808 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:42:45.614808 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:42:45.614808 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:42:52.761502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:42:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:42:55.136014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:42:55] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:42:58.713614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:42:59.246034 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 5215 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:42:59] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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-01 10:45:27.492734 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:45:27.492734 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:45:27.492734 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:45:27.492734 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:45:27.492734 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:45:27.710507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:45:27] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:45:31.041464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:45:31] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:45:34.118887 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom1 paert1_nom_client  

Situé :adrss 1    CP 1   Ville 1    France

\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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 01/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_04888.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  M.   prenom2 part2_nom  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 01/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_34734.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Neutre   prenom3 part nom 3  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 01/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_55027.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   penom part4_client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 01/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_53544.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom 05 part 05 client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 01/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_57944.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:45:34] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/65b7b9d76e0a176853e2d1ab HTTP/1.1" 200 - +INFO:root:2024-02-01 10:45:34.834335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:45:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:03.663473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:03] "POST /myclass/api/Create_Automatic_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:05.278656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:05] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:12.588380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:46:12.591268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:12] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:12] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:26.231841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:26] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:33.832325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:33] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:46:42.297275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:46:42.812040 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 5216 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:46:42] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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-01 10:48:07.529671 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:48:07.530674 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:48:07.530674 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:48:07.530674 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:48:07.530674 : ++ 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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 10:49:53.413670 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:49:53.414669 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:49:53.414669 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:49:53.414669 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:49:53.414669 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:49:53.522607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:49:53.526302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:49:53] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:49:53] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:49:55.021273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:49:55.779980 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 5224 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:49:55] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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-01 10:52:10.573638 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:52:10.573638 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:52:10.573638 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:52:10.573638 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:52:10.573638 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 10:54:01.915560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:54:01] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:54:05.404889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:54:05] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:54:11.409634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:54:11.946671 : Create_Convention_By_Client_PDF -list object has no element 0 - Line : 5218 +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:54:11] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +INFO:root:2024-02-01 10:55:09.614890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:55:09.617701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:09] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:55:21.791524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:55:21.794521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:55:32.142597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:55:32.145145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:55:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:26.553746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:26.557760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:26.562271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:26.566265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:26.579665 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:26.588672 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:26.706520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:26.709053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:26.723458 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:26] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:32.854817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:56:39.314142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:39.317783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 10:56:39.321297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:39] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:39] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:56:39] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:01.823484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:01] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:01.894578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:01] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:10.760242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:10] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:13.878939 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:13] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:22.318907 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_26972.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 - - [01/Feb/2024 10:58:22] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:22.667205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:41.184083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:41] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:44.280627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:44] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:49.965390 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_67585.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 - - [01/Feb/2024 10:58:55] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 10:58:56.040515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 10:58:56] "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-01 10:59:22.995552 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 10:59:22.995552 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 10:59:22.995552 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 10:59:22.995552 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 10:59:22.995552 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:01:03.008561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:01:03] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:01:05.789843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:01:05] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:01:08.479442 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_63413.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 - - [01/Feb/2024 11:01:08] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:01:08.742357 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:01: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-01 11:03:06.583779 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:03:06.583779 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:03:06.583779 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:03:06.583779 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:03:06.583779 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:03:06.632036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:03:06.636147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:03:06] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:03:06] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:03:08.419665 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_02332.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 - - [01/Feb/2024 11:03:08] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:03:08.685358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11: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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 11:05:48.740366 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:05:48.740366 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:05:48.740366 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:05:48.740366 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:05:48.740366 : ++ 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\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 11:06:57.389824 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:06:57.389824 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:06:57.389824 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:06:57.389824 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:06:57.389824 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:06:57.438189 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:06:57.442376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:06:57] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:06:57] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:06:59.596030 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_72418.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 - - [01/Feb/2024 11:06:59] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:06:59.858435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:06:59] "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-01 11:08:03.795826 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:08:03.795826 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:08:03.795826 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:08:03.795826 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:08:03.795826 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:08:03.830765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:08:03.833765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:08:03.837648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:08:03] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:08:03] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_93198.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 - - [01/Feb/2024 11:08:04] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:08:04.074244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:08:04] "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-01 11:09:20.850407 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:09:20.850407 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:09:20.850407 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:09:20.850407 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:09:20.850407 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:09:20.891945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:09:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:09:21.738468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:09:21] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:09:23.936742 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_17617.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 - - [01/Feb/2024 11:09:24] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:09:24.204971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:09:24] "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-01 11:10:12.825605 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:10:12.825605 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:10:12.825605 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:10:12.825605 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:10:12.825605 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:10:12.862779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:10:12.864302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:10:12.869754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:10:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:10:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_52727.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 - - [01/Feb/2024 11:10:13] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/SstbwUL4t0JuuuzzOKZTTuIvoccaWRqEGw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-01 11:10:13.102287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:10:13] "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-01 11:10:41.389042 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:10:41.389042 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:10:41.389042 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:10:41.389042 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:10:41.389042 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:11:19.419936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:11:19] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:12:11.112013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:12:11] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:12:17.192397 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_57867.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 - - [01/Feb/2024 11:12:22] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:12:23.073509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:12:23] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-01 11:35:36.539003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-01 11:35:36.539003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-01 11:35:36.539003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-01 11:35:36.539003 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-01 11:35:36.539003 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-01 11:37:06.506191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:37:06] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:37:08.729479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:37:08] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:37:12.807743 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 01/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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_54305.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 - - [01/Feb/2024 11:37:16] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:37:16.989548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:37:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:37:45.408778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-01 11:37:45.858255 : CreateTableauEmargement_From_Sequence - INFO : 0 Documents supprimés de la collection : emargement : session = 65bb581ff822f7e275bf4b7d +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:37:45] "POST /myclass/api/CreateTableauEmargement_From_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:37:47.721168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:37:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-01 11:38:00.110064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [01/Feb/2024 11:38:00] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:18:33.931666 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 09:18:33.931666 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 09:18:33.933184 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 09:18:33.933184 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 09:18:33.933184 : ++ 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-02 09:18:54.341122 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 09:18:54.341122 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 09:18:54.341122 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 09:18:54.341122 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 09:18:54.342306 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 09:32:30.963014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:30.964451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:30.966535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:31.663231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:31.665683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.164615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.168114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.172659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.177171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.181800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.186218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.196524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.200888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.222633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.225758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.233255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.239642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.242872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.249282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.252478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.263298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.269834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.271971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.279008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.289709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.294157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.299385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.305650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.311111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.318846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.320846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.330194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.334222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:32:32.340761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:32:32.345243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:32:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:18.801327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:36] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:36.959739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:36.964738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:36.973743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:36.987404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:37.058666 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:37.183182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:37.191239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:38.836119 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 09:33:38.837126 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:38] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:50.033689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.037692 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.044955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.057940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.066566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:50.083563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.089696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:50.097505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:50.107748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:50.136106 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:33:59.541560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:59.544927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:59.550026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:59.554028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:33:59.563026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:33:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:42.468273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:42.510291 : CreateTableauEmargement_From_Sequence - INFO : 25 Documents supprimés de la collection : emargement : session = 65bb581ff822f7e275bf4b7d +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:42] "POST /myclass/api/CreateTableauEmargement_From_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:45.020469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.062989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.066315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.068570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.076772 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.188932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.193029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.196635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.201198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.206955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.217488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.227066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:38:52.231268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.240352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:38:52.257658 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:38:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:39:43.176633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:39:43.179673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:39:43.182677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:39:43.186672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:39:43.196075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:39:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:39:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:39:43] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:39:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:39:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:40:07.330580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:40:07.333578 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:40:07] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:40:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:47.118482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:47.121589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.175785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.179848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.186093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.197137 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.382293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.387499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.392535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.399860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.414054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.416412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:41:52.429945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.451811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.488895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:41:52.505544 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:41:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:42:02.967506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:42:02.972290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:42:02.975525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:42:02.981924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:42:02.987394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:02] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:02] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:42:17.734391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:42:17.737395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:17] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:42:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:00.199773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:00.202307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:00] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:08.125739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:11.596131 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:11] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:13.218136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:13.221356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:14.056658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:22.930766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:26.059720 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:26] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:26.842611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:27.243638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:27.940599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:32.793829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:32.797171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:32] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:32] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:47.220349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:44:49.332288 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:49] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:49.988383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:50.309289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:50.995686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:44:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:44:58.162407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:45:00.537279 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:00] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:01.176965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:01.501080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:02.140177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:02] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:08.520985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:45:10.900815 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:10] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:11.571813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:11.899069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:12.512643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:19.049718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:45:19.052674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:27.921012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:32.579710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:32] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:49.163529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:49] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:45:49.312171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:45:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:00.112270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:00] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:03.527514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:03] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:07.590800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:07] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:07.751482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:27.900180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:30.413757 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:30] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:40.785543 : 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 paert1_nom_client 
(Ci-aprés nommé le client)
Situé :  adrss 1  CP 1 Ville 1 

\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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_50128.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: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 :
 prenom2 part2_nom 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_73141.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: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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_24013.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: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 :
 penom part4_client 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_55933.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: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 :
 prenom 05 part 05 client 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_57859.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 - - [02/Feb/2024 09:47:57] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:47:57.689384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:47:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:49:57.339277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:49:57.349217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:49:57] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:49:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:08.974029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:50:08.977966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:12.374799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:14.925315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:14] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:18.659385 : 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 paert1_nom_client 
(Ci-aprés nommé le client)
Situé :  adrss 1  CP 1 Ville 1 

\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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_27756.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: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 :
 prenom2 part2_nom 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_84983.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: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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_72713.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: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 :
 penom part4_client 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_08158.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: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 :
 prenom 05 part 05 client 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_92495.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 - - [02/Feb/2024 09:50:19] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:19.372342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:50.688739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:50] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:50:54.389259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:50:54] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:51:01.366358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:51:01.409515 : Prepare_and_Send_Convention_From_Session_By_PDF -'undefined' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 4708 +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:51:01] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/undefined HTTP/1.1" 500 - +INFO:root:2024-02-02 09:52:01.116400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:52:01.118423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:52:01] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:52:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:52:26.565907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:52:26] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:52:28.767108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:52:28] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ 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-02 09:55:10.288337 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 09:55:10.288337 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 09:55:10.288337 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 09:55:10.288337 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 09:55:10.288337 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 09:55:27.470172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:55:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:55:30.234584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:55:30] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:55:33.292499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:55:33] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-02 09:55:33.415775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:55:33] "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-02 09:56:59.921105 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 09:56:59.921105 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 09:56:59.921105 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 09:56:59.922110 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 09:56:59.922110 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 09:56:59.963259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:56:59.965234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:56:59.969083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:56:59] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:56:59] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:57:00] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-02 09:57:00.075307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:57:00] "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-02 09:57:49.328984 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 09:57:49.328984 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 09:57:49.328984 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 09:57:49.328984 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 09:57:49.328984 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 09:58:01.746924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:01.749243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:01.750580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.239445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.240467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.436233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.439235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.444233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.448247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.453137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.460597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.469039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.480639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.485982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.495501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.505703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.512400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.520151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.526722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.534957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.545308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.552538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.560133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.565199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.571801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.583525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.586646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.596690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.605834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.610190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.616050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.629013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.636867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:02.646557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:02.653580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:02] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:05.566925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:05.571929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:05.575978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:05.581239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:05.595943 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:05.695355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:05.697647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:06.325624 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 09:58:06.325624 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:09.758635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:09.763647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:09.765635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 09:58:09.778662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:09.795198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 09:58:09.819196 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 09:58:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:00:47.147197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.150692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:00:47.155224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.163753 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:00:47.272681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.275130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.279151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.282141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:47.288156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:00:47.304532 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:47] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:00:56.216865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:56.220525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:56.224908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:00:56.228254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:56] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:56] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:00:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:01:28.542496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:01:28.562634 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:28] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:01:30.517379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:01:36.248953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:01:50.871205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:01:50.875399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:01:50.878538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:01:50.883798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:01:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:16.700365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:16.719567 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:16] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:18.212584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:24.078963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:24] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:45.485216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:45.490742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:45.493750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:45.499312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:45.503394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:46.504700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:46.507719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:46.509497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:46.514517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:46.517526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:55.400247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:55.403233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:55.408492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:02:55.417046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:55.420105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:02:55.427200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:02:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:03:38.821700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:03:41.015362 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:03:41] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:03:41.927135 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:03:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:03:42.334960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:03:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:03:43.139647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:03:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:04:05.159252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:04:05.163261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:04:05.166386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:04:05.174638 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:04:05.293315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:04:05.297336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:04:05.299620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:04:05.303820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:04:05.316315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:04:05.332821 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:04:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:16:13.161379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.165591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.169961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.174192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.183491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.187485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:16:13.200428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:16:13.208321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:16:13.229222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:16:13.245126 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:16:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:36.272945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.275948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.279956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:36.288943 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:36.415987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.418704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.421720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.427739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:36.431739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:36.453049 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:50.913029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:50.917567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:50.917567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:50.929510 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:51.046384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:51.049379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:51.053384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:51.056499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:51.064066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:51.068699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:51.073751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:51.087293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:51.105650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:51.114827 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:17:58.461472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:58.465622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:58.470198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:58.475210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:17:58.481294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:17:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:18:23.561430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:18:25.865676 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:18:25] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:18:27.492169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:18:27.495167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:18:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:18:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:18:28.198107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:18:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:20:02.028334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:20:02.032337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:20:02.036336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:20:02.043866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:20:02.049489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:20:02.055873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:20:02.062920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:20:02.074913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:20:02.085620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:20:02.112262 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:20:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:20.778699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:20.783441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:20.788501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:20.793993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:20.800677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:20.809564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:20.818560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:20.827086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:20.842460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:20.856696 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:51.077360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.083362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.090370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.095363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:51.104737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.111352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.124601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:51.146812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:51.156564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:51.176148 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:22:54.929211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:54.937070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:54.944089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:22:54.949085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:22:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:23:50.502103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.506019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.510402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:23:50.519922 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:23:50.651984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.657018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.661502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.667325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:50.671342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:23:50.693536 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:23:57.780696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:57.785074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:57.789588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:23:57.795034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:57] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:57] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:23:57] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:25.677426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:25.707070 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:25] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:27.663040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:34.760107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:34.769154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:34.774399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:34.778809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:34.786894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:34.905407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:34] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:24:53.374217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:53.377424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:53.382198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:53.387714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:24:53.392695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:53] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:24:53] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:25:18.933892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:25:21.121706 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:21] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:25:21.949640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:25:22.358091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:25:23.119534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:25:42.971685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:25:42.974653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:25:42.981246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:25:42.985286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:42] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:42] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:25:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:26:18.365495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:26:18.392067 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:18] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:26:19.932777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:26:25.828134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:25] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:26:40.487945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:26:40.492392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:26:40.496322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:26:40.500332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:40] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:40] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:26:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:27:03.615139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:03.617137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:03.622143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:03.625142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:03] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:03] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:27:30.480408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:30.503576 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:30] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:27:32.235929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:32] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:27:39.138621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:27:54.111278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:54.113289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:54.116850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:27:54.121547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:27:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:28:24.745926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:28:24.770647 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:24] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:28:26.287485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:28:32.178618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:28:46.070954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:28:46.073956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:28:46.076967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:28:46.082261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:28:46.088382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:28:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:01.903157 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:29:04.028912 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:04] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:04.812571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:05.223496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:05.965332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:16.854917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:29:19.413467 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:19] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:20.168937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:20.555836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:21.246713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:27.762768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:29:29.783479 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:29] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:30.499401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:30.859773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:31.519140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:31] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:40.884820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:29:43.419972 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:43] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:44.213086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:44.564522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:45.265245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:51.507586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:29:51.514450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:56.123252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:29:59.087678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:29:59] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:02.814356 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 02/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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_85092.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 : Client1_1701   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
paert1_nom_client   prenom1   mysytraining+client101@gmail.com
part2_nom client   prenom2   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 : 4500 

\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 , 02/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_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_15675.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 - - [02/Feb/2024 10:30:11] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:11.416566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:20.419307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:22.387295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:22] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:27.431759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:27] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:29.543589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:29] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:33.054684 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 02/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_22744.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 : Client1_1701   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
paert1_nom_client   prenom1   mysytraining+client101@gmail.com
part2_nom client   prenom2   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 : 4500 

\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 , 02/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_29211.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 - - [02/Feb/2024 10:30:33] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-02 10:30:33.504463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:30:33] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 10:34:51.182335 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 10:34:51.182335 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 10:34:51.182335 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 10:34:51.182335 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 10:34:51.182335 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 10:34:53.616322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:34:53] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:34:55.560495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:34:55] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:35:02.709052 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 02/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_78367.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 : Client1_1701   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
paert1_nom_client   prenom1   mysytraining+client101@gmail.com
part2_nom client   prenom2   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 : 4500 

\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 , 02/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_27079.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 - - [02/Feb/2024 10:35:09] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:35:09.780753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:35:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:06.687845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:38:06.690846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:06] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:06] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:08.690730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:08] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:11.178717 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:11] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:14.157495 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 02/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_30434.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 : Client1_1701   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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
paert1_nom_client   prenom1   mysytraining+client101@gmail.com
part2_nom client   prenom2   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 : 4500 

\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 , 02/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_17567.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 - - [02/Feb/2024 10:38:19] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:19.827316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:40.498093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:38:40.502095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:40] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:42.264296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:42] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:44.127711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:44] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:47.233238 : 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 : Client1_Test_Convention   Réprésenté par
(Ci-aprés nommé le client)
Situé : adressss     
Représenté par :  sdqsds sdqsds  en qualité de Directeur
Contact : mysy1000formation+03@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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
part4_client   penom   mysy1000formation+01@gmail.com
part 05 client   prenom 05   mysy1000formation+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 : 4500 

\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 , 02/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_14466.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 : Client1_1701   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
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 :  Introduction à la gestion des bases de données - SQL 

Durée : 5.0   jour (s) 
Lieu de formation :Roissy 
Dates de formation : 18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 

\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 rr : 

\n
paert1_nom_client   prenom1   mysytraining+client101@gmail.com
part2_nom client   prenom2   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 : 4500 

\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 , 02/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_54016.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 - - [02/Feb/2024 10:38:47] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2024-02-02 10:38:47.646067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:38:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:02.713317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:02] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:05.433323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:05] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:08.501011 : 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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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_71362.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 - - [02/Feb/2024 10:39:08] "GET /myclass/api/Prepare_and_Send_Convention_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:08.726397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:52.584415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:39:52.587321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:52] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:52] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:55.467057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:55] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:39:57.650622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:39:57] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:01.139516 : 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 :
 prenom3 part nom 3 
(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 : Introduction à la gestion des bases de données - SQL 
Durée : 5.0   jour (s) 
Lieu de formation :   Roissy 
Dates de formation :  18/02/2024  23/02/2024 
Nom formateur : balde_em sekou_empl 
\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 :  4500 €

\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 , 02/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

 

\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_76912.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 - - [02/Feb/2024 10:40:03] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:03.871884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:11.064412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:11] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:18.640080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:18] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:21.804537 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom1 paert1_nom_client  

Situé :adrss 1    CP 1   Ville 1    France

\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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_88275.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  M.   prenom2 part2_nom client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_13236.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Neutre   prenom3 part nom 3  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_58678.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   penom part4_client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_67708.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom 05 part 05 client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_88539.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:22] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/65b7b9d76e0a176853e2d1ab HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:22.579805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:22] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:40:57.107796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:40:57] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:00.405188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:00] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:04.538219 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom1 paert1_nom_client  

Situé :adrss 1    CP 1   Ville 1    France

\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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_41724.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  M.   prenom2 part2_nom client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_39161.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Neutre   prenom3 part nom 3  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_08875.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   penom part4_client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_85164.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom 05 part 05 client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_07658.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:10] "POST /myclass/api/Prepare_and_Send_Convocation_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:10.630301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:49.242658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:41:49.812445 : CreateTableauEmargement_From_Sequence - INFO : 0 Documents supprimés de la collection : emargement : session = 65bb581ff822f7e275bf4b7d +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:49] "POST /myclass/api/CreateTableauEmargement_From_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:51.622006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:41:56.110105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:41:56.113116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:56] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:41:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:42:10.460742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:42:10.464114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:42:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:42:12] "POST /myclass/api/EmargementMail/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:42:14.180823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:42:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2024-02-02 10:42:20.642647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 10:42:20.646666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:42:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 10:42:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:23:01.979744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:23:01.986165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:23:01.995656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:23:02.000766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:23:02.009445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:23:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:23:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:23:02.050025 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:23:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:23:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:23:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:24:13.783410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:24:13.788406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:24:13.790409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:24:13.793410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:24:13.796408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:24:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:24:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:24:14.215305 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:24:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:24:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:24:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:26:01.177791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:26:01.181637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:26:01.188027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:26:01.193599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:26:01.197860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:26:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:26:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:26:01.228517 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:26:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:26:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:26:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:27:50.223629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:27:50.228971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:27:50.234990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:27:50.239984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:27:50.247484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:27:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:27:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:27:50.266670 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:27:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:27:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:27:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:40:41.443388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:40:41.447394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:40:41.452388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:40:41.458916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:40:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:40:41.471270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:40:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:40:41.492043 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:40:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:40:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:40:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.030970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.037614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.047282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.057265 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.075268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.082731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.100511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.123851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.147847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.176142 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 12:42:49.226913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.239764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.259772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:42:49.266763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.309803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:42:49.362536 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:42:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:49:41.128935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:49:41.133455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:49:41.138202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:49:41.145048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:49:41.153338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:49:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:49:41.195196 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:49:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:49:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:49:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:22.584294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.590296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.595303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.601296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.608353 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:22.635666 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:22.796194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.801202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.808216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.814567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:22.824123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:22.856979 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:35.136474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.146278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.155288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:35.172416 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:35.276699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.279958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.284223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.294708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:35.302485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:35.321349 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:53:55.558437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:55.565845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:55.575201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:53:55.581411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:55] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:55] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:53:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:54:25.393746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:54:25] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:57:13.730512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.737171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.743521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.747739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.757749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:57:13.781429 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:57:13.965928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.970923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:57:13.980926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.985928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:57:13.996926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:57:14.022478 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:57:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:06.430287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:06.435758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:06.440570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:06.445813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:06.452849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:06.477819 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:10.458922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.463435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.469446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:10.479395 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:10.607913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.611455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.619834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.626933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:10.630487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:10.658082 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:17.560184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:17.566963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:17.574137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 12:58:17.580394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:17] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:17] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:58:35.678044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:58:35] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 12:59:58.525977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 12:59:58] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:00:00.317760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:00:10.804945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:00:10.810629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:00:10.814046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:00:10.819123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:10] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:10] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:00:39.752460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:00:39.758868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:00:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:02:08.567544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.572290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.577108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.581647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.589261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:02:08.610450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.615588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.622591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:02:08.640423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:02:08.647371 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 13:02:08.664462 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:02:08.732274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:02:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:05:50.230891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.235901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.243638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.250144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.259369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:05:50.283411 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 13:05:50.331369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:05:50.335325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.339758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:05:50.346774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:05:50.365268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:05:50.401584 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:05:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:06:10.628154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.630994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:06:10.637003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.643995 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:06:10.760921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.765208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.769208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.774576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:10.779111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:06:10.801252 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:06:17.978274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:17.982596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:17.987120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:06:17.989091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:17] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:18] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:06:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:07:25.507145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:25.510135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:25.516368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:25.522325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:25.530468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:07:25.548109 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:07:26.537812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:26.546728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:26.550225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:26.555771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:26.558767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:07:26.590491 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:07:30.260541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:30.263531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:30.274468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:07:30.278947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:30] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:07:30] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:11:36.556553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.566468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.570467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.574651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.583340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.588362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:11:36.627927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.633920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:11:36.657551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:11:36.660816 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 13:11:36.695851 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:11:36.759890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:11:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:12:01.447861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:12:01.450347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:12:01.461282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:12:01] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:12:01] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:12:01.467689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:12:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:12:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:13:58.060910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.063907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.068906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.073904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.079459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:13:58.099061 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:13:58.313483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.318479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.321474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.326482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:13:58.334845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:13:58.358154 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:13:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:15:31.017559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.021565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.027556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.034993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.037338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:15:31.064290 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:15:31.286198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.293821 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.300693 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:15:31.317857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:15:31.342986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:15:31.373933 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:15:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:16:21.420835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.425805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.433077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.438311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.440568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:16:21.473919 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:16:21.543920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.547377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.553288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:16:21.558588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:16:21.576856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:16:21.596404 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:16:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:33.923257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:33.928283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:33.932427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:33.938610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:33.943197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:33.974582 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:34.091340 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:34.097127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:34.104967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:34.114990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:34.133746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:34.168561 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:43.835573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:43.839271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:43.844071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:43.849193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:43.854381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:43.876877 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:44.895172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:44.898172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:44.903174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:44.908167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:17:44.913089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:17:44.932600 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:17:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:18:22.912184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:22.916848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:22.922350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:22.930366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:22.937365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:18:22.976541 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:18:23.844314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:23.849308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:23.855164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:23.861699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:18:23.877523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:18:23.906538 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:18:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:19:38.146940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.149930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.156166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.161688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.169010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:19:38.191034 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:19:38.262953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.266588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.269727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:19:38.273508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:19:38.298036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:19:38.316836 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:19:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:06.808366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.813050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.818571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.828738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.835946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:06.842938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.852308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:06.873432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:06.890940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:06.893237 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-02-02 13:21:06.918832 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:06.950283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:19.383611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.387723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:19.392234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.398306 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:19.535254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.537539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.542391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.548640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:19.554831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:19.580083 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:21:29.539570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:29.544891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:29.550059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:21:29.554538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:29] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:21:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:22:28.541981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.546286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.553825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.559159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.564148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:22:28.586700 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:22:28.690864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.695869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.702883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:22:28.713408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:22:28.730894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:22:28.801186 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:22:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:24:51.290927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.294919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.297968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.309237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.320590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:24:51.344527 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:24:51.429608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.438531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.442036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:24:51.446743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:24:51.468312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:24:51.494140 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:24:51] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:25:15.440392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.444393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.446391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:25:15.454387 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:25:15.592426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.596429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.600443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.605438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:15.610440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:25:15.634479 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:25:48.574769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:48.579175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:48.583682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:25:48.585763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:48] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:48] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:25:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:21.836260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:21.839309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:21.842424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:21.851885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:21.858319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:21.874549 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:22] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:25.374700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:25.381763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:25.386094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:25.392524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:25.397520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:25.423876 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:58.948268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:58.952636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:58.957724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:58.962976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:58.969008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:58.988284 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:59.255018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:59.259261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:59.264999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:59.268051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:29:59.277447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:29:59.304448 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:29:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:23.957720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:24.071724 : incription_training_refused_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2024-02-02 13:30:24.072723 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:24] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:25.698501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:31.762415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:31] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:53.378089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.381311 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.384344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:53.396167 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:53.528571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.532356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.537954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.543767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:30:53.549733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:30:53.569590 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:30:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:31:02.119470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:31:02.125453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:31:02.129948 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:31:02.133524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:31:37.849649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:31:37.870200 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:37] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:31:39.788073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:31:46.225967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:31:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:32:34.922683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:34.932395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:34.937391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:34.947402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:32:34.955988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:32:34.971517 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:32:35.247225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:35.251226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:35.254225 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:35.260233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:32:35.267740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:32:35.290142 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:32:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:12.910826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:12.916636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:12.919632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:12.928346 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:13.060097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:13.064297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:13.069033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:13.075054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:13.080063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:13.100860 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:34.066288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.071870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:34.075884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.080949 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:34.219563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.222564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.226563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.231125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:34.238624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:34.257245 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:33:43.474372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:43.478306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:43.483379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:33:43.488015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:43] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:43] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:33:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:27.251746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.257277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.263294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.271835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.276388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:27.299934 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:27.462661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.467659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.472696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.480419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:27.491911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:27.524700 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:48.262707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.269703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.275705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.282708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.304518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:48.347470 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:48.459312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.468797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.475789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.482923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:36:48.518810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:36:48.540774 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:36:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:11.774398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.778401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:11.782708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.790698 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:11.930868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.934403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.938549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.944565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:11.948561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:11.970383 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:12] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:25.062763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:25.069002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:25.074510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:37:25.075518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:25] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:37:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:37:56.179578 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:38:03.687476 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:38:03] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:38:05.192613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:38:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:38:11.521947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:38:11] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:39:07.066569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.070971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.072961 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.084973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.093096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:39:07.115847 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:39:07.277207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.282268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.288588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:39:07.294463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:39:07.316736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:39:07.348562 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:39:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:28.811825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:28.814992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:28.819017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:28.823016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:28.826013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:28.848658 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:29.918260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:29.921759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:29.926744 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:29.931267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:29.938168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:29.960563 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:33.866787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:33.868790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:33.872426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:33.875773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:33.879504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:33.903866 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:40.270300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.273305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:40.277060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.284216 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:40.391904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.395348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.396516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.403787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:40.407857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:40.428622 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:51.887552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:51.903688 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:52.122794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:41:52.127317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:41:52.153325 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:41:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:42:52.646344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:42:52.649352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:42:52.653536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:42:52.656922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:42:52.661322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:42:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:42:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:42:52.687917 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:42:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:42:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:42:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:44:07.648944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:07.651384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:07.656146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:07.660302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:07.664868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:44:07.684889 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:44:31.486902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:31.494357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:31.499373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:31.503923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:44:31.508535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:44:31.530551 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:44:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:45:39.868640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:39.874134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:39.878150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:39.885152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:45:39.894086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:45:39.910459 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:45:49.310218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:49.313167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:49.316175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:49.320179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:45:49.325285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:45:49.347241 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:45:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:46:03.161665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.164025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:46:03.169607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.173421 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:46:03.286211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.289638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.292670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.298336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:46:03.304437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:46:03.326984 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:46:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:47:35.059170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:37] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:47:38.636157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:47:49.698924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:47:49.703285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:47:49.706721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:47:49.710952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:47:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:48:21.662890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:48:21.684478 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:21] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:48:23.839242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:24] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:48:30.289856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:48:41.535927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:48:41.539184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:48:41.542197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:48:41.546203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:41] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:41] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:48:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:11.981177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:11.984187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:11.989737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:11.995092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:11.999564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:12.009267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:12.014868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:12.020061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:12.030058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:12.053685 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:16.899872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:16.902191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:16.909221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:49:16.913547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:16.922241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:16] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:35.229217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:35] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:49:41.180101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:49:41] "POST /myclass/api/Get_List_Sequence_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:50:35.226009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:50:35] "POST /myclass/api/Update_Session_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:50:37.844860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:50:37] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:26.599805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.603472 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.607303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.610306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.619363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:26.627860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.631687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:26.639278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:26.659302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:26.668419 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:58.698018 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:58.701035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:58.705593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:58.710762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:58.716789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:58.730379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:58.739381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:53:58.746919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:58.765918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:53:58.777430 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:53:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:26.559544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:26] "POST /myclass/api/Update_Session_Sequence/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:27.902450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:49.191241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 13:54:49.198622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:49] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:51.720725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:51] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:54.138524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:54:54] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 13:54:58.630670 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom1 paert1_nom_client  

Situé :adrss 1    CP 1   Ville 1    France

\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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    : agendaaaa
Objectif    : objectilksdmldfksmlfkdsf  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    : rtretert
Objectif    : ertretr  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_26004.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  M.   prenom2 part2_nom client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    : agendaaaa
Objectif    : objectilksdmldfksmlfkdsf  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    : rtretert
Objectif    : ertretr  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_72044.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Neutre   prenom3 part nom 3  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    : agendaaaa
Objectif    : objectilksdmldfksmlfkdsf  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    : rtretert
Objectif    : ertretr  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_08106.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   penom part4_client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    : agendaaaa
Objectif    : objectilksdmldfksmlfkdsf  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    : rtretert
Objectif    : ertretr  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_88872.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

A l\'attention  Mme   prenom 05 part 05 client  

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 :   Introduction à la gestion des bases de données - SQL
Durée :  5.0 jour (s)
Lieu de formation :   Roissy
Dates de formation :  18/02/2024 23/02/2024
Nom formateur :  balde_em sekou_empl
\n

Vous êtes invités à vous présenter 20 minutes avant l\'horaire prévu.
\n
 
\n
Les séquences de formartion  :
\n

Du             : 19/02/2024 09:00  au 19/02/2024 12:30
Titre          : Seq_Auto_10
Agenda    :
Objectif    :  

\n\n

Du             : 19/02/2024 14:00  au 19/02/2024 17:30
Titre          : Seq_Auto_11
Agenda    : agendaaaa
Objectif    : objectilksdmldfksmlfkdsf  

\n\n

Du             : 21/02/2024 08:00  au 21/02/2024 11:00
Titre          : Seq_Auto_12
Agenda    : rtretert
Objectif    : ertretr  

\n\n

Du             : 21/02/2024 13:00  au 21/02/2024 15:00
Titre          : Seq_Auto_13
Agenda    :
Objectif    :  

\n\n

Du             : 21/02/2024 19:00  au 21/02/2024 20:00
Titre          : Seq_Auto_14
Agenda    :
Objectif    :  

\n
\n
 
\n
Au plaisir de vous retrouver prochainement,
\n
Paris , 02/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_04258.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:55:00] "GET /myclass/api/Prepare_and_Send_Convocation_From_Session_By_PDF/qm2tI5Y0xZTr1dv6qJZa2eXxSSzryayfiw/65bb581ff822f7e275bf4b7d/65b7b9d76e0a176853e2d1ab HTTP/1.1" 200 - +INFO:root:2024-02-02 13:55:00.623985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 13:55:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 14:58:50.962236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 14:58:50.977170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 14:58:50.981681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 14:58:50.997503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 14:58:51.005052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 14:58:51.019731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 14:58:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:18:12.234678 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:18:12.234678 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:18:12.234678 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:18:12.234678 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:18:12.234678 : ++ 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\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:21:21.431322 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:21:21.431322 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:21:21.431322 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:21:21.431322 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:21:21.431322 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:37:28.115316 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:37:28.115316 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:37:28.115316 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:37:28.115316 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:37:28.115316 : ++ 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\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:38:06.725938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:38:06.726937 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:38:06.726937 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:38:06.726937 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:38:06.726937 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:40:39.059631 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:40:39.059631 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:40:39.059631 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:40:39.059631 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:40:39.059631 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 15:57:30.702545 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:57:30.703538 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:57:30.703538 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:57:30.703538 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:57:30.703538 : ++ 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-02 15:57:39.975997 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 15:57:39.975997 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 15:57:39.975997 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 15:57:39.975997 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 15:57:39.975997 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 16:03:19.040054 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 16:03:19.040054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 16:03:19.040054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 16:03:19.040054 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 16:03:19.040054 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 16:04:50.770426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:04:50.773879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:04:50] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:04:50] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:04:54.942360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:04:54.944911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:04:54] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:04:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:05:03.034875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:05:03] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:10.067385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:06:10.070394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:16.527432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:16] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:42.453374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:06:42.456613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:06:42.460980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:42.472181 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:42.624642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:42] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:42.628654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:48.759098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:06:48.763096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:06:54.352558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:06:54] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ 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-02 16:21:32.182795 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 16:21:32.183792 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 16:21:32.183792 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 16:21:32.183792 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 16:21:32.183792 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-02-02 16:32:45.935101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.939358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.946648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.950651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.956466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.962424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:45.967917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:32:45.981156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:32:45.989160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:32:46.713241 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:32:51.168202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:51.171802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:51.176166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:51.180972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:32:51.186057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:51] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:32:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:33:09.251201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-02-02 16:33:09.254689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:33:09] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:33:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:33:12.323050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:33:12] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:33:17.475093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:33:17] "POST /myclass/api/Get_List_Convocations_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:39:20.041387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:39:20] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-02-02 16:39:24.767459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [02/Feb/2024 16:39:24] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 16:44:32.746151 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 16:44:32.746151 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 16:44:32.746151 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 16:44:32.747150 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 16:44:32.747150 : ++ 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\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-02-02 16:44:59.516122 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-02-02 16:44:59.516122 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-02-02 16:44:59.516122 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-02-02 16:44:59.516122 : ++ FLASK PORT 5001 ++ +INFO:root:2024-02-02 16:44:59.516122 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 diff --git a/Session_Formation.py b/Session_Formation.py index 950c2e5..7b0feab 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -4239,8 +4239,8 @@ def Prepare_and_Send_Convention_From_Session_By_Email(tab_files, Folder, diction new_diction_client['email_production'] = str(list_local_email_production) new_diction_client['session_id'] = diction['session_id'] - print(" ##### new_diction_client = ", new_diction_client) - print(" ##### tab_files = ", tab_files) + print(" ##### new_diction_client 0102 = ", new_diction_client) + local_status, local_retval = Inscription_mgt.Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_saved_file_full_path, Folder, new_diction_client) if( local_status is False): @@ -4291,45 +4291,6 @@ def Prepare_and_Send_Convention_From_Session_By_Email(tab_files, Folder, diction - """ - 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_no_client['_id'])) - - - """ - courrier_template_type_document_ref_interne = "" - if( "courrier_template_type_document_ref_interne" in courrier_template_data.keys() ): - courrier_template_type_document_ref_interne = courrier_template_data['courrier_template_type_document_ref_interne'] - - courrier_template_tracking_id = "" - courrier_template_tracking_data = MYSY_GV.dbname['courrier_template_tracking'].find_one({'partner_owner_recid':str(my_partner['recid']), - 'valide':'1', - 'locked':'0', - 'courrier_template_type_document_ref_interne':str(courrier_template_type_document_ref_interne)}) - if(courrier_template_tracking_data is None ): - mycommon.myprint( - " WARNING impossible de recuperer le 'courrier_template_tracking' pour courrier_template_id : " +str(diction['courrier_template_id']) ) - return True, " WARNING impossible de récuperer le 'courrier_template_tracking' pour courrier_template_id : " +str(diction['courrier_template_id']) - - - courrier_template_tracking_id = str(courrier_template_tracking_data['_id']) - - history_data_to_log = {} - history_data_to_log ['partner_owner_recid'] = str(my_partner['recid']) - history_data_to_log['related_collection_recid'] = str(diction['session_id']) - history_data_to_log['courrier_template_tracking_id'] = courrier_template_tracking_id - history_data_to_log['date_update'] = str(datetime.now()) - history_data_to_log['update_by'] = str(my_partner['_id']) - history_data_to_log['valide'] = "1" - history_data_to_log['locked'] = "0" - - print( "#### history_data_to_log = ", history_data_to_log) - MYSY_GV.dbname['courrier_template_tracking_history'].insert_one(history_data_to_log) - - - """ return True, " Les conventions ont été correctement envoyées par emails" except Exception as e: @@ -4681,6 +4642,14 @@ def Prepare_and_Send_Convention_From_Session_By_PDF(diction): str(inspect.stack()[0][ 3]) + " La valeur '" + val + "' n'est pas presente dans liste ") return False, " La valeur '" + val + "' n'est pas presente dans liste" + elif str(diction[val]).strip() == "": + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " Le champ obligatoire '" + val + "' est vide ") + return False, " Le champ obligatoire '" + val + "' est vide " + + + my_token = "" if ("token" in diction.keys()): @@ -4707,6 +4676,8 @@ def Prepare_and_Send_Convention_From_Session_By_PDF(diction): list_file_name_to_zip = [] # Verifier qu'il ya bien des inscriptions valides dans la session pour le client + + liste_client_rattachement_id = MYSY_GV.dbname['inscription'].distinct("client_rattachement_id", {'session_id':str(diction['session_id']), 'status': '1', @@ -5248,6 +5219,8 @@ def Create_Convention_By_Client_PDF(diction): """ Creation du ficier PDF """ + + contenu_doc_Template = jinja2.Template(str(template_courrier_data['contenu_doc'])) @@ -5271,6 +5244,19 @@ def Create_Convention_By_Client_PDF(diction): # close output file resultFile.close() + """ + 25/01/2024 : pour loger une action dans la collection ==> courrier_template_tracking_history + """ + # Recuperation des données du stagiaire + inscription_data = MYSY_GV.dbname['inscription'].find({'session_id': str(diction['session_id']), + 'status': '1', + 'partner_owner_recid': str(my_partner['recid']), + 'client_rattachement_id': str( + diction['client_id'])}) + + for inscription in inscription_data: + local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne(my_partner, "CONVENTION_STAGIAIRE_ENTREPRISE", str(diction['session_id']), 'inscription', str(inscription['_id']), + str(template_courrier_data['_id'])) return True, outputFilename @@ -5575,6 +5561,13 @@ def Create_Convocation_By_Stagiaire_PDF(diction): if (local_status is not True): return local_status, my_partner + qry = {'_id':ObjectId(str(diction['courrier_template_id'])), + 'valide':'1', + 'locked':'0', + 'ref_interne': 'CONVOCATION_STAGIAIRE', + 'partner_owner_recid':str(my_partner['recid'])} + + print(" ##### qry = ", qry) # 1 - Verifier que le modele de courrier est bien editable par individu template_courrier_data = MYSY_GV.dbname['courrier_template'].find_one({'_id':ObjectId(str(diction['courrier_template_id'])), @@ -5583,12 +5576,19 @@ def Create_Convocation_By_Stagiaire_PDF(diction): 'ref_interne': 'CONVOCATION_STAGIAIRE', 'partner_owner_recid':str(my_partner['recid'])}) - if( template_courrier_data is None or ("edit_by_client" in template_courrier_data.keys() and str(template_courrier_data['edit_by_client']) == "1" ) ): + if( template_courrier_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " L'identifiant du modèle de courrier est invalide ") + return False, " L'identifiant du modèle de courrier est invalide " + + if ("edit_by_client" in template_courrier_data.keys() and str(template_courrier_data['edit_by_client']) == "1"): mycommon.myprint( str(inspect.stack()[0][ 3]) + " Le modèle de courrier n'est pas éditable par stagiaire. ") return False, " Le modèle de courrier n'est pas éditable par stagiaire " + # Verifier que le statgiaire est valide local_qry = {'_id':ObjectId(str(diction['inscription_id'])), 'status':'1', 'partner_owner_recid':str(my_partner['recid'])} diff --git a/email_mgt.py b/email_mgt.py index 27b0ea8..b1e13ac 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -1921,7 +1921,7 @@ def SendEmargementMail( diction): d'emargement, on log une action dans la collection ==> courrier_template_tracking_history """ local_status, local_retval = module_editique.Editic_Log_History_Action_From_courrier_template_type_document_ref_interne( - my_partner, "EMARGEMENT_FORMATION", str(val_emarge['session_id']), "emargement", str(val_emarge['_id']) ) + my_partner, "EMARGEMENT_FORMATION", str(val_emarge['session_id']), "emargement", str(val_emarge['_id']), "" ) """ diff --git a/module_editique.py b/module_editique.py index 8f0303b..e6c8337 100644 --- a/module_editique.py +++ b/module_editique.py @@ -234,7 +234,8 @@ def Get_Editable_Document_By_Partner_By_Collection(diction): }, { '$unwind': '$collection_courrier_template' - } + }, + {'$sort': {"collection_courrier_template.rang": 1}}, ]) #print(" #### Get_Editable_Document_By_Partner_By_Collection pipe_qry_Get_Editable_Document_By_Partner = ", pipe_qry) @@ -324,8 +325,9 @@ def Get_Editable_Document_By_Partner_By_Collection(diction): if( val and "courrier_template_id" in val.keys() and "related_collection_recid" in val.keys() ): local_courrier_template_id = val['courrier_template_id'] - courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one({'_id':ObjectId(str(local_courrier_template_id))}, - {'contenu_doc':'0'}) + if( ObjectId.is_valid(local_courrier_template_id)): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one({'_id':ObjectId(str(local_courrier_template_id))}, + {'contenu_doc':'0'}) related_collection_data = MYSY_GV.dbname[related_collection].find_one({'_id':ObjectId(str(diction['related_collection_recid']))}) #print(" #### SESSSION DATA = ", related_collection_data) @@ -711,8 +713,11 @@ def Init_And_Update_courrier_template_tracking(diction): """ Cette fonction log un historique d'envoie email ou de telechargement d'un document +/!\ : Dans certains cas on n'utilise pas de modele de courrier, comme l'accetation d'un inscription ou , +l'envoi des demande demande d'emargement (boff a reanalyser tout meme), +on laisse la valeur "courrier_template_id" a vide """ -def Editic_Log_History_Action(my_partner, courrier_template_data, related_collection_recid, target_collection = None, target_collection_recid = None): +def Editic_Log_History_Action(my_partner, courrier_template_data, related_collection_recid, target_collection = None, target_collection_recid = None, courrier_template_id=""): try: courrier_template_type_document_ref_interne = "" @@ -738,7 +743,7 @@ def Editic_Log_History_Action(my_partner, courrier_template_data, related_collec history_data_to_log ['partner_owner_recid'] = str(my_partner['recid']) history_data_to_log['related_collection_recid'] = related_collection_recid history_data_to_log['courrier_template_tracking_id'] = courrier_template_tracking_id - history_data_to_log['courrier_template_id'] = str(courrier_template_data['_id']) + history_data_to_log['courrier_template_id'] = str(courrier_template_id) history_data_to_log['date_update'] = str(datetime.now()) history_data_to_log['update_by'] = str(my_partner['_id']) history_data_to_log['valide'] = "1" @@ -770,13 +775,25 @@ def Editic_Log_History_Action(my_partner, courrier_template_data, related_collec """ Cette fonction log un historique tout evenement lié à un element de la collection courrier_template_tracking (CONF_INSCRIPTION, EMARGEMENT_FORMATION, etc) + +/!\ : Dans certains cas on n'utilise pas de modele de courrier, comme l'accetation d'un inscription ou , +l'envoi des demande demande d'emargement (boff a reanalyser tout meme), +on laisse la valeur "courrier_template_id" a vide """ def Editic_Log_History_Action_From_courrier_template_type_document_ref_interne(my_partner, courrier_template_type_document_ref_interne, - related_collection_recid, target_collection = None, target_collection_recid = None): + related_collection_recid, target_collection = None, target_collection_recid = None, courrier_template_id=""): try: courrier_template_tracking_data = {} if( courrier_template_type_document_ref_interne ): + + qry ={'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0', + 'courrier_template_type_document_ref_interne':str(courrier_template_type_document_ref_interne)} + + print(" #### qry = ,", qry) + courrier_template_tracking_data = MYSY_GV.dbname['courrier_template_tracking'].find_one({'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0', @@ -791,8 +808,10 @@ def Editic_Log_History_Action_From_courrier_template_type_document_ref_interne(m " WARNING impossible de recuperer le 'courrier_template_tracking'(2) ") return True, " WARNING impossible de récuperer le 'courrier_template_tracking' (2)" + print(" #### courrier_template_tracking_data = ", courrier_template_tracking_data) + courrier_template_tracking_id = str(courrier_template_tracking_data['_id']) - courrier_template_id = str(courrier_template_tracking_data['courrier_template_id']) + courrier_template_id = str(courrier_template_id) #print(" ### courrier_template_data = ", courrier_template_data) diff --git a/partner_document_mgt.py b/partner_document_mgt.py index 5e6d90f..d1b8618 100644 --- a/partner_document_mgt.py +++ b/partner_document_mgt.py @@ -39,7 +39,7 @@ def Add_Partner_Document(diction): Verification des input acceptés """ field_list = ['token', "nom", "ref_interne", "type_doc", "cible", "sujet",'contenu_doc', 'duplicate', - 'joint_pdf', 'default_version', 'corps_mail', 'edit_by_client'] + 'joint_pdf', 'default_version', 'corps_mail', 'edit_by_client', 'courrier_template_type_document_ref_interne'] incom_keys = diction.keys() for val in incom_keys: @@ -126,6 +126,18 @@ def Add_Partner_Document(diction): return False, " - Le champ 'cible' fait plus de 255 caractères " data['cible'] = cible + courrier_template_type_document_ref_interne = "" + if ("courrier_template_type_document_ref_interne" in diction.keys()): + if diction['courrier_template_type_document_ref_interne']: + courrier_template_type_document_ref_interne = diction['courrier_template_type_document_ref_interne'] + if (len(str(courrier_template_type_document_ref_interne)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'courrier_template_type_document_ref_interne' fait plus de 255 caractères ") + + return False, " - Le champ 'courrier_template_type_document_ref_interne' fait plus de 255 caractères " + data['courrier_template_type_document_ref_interne'] = courrier_template_type_document_ref_interne + type_doc = "" if ("type_doc" in diction.keys()): diff --git a/partners.py b/partners.py index 095f242..e5dea51 100644 --- a/partners.py +++ b/partners.py @@ -1159,21 +1159,30 @@ def getRecodedParnterImage_from_front(diction=None): RetObject = [] partner_images = {} + cpt = 0 # Recuperation des image 'logo' et 'cachet' si le partenaire en a for retVal in MYSY_GV.dbname['mysy_images'].find(qery_images): if ('type_img' in retVal.keys()): if (retVal['type_img'] == "logo"): partner_images['logo_img'] = retVal['img'].decode() partner_images['logo_img_recid'] = retVal['recid'] + cpt = cpt + 1 if (retVal['type_img'] == "cachet"): partner_images['cachet_img'] = retVal['img'].decode() partner_images['cachet_img_recid'] = retVal['recid'] + cpt = cpt + 1 - RetObject.append(JSONEncoder().encode(partner_images)) + if( cpt > 0): + RetObject.append(JSONEncoder().encode(partner_images)) + #print(" ### getRecodedParnterImage_from_front RetObject = ", RetObject) + return True, RetObject + else: + mycommon.myprint( + str(inspect.stack()[0][3]) + " Aucune image (Logo ou Cachet trouvé) ") + + return False, "Aucune image (Logo ou Cachet trouvé) " - #print(" ### getRecodedParnterImage_from_front RetObject = ", RetObject) - return True, RetObject except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() diff --git a/prj_common.py b/prj_common.py index dbeab8b..9cc6114 100644 --- a/prj_common.py +++ b/prj_common.py @@ -4397,6 +4397,7 @@ def Get_Dictionnary_data_For_Template(diction): local_JSON = ast.literal_eval(local_part_imgs[0]) + new_field_logo = {'societe_logo': "data:image/png;base64,"+local_JSON['logo_img']} new_field_cachet = {'societe_cachet': "data:image/png;base64,"+local_JSON['cachet_img']} company_data.update(new_field_logo) @@ -4485,7 +4486,7 @@ def Get_Dictionnary_data_For_Template(diction): Recuperartion des champs des apprenants """ list_apprenant_data = [] - print(" ### diction['list_apprenant_id'] = ", diction['list_apprenant_id']) + if( "list_apprenant_id" in diction.keys()): tab_apprenant_id = diction['list_apprenant_id'] apprenant_liste_champ = ['prenom', 'nom', 'email', 'civilite', 'telephone', 'employeur', 'adresse', 'code_postal', 'ville', 'pays', 'tuteur1_nom', 'tuteur1_prenom', 'tuteur1_email', 'tuteur1_telephone', @@ -4698,7 +4699,11 @@ def Get_Dictionnary_data_For_Template(diction): """ sequence_session_liste_champ = [ 'sequence_title', 'sequence_start', 'sequence_end', 'agenda', 'objectif', 'commentaire' ] list_sequence_session_data = [] - tab_sequence_session = diction['list_sequence_session_id'] + tab_sequence_session = [] + if( "list_sequence_session_id" in diction.keys() ): + tab_sequence_session = diction['list_sequence_session_id'] + + for sequence_session_data in MYSY_GV.dbname['session_formation_sequence'].find({'_id': {'$in': tab_sequence_session, }, 'valide': '1',