diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2385f11..f7e3bcc 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,16 +1,13 @@ - + + - - - - - + @@ -439,7 +436,6 @@ - @@ -464,6 +460,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index ca8e474..57968bf 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -6227,6 +6227,14 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): 'status':'1', 'partner_owner_recid':str(my_partner['recid'])}) + # Recuperation des données du partenaire associé à l'utilisateur connecté + local_status, local_retval = mycommon.Get_Connected_User_Partner_Data_From_RecID(my_partner['recid']) + if( local_status is False): + return local_status, local_retval + + company_data = local_retval + + # Recupération des données du modèle de document courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( {'_id': ObjectId(str(diction['courrier_template_id'])), @@ -6271,6 +6279,21 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): #Recuperations des info de la session de formation session_data = MYSY_GV.dbname['session_formation'].find_one({'_id': ObjectId(str(inscription_data['session_id'])),'valide': '1', 'partner_owner_recid':str(my_partner['recid'])}) + formateur_nom_prenom = "" + # Si il y a un code formateur_id, alors on va recuperer les nom et prenom du formation + if ("formateur_id" in session_data.keys() and session_data['formateur_id']): + + formateur_data = MYSY_GV.dbname['ressource_humaine'].find_one({'_id': ObjectId(str(session_data['formateur_id'])), + 'valide': '1', + 'locked': '0', + 'partner_recid': str(my_partner['recid']) + }) + + if (formateur_data and "nom" in formateur_data.keys() and "prenom" in formateur_data.keys()): + formateur_nom_prenom = str(formateur_data['nom']) + " " + str(formateur_data['prenom']) + + session_data['formateur_nom_prenom'] = formateur_nom_prenom + # Recuperation du titre de la formation @@ -6281,6 +6304,8 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): + + # Creation du dictionnaire d'information à utiliser pour la creation du doc convention_dictionnary_data = {} @@ -6293,7 +6318,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): 'tuteur1_pays', 'tuteur1_telephone', 'tuteur1_ville', 'tuteur1_prenom', 'tuteur2_adresse', 'tuteur2_cp', 'tuteur2_email', 'tuteur2_nom', 'tuteur2_pays', 'tuteur2_prenom', - 'tuteur2_telephone', 'tuteur2_ville'] + 'tuteur2_telephone', 'tuteur2_ville', 'adresse', 'code_postal', 'ville', 'pays'] for champ in stagiaire_liste_champ: if( champ in inscription_data ): @@ -6309,7 +6334,9 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): Recuperartion des champs de la session """ session_liste_champ = ['code_session', 'class_internal_url', 'date_debut', 'session_etape', 'date_fin', 'distantiel', 'presentiel', 'session_ondemande', 'nb_participant', - 'prix_session', 'titre', 'location_type', 'is_bpf', 'formateur_id', 'adresse', 'code_postal', 'ville', 'pays', 'date_debut_inscription', 'date_fin_inscription'] + 'prix_session', 'titre', 'location_type', 'is_bpf', 'formateur_id', 'adresse', 'code_postal', 'ville', 'pays', 'date_debut_inscription', + 'date_fin_inscription', 'formateur_nom_prenom' + ] for champ in session_liste_champ: if (champ in session_data): @@ -6324,7 +6351,7 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): """ Recuperartion des champs de la formation """ - myclass_liste_champ = ['certif', 'cpf', 'metier', 'objectif', 'title'] + myclass_liste_champ = ['certif', 'cpf', 'metier', 'objectif', 'title', 'duration', 'duration_unit'] for champ in myclass_liste_champ: if (champ in class_data): @@ -6337,6 +6364,42 @@ def Sent_Convention_Stagiaire_By_Email(tab_files, Folder, diction): convention_dictionnary_data.update(new_field) + """ + Recuperartion des champs de la personne connecté + """ + connected_user_liste_champ = ['email', 'contact_nom', 'contact_prenom'] + for champ in connected_user_liste_champ: + if (champ in my_partner): + new_champ_name = "utilisateur_" + str(champ) + new_field = {new_champ_name: str(my_partner[champ])} + convention_dictionnary_data.update(new_field) + else: + new_champ_name = "utilisateur_" + str(champ) + new_field = {new_champ_name: ""} + convention_dictionnary_data.update(new_field) + + """ + Recuperartion des champs de la société + """ + company_liste_champ = ['nom', 'email', 'num_nda', 'website', 'adr_street', 'adr_zip', 'adr_city', 'adr_country'] + for champ in company_liste_champ: + if (champ in company_data): + new_champ_name = "societe_" + str(champ) + new_field = {new_champ_name: str(company_data[champ])} + convention_dictionnary_data.update(new_field) + else: + new_champ_name = "societe_" + str(champ) + new_field = {new_champ_name: ""} + convention_dictionnary_data.update(new_field) + + # Ajout des champs système comme la date du jour + ct = datetime.now() + ts = ct.timestamp() + date_jour = ct.strftime("%d/%m/%Y") + new_field = {"date_jour": str(date_jour)} + convention_dictionnary_data.update(new_field) + + ## Creation du PDF body = { @@ -6636,6 +6699,13 @@ def Download_Convention_Stagiaire_PDF(diction): 'status': '1', 'partner_owner_recid': str(my_partner['recid'])}) + # Recuperation des données du partenaire associé à l'utilisateur connecté + local_status, local_retval = mycommon.Get_Connected_User_Partner_Data_From_RecID(my_partner['recid']) + if (local_status is False): + return local_status, local_retval + + company_data = local_retval + # Recupération des données du modèle de document courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( {'_id': ObjectId(str(diction['courrier_template_id'])), @@ -6649,6 +6719,28 @@ def Download_Convention_Stagiaire_PDF(diction): {'_id': ObjectId(str(inscription_data['session_id'])), 'valide': '1', 'partner_owner_recid': str(my_partner['recid'])}) + formateur_nom_prenom = "" + # Si il y a un code formateur_id, alors on va recuperer les nom et prenom du formation + if ("formateur_id" in session_data.keys() and session_data['formateur_id']): + + formateur_data = MYSY_GV.dbname['ressource_humaine'].find_one( + {'_id': ObjectId(str(session_data['formateur_id'])), + 'valide': '1', + 'locked': '0', + 'partner_recid': str(my_partner['recid']) + }) + + if (formateur_data and "nom" in formateur_data.keys() and "prenom" in formateur_data.keys()): + formateur_nom_prenom = str(formateur_data['nom']) + " " + str(formateur_data['prenom']) + + session_data['formateur_nom_prenom'] = formateur_nom_prenom + + # Recupérer la liste des participant pour une eventuelle à afficher pour les conventions d'entreprise + list_participants_session = MYSY_GV.dbname['inscription'].find({'session_id':str(session_data['_id']), 'status':'1', + 'partner_owner_recid':str(my_partner['recid'])}, + {'email':1, 'nom':1, 'prenom':1}).sort([("nom", pymongo.DESCENDING)]) + + # Recuperation du titre de la formation class_data = MYSY_GV.dbname['myclass'].find_one( {'internal_url': str(session_data['class_internal_url']), 'valide': '1', @@ -6665,7 +6757,7 @@ def Download_Convention_Stagiaire_PDF(diction): 'tuteur1_pays', 'tuteur1_telephone', 'tuteur1_ville', 'tuteur1_prenom', 'tuteur2_adresse', 'tuteur2_cp', 'tuteur2_email', 'tuteur2_nom', 'tuteur2_pays', 'tuteur2_prenom', - 'tuteur2_telephone', 'tuteur2_ville'] + 'tuteur2_telephone', 'tuteur2_ville','adresse', 'code_postal', 'ville', 'pays'] for champ in stagiaire_liste_champ: if (champ in inscription_data): @@ -6683,7 +6775,8 @@ def Download_Convention_Stagiaire_PDF(diction): session_liste_champ = ['code_session', 'class_internal_url', 'date_debut', 'session_etape', 'date_fin', 'distantiel', 'presentiel', 'session_ondemande', 'nb_participant', 'prix_session', 'titre', 'location_type', 'is_bpf', 'formateur_id', 'adresse', - 'code_postal', 'ville', 'pays', 'date_debut_inscription', 'date_fin_inscription'] + 'code_postal', 'ville', 'pays', 'date_debut_inscription', 'date_fin_inscription', + 'formateur_nom_prenom'] for champ in session_liste_champ: if (champ in session_data): @@ -6698,7 +6791,7 @@ def Download_Convention_Stagiaire_PDF(diction): """ Recuperartion des champs de la formation """ - myclass_liste_champ = ['certif', 'cpf', 'metier', 'objectif', 'title'] + myclass_liste_champ = ['certif', 'cpf', 'metier', 'objectif', 'title', 'duration', 'duration_unit'] for champ in myclass_liste_champ: if (champ in class_data): @@ -6710,6 +6803,50 @@ def Download_Convention_Stagiaire_PDF(diction): new_field = {new_champ_name: ""} convention_dictionnary_data.update(new_field) + """ + Recuperartion des champs de la personne connecté + """ + connected_user_liste_champ = ['email', 'contact_nom', 'contact_prenom'] + for champ in connected_user_liste_champ: + if (champ in my_partner): + new_champ_name = "utilisateur_" + str(champ) + new_field = {new_champ_name: str(my_partner[champ])} + convention_dictionnary_data.update(new_field) + else: + new_champ_name = "utilisateur_" + str(champ) + new_field = {new_champ_name: ""} + convention_dictionnary_data.update(new_field) + + """ + Recuperartion des champs de la société + """ + company_liste_champ = ['nom', 'email', 'num_nda', 'website', 'adr_street', 'adr_zip', 'adr_city', 'adr_country'] + for champ in company_liste_champ: + if (champ in company_data): + new_champ_name = "societe_" + str(champ) + new_field = {new_champ_name: str(company_data[champ])} + convention_dictionnary_data.update(new_field) + else: + new_champ_name = "societe_" + str(champ) + new_field = {new_champ_name: ""} + convention_dictionnary_data.update(new_field) + + # Ajout des champs système comme la date du jour + ct = datetime.now() + ts = ct.timestamp() + date_jour = ct.strftime("%d/%m/%Y") + new_field = {"date_jour": str(date_jour)} + convention_dictionnary_data.update(new_field) + + node_list_part = [] + for val in list_participants_session: + print(" #### val = ", val) + del val['_id'] + node_list_part.append(val) + + convention_dictionnary_data['list_participants'] = node_list_part + + print(" ### convention_dictionnary_data = ", convention_dictionnary_data) body = { diff --git a/Log/log_file.log b/Log/log_file.log index 9c3c5e7..69d4580 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1941663,3 +1941663,2750 @@ INFO:root:2023-12-07 21:14:05.192454 : Security check : IP adresse '127.0.0.1' INFO:werkzeug:127.0.0.1 - - [07/Dec/2023 21:14:05] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - INFO:root:2023-12-07 21:14:11.168429 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [07/Dec/2023 21:14:11] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:04:37.064704 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 11:04:37.064704 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 11:04:37.065754 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 11:04:37.065754 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 11:04:37.065754 : ++ 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:2023-12-08 11:04:52.506416 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 11:04:52.507891 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 11:04:52.507891 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 11:04:52.507891 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 11:04:52.507891 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 11:06:00.390370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:00.392021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:00.393061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:00] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:00] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:00] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.025712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.026715 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.352273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.355609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.361027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.364391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.371478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.373596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.379650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.384647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.391803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.395854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.401261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.407386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.409396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.415116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.418112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.423673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.429219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.434093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.438389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.441398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.448690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.451824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.458040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.462861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.466770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:01.471879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.474879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.483040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.489999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:01.496447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:51.868053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:51] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:52.044158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:52.048194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:52.051558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:52.056980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:52.066662 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:52.141184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:06:52.145186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:57.337704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:06:57.341274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:06:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:07:13.961424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:07:13.965441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:07:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:07:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:07:27.303130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:07:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:07:57.826238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:07:57] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:07:59.307919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:07:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:08:15.749705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:08:15.754217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:08:15.756214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:08:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:08:15.768492 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:08:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:08:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:08:15.862778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:08:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:08:15.865779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:08:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:09:55.415080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:09:55] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:09:58.130884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:09:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:04.059935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:10:04.061951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:10:04.066460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:04.070765 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:04.175699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:04.178693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:17.915831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:10:17.919186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:10:34.656151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:10:34.659145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:34] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:10:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:11:14.274168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:11:14] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:11:17.379718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:11:17] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:11:50.990736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:11:51] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:11:53.232291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:11:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:03.399052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:12:03.401800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:09.384479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:09] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:36.465351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:36] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:37.376877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:44.747845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:12:44.750841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:44.755843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:12:44.761079 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:12:44.884480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:12:44.886487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:44] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:12:44] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:13:14.630190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:13:14] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:13:16.631600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:13:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:32.446312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:32] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:33.429925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:44.841338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:44] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:45.552619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:51.588542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:51] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:52.151300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:57.309245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:57] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:14:57.963169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:14:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:03.371576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:03] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:03.860738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:22.999924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:23.001928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:23.003921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.128513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.129535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.388034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.392694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.396347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.401479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.410515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.416286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.424905 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.430158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.434796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.445009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.454403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.456650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.462201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.466026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.474058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.481253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.487818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.501771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.508299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.515934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.523162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.530181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.539312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.543817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.551007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.556691 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.563350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.567775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:24.577429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:24.581839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:34.408397 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:34.411565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:34.414091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:34.421043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:34.430433 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:34.488852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:34.490901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:38.159172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:38.163420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:38.167019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:38.172183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:38.178267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:38.185581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:38.193346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:38.196354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:38.204225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:58.605940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:15:58.678434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:15:58.679546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:15:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:16:03.906145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:03.908932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:03.913095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:03.917570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:03] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:16:07.088810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.092063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.095395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.100396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.105411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:16:07.113406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.118409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:16:07.123934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:16:07.133935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:16:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:18:08.185394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:18:08] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:19:37.488497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:19:37] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:19:39.100807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:19:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:20:01.097815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:20:01.102134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:20:01.105517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:20:01.110050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:20:01.112045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:20:13.269574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:20:13] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:21:37.111872 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:21:45] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:21:46.839853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:21:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:21:47.097108 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:21:47.100142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:21:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:21:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:22:06.434656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:06.439581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:06.441591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:06.443700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:06.451073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:22:12.590529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:12.593844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:12.597884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:12.599857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:22:30.612512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:30] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:22:47.608802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:22:47.611828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:22:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:23:37.503877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:23:37] "POST /myclass/api/UpdateStagiairetoClass_Tuteurs/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:24:17.692521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:24:17] "POST /myclass/api/UpdateStagiairetoClass_Tuteurs/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:24:45.585735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:24:45] "POST /myclass/api/Store_User_Downloaded_File/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:24:46.749608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:24:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:04.595119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:06] "POST /myclass/api/AcceptAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:07.188262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:12.462117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:12] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:20.473837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:20.477589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:20.480990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:20.487967 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:20.604299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:20.608296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:20.612992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:20.617163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:20.621361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:30.792489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:30.795219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:30.800166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:25:30.805061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:30] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:30] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:30] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:25:43.670064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:25:43] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:07.357885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:07.361293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:07.363294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:07.371296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:07] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:07] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:15.066741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:15.070114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:15] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:15] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:26.391326 : 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é :xxx

\n

N° de contrat : xxxx

\n
\n
\n
\n
\n
Est conclue la convention suivante entre.
\n
L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n

Et

\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_09975.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:26] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ebc20b24a6f90b31d0fe HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:44.597739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:44.600737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:44] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:44] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:50.403217 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_21176.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:50] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:28:56.187196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:28:56.190740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:56] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:28:56] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:29:11.776856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:29:13] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:29:16.549222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:29:16.551689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:29:16] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:29:16] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:29:27.909556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:29:29] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:29:32.769442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:29:32] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:30:28.342369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:30:28.344398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:30:28] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:30:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:30:36.016406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:30:36.019408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:30:36] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:30:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:30:56.937839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:30:56] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:32:42.135138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:32:42.139759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:32:42] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:32:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:32:47.617580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:32:47] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:34:15.716412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:15.720066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:15.723890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:15.726998 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:15] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:15] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:34:23.874050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:23] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:34:28.012679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:28.015680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:28.020682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:28.025681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:28] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:28] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:34:37.221780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:34:37.224812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:37] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:37] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:34:52.367911 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_38834.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:34:52] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:04.957834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:35:04.961835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:04] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:04] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:15.169858 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_87732.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:15] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:29.323319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:35:29.327340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:29] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:29] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:37.084182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:38] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:42.402876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:35:42.405654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:42] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:35:48.291678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:35:48] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:36:49.425110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:36:49] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:36:51.040479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:36:51] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:36:59.845089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:36:59] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:07.548226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:07] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:08.912890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:12.860334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:37:12.863355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:12] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:12] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:17.616071 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_34616.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:17] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:33.333407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:37:33.336057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:33] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:33] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:39.541813 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_59336.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:39] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:37:55.340694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:37:55.344554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:55] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:37:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:03.458298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:38:03.461710 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:08.846617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:08] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:14.227455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:14] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:15.382185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:15] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:20.198098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:38:20.201034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:20] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:24.036860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:24] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:56.697027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:56] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:38:57.923188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:38:57] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:39:03.174844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:39:03.178037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:39:03] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:39:03] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:39:07.304329 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_21432.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:39:07] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:39:33.540798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:39:33] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:28.460568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:28] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:29.687397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:29] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:36.713124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:36] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:43.271623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:43] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:44.620346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:51.512605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:43:51.516873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:51] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:51] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:43:56.472892 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_92845.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:43:56] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:45:15.870440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:45:15.874959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:45:15] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:45:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:45:29.476165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:45:29.478604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:45:29] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:45:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:45:38.383599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:45:38] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:47:49.252973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:47:49.256074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:47:49] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:47:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:47:53.575436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:47:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:48:29.718958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:48:29] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:48:30.990699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:48:30] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:48:35.430874 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:48:35] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:50:27.777497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:50:27] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:50:28.952832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:50:28] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:50:36.053758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:50:36.057758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:50:36] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:50:36] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:50:40.723234 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\n
\n
\n
\n

 

\n\n\n\n\n\n\n\n
Entre L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n
Pour le client :
Nom & Prénom du Signataire
\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_40578.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 - - [08/Dec/2023 11:50:40] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:51:00.143324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:51:00] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:56:00.537283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:56:00] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:56:01.706036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:56:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:56:05.957243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:56:05.960274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:56:05] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:56:05] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:56:10.429632 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_emai

\n

 

\n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n

 

\n

 

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_46981.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 - - [08/Dec/2023 11:56:10] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:56:25.538359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:56:25] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:57:34.533909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:57:34] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:57:35.895161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:57:35] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:57:42.247923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:57:42.251437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:57:42] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:57:42] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:57:47.135181 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_emai

\n

 

\n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n

 

\n

 

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_53557.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 - - [08/Dec/2023 11:57:47] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:58:08.778892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:58:08] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:04.704133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:04] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:05.994493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:06] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:10.735661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:59:10.739216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:10] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:10] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:14.623680 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_emai

\n

 

\n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n

 

\n

 

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_44028.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 - - [08/Dec/2023 11:59:14] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:25.496609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:25] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:46.837044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:46] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:48.193860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:53.132630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 11:59:53.135646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:53] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 11:59:53] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 11:59:57.560172 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_emai

\n

 

\n

 

\n

 

\n

 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n

 

\n

 

\n

 

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_81178.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 - - [08/Dec/2023 11:59:57] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 12:00:20.594847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:00:20] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:01:55.886645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:01:55] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:01:57.212288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:01:57] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:02:01.015716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:02:01.018977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:02:01] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:02:01] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:02:05.177160 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact :  xxx connected_user_emai

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_95341.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 - - [08/Dec/2023 12:02:05] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 12:02:27.957168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:02:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:03:27.229069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:03:27] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:03:28.470686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:03:28] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:03:34.071714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:03:34.074656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:03:34] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:03:34] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:03:38.012270 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact :  xxx connected_user_emai

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_29637.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 - - [08/Dec/2023 12:03:38] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:20.328938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:20] "POST /myclass/api/Get_Connected_User_List_Dashbord/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:20.379554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:20.383173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:20.387523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:20] "POST /myclass/api/Get_Qery_Session_Repartition_Session_By_Trainer_By_Periode/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:20] "POST /myclass/api/Get_Qery_List_Session_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:20] "POST /myclass/api/Get_Qery_Formation_By_Session_By_Periode/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:23.140580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:23.213074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:23.216093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:23] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:25.146922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:25.150379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:25.153406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:25.158803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:25.163243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:25] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:30.660370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:30.663299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:30.669351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:30] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:30.677176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:30.680513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:30] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:30] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:33.041294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:33.045293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:33] "POST /myclass/api/Get_Related_Target_Materiel_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:34.994273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:40:37.516995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:40:37.519993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:40:37] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:42:27.823751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:42:27.827759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:42:27] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:42:27] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:42:33.571728 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact :  xxx connected_user_emai

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_90729.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 - - [08/Dec/2023 12:42:33] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 12:42:53.030702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:42:53.032210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:42:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:42:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:00.746524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:43:00.748653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:00] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:21.834279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:21] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:22.578589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:22] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:39.875519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:39] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:42.374756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:47.383891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:43:47.386885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:47] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:43:47] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:43:59.488411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:44:01] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:44:32.921671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:44:32.924258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:44:32] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:44:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:44:49.084338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:44:49] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:46:23.144424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:23] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:46:24.550849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:24] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:46:39.386748 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:46:39.390065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:39] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:46:48.344816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:46:48.349334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:48] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:46:48] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:46:54.058095 : 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é :xxx

\n

N° de contrat : xxxx

\n
\n
\n
\n
\n
Est conclue la convention suivante entre.
\n
L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n

Et

\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_75316.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 - - [08/Dec/2023 12:46:54] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ebc20b24a6f90b31d0fe HTTP/1.1" 200 - +INFO:root:2023-12-08 12:47:06.826696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:47:06] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:49:32.887228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:49:32] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:49:34.155365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:49:34] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:49:39.401791 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:49:39.404815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:49:39] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:49:39] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:49:46.578537 : 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é :xxx
N° de contrat : xxxx

\n
\n
\n
\n
\n
Est conclue la convention suivante entre.
\n
L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n

Et

\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_99546.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 - - [08/Dec/2023 12:49:46] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ebc20b24a6f90b31d0fe HTTP/1.1" 200 - +INFO:root:2023-12-08 12:50:32.761714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:50:32] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:50:37.329088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:50:37] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:05.962292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:05] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:06.497760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:06] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:11.822277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:51:11.824384 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:11] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:16.406570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:16] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:28.329295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:51:28] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:51:59.991516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:51:59.993681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:52:00] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:52:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:54:48.981723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:54:48] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:54:48.989988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:54:49] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:05.574769 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:55:05.579226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:05.582763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:55:05.589974 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:05.697924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:05] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:05.702484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:05] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:17.478551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 12:55:17.481561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:55:23.055644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:55:23] "POST /myclass/api/Get_Default_Partner_Document_By_Internal_Ref/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:56:26.060385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:56:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:56:26.064563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:56:26] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:56:56.059139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:56:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:56:56.063370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:56:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:57:53.359798 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:57:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:57:53.366831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:57:53] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:59:04.843645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:59:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 12:59:04.853327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 12:59:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:23.249302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:23.250294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:23.256385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:23.696658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:23.697654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.239385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.242721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.244559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.252096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.256544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.259558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.560687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.564741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.568461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.572143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.574774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.580917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.875760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:24.880003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.886008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.891416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.895622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:24.900042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:24] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.192284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.197699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:25.200718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.207227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:25.209488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.213735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.500967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.506980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.513986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:25.517987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:25.524576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:25.526960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:25] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:50.938811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:01:50.943969 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:50.951422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:50.962991 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:51.205492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:51] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:01:51.210569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:01:51] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:02:36.995312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:02:36.997978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:02:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:02:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:02:48.034214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:02:48] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:05:29.812168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:05:29] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:05:31.126432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:05:31] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:05:45.983558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:05:45.986458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:05:45] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:05:45] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:02.115460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:06:02.120340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:02.124996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:06:02.129985 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:02.233125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:02.236724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:30.968641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:30] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:34.159853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:34] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:36.237704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:06:36.241436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:36] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:36] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:43.318975 : 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 xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email

\n

 

\n
\n

Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

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

Pour l\'organisme de formation
xxx connected_user

Contact :  xxx connected_user_emai

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_39276.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 - - [08/Dec/2023 13:06:43] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 13:06:53.657227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:06:53.660815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:53] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:06:53] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:07:02.181986 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:07:03] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:07:25.343111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:07:25.346432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:07:25] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:07:25] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:07:35.950512 : 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é :xxx
N° de contrat : xxxx

\n
\n
\n
\n
\n
Est conclue la convention suivante entre.
\n
L\'Organisme de formation xx nom xx ci-après nommé l\'Organisme de formation
Situé : xx adresse xx
Déclation d\'activité : xxx nda Représenté par : xxxx
Signataire dûment habilité aux fins des présentes :
xxx connected_user
Contact : xxx connected_user_email
\n

Et

\n
Et le bénéciaire :
xxx apprenant_tuteur1 xxx apprenant_tuteur2
(Ci-aprés nommé le client)
Situé : xx adresse_tuteur xx
Représenté par : xxxx
xxx
Contact : xxx
\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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

xxx organisme de formation

\n
Formation : xxx
Type d\'action de formation : xxx
Durée : xxx
Lieu de formation : xxx
Effectif formé : xxx
Dates de formation : xxx
Nom formateur : xxx
\n

 

\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 : xxx statgiaire 1

\n

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

\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

xx lieu , xxx date du jour

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
xxx connected_user

Contact : xxx connected_user_email
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_67433.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 - - [08/Dec/2023 13:07:36] "GET /myclass/api/Download_Convention_Stagiaire_PDF/51vB6jTpOr5Gru-wfjWgD7KgQKUUaaGJIw/6572ee317e488d34eade969c/657306c60b24a6f90b31d16d HTTP/1.1" 200 - +INFO:root:2023-12-08 13:13:12.109715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:13:12.112300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:13:12.116276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:13:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:13:12.124668 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:13:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:13:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:13:12.224486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:13:12] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:13:12.229219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:13:12] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:16:20.457031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:16:20.460221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:16:20] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:16:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:16:25.520327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:16:25] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:23:05.123836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:23:05.127605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:23:05] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:23:05] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ 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:2023-12-08 13:25:17.075079 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:25:17.076112 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:25:17.076112 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:25:17.076112 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:25:17.076112 : ++ 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:2023-12-08 13:26:32.150089 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:26:32.150089 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:26:32.150089 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:26:32.150089 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:26:32.150089 : ++ 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:2023-12-08 13:26:49.155203 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:26:49.155203 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:26:49.155203 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:26:49.155203 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:26:49.155203 : ++ 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:2023-12-08 13:27:27.481354 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:27:27.481354 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:27:27.481354 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:27:27.481354 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:27:27.481354 : ++ 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:2023-12-08 13:27:43.507030 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:27:43.507030 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:27:43.507030 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:27:43.507030 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:27:43.507030 : ++ 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:2023-12-08 13:28:05.839396 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:28:05.839396 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:28:05.839396 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:28:05.839396 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:28:05.839396 : ++ 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:2023-12-08 13:29:34.052801 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:29:34.052801 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:29:34.052801 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:29:34.052801 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:29:34.052801 : ++ 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:2023-12-08 13:29:50.089505 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:29:50.089505 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:29:50.089505 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:29:50.090954 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:29:50.090954 : ++ 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:2023-12-08 13:31:57.265660 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:31:57.265660 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:31:57.265660 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:31:57.266661 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:31:57.266661 : ++ 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:2023-12-08 13:32:44.468732 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:32:44.468732 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:32:44.468732 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:32:44.468732 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:32:44.468732 : ++ 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:2023-12-08 13:49:08.871996 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:49:08.871996 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:49:08.871996 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:49:08.871996 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:49:08.871996 : ++ 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:2023-12-08 13:49:17.702535 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:49:17.702535 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:49:17.702535 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:49:17.702535 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:49:17.702535 : ++ 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:2023-12-08 13:51:25.202328 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:51:25.202328 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:51:25.202328 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:51:25.202328 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:51:25.202328 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 13:55:03.814558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:55:03.817569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:55:03.821574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:55:03.831029 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:55:03.933346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:55:03.936344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:55:14.308112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 13:55:14.310841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:14] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:55:26.277304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:55:26] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:57:07.578602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:57:07] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 13:57:09.101467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 13:57:09] "POST /myclass/api/Get_Given_Partner_Document/ 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:2023-12-08 13:58:07.500448 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:58:07.501439 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:58:07.501439 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:58:07.501439 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:58:07.501439 : ++ 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:2023-12-08 13:58:29.683296 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 13:58:29.683296 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 13:58:29.683296 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 13:58:29.683296 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 13:58:29.683296 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:00:49.979811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:00:49.985238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:00:49.989393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:00:50.005311 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:00:50.170122 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:50] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:00:50.175133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:50] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:00:59.417985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:00:59.421137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:00:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:01:04.651668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:01:04] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:04:19.239968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:04:19] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:04:20.745253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:04:20] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:05:32.412183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:05:32.451732 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:05:32] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:05:33.881486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:05:33] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:05:37.287608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:05:37] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:06:44.264174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.266656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.269652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:06:44.275556 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:06:44.386721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.388794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.391812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.396960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:44.401957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:06:51.827755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:51.830470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:51.835021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:06:51.837024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:51] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:06:51] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:10:55.221668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:10:55.224462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:10:55.229024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:10:55.234389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:10:55.237415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:10:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:10:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:10:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:10:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:10:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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:2023-12-08 14:11:19.184047 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:11:19.184047 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:11:19.185100 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:11:19.185100 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:11:19.185100 : ++ 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:2023-12-08 14:11:45.284690 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:11:45.284690 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:11:45.284690 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:11:45.284690 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:11:45.284690 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:13:56.214138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:13:56.246745 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:13:56] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:13:57.846464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:13:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:14:01.314218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:01] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:14:29.870994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:29.875881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:29.880034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:14:29.892182 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:14:30.023350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:30.026365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:30.031341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:30.037628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:30.041650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:14:36.545396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:36.548688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:36.550753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:14:36.556195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:14:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:00.841297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:15:00.844292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:00.848290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:00.856723 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:00.967445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:00.971503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:08.587498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:15:08.590788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:15:13.864739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:15:13] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-12-08 14:19:04.166341 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:19:04.166341 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:19:04.167349 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:19:04.167349 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:19:04.167349 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:24:35.591336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:24:35] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:24:37.221928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:24:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:24:43.600016 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:24:43.602013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:24:43] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:24:43] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:24:52.972894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:24:55] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ 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:2023-12-08 14:27:50.867507 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:27:50.867507 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:27:50.867507 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:27:50.867507 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:27:50.867507 : ++ 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:2023-12-08 14:28:31.384447 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:28:31.384447 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:28:31.384447 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:28:31.384447 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:28:31.384447 : ++ 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:2023-12-08 14:31:52.672043 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:31:52.672043 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:31:52.672043 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:31:52.672043 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:31:52.672043 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:32:24.390076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:32:24.391595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:32:24.395193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:32:24.411380 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:32:24.516648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:32:24.520294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:32:38.989806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:32:38.991886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:32:43.223632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:32:43] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:34:17.016251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:34:17] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:34:18.470916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:34:18] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:34:22.772902 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:34:22.776523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:34:22] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:34:22] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:34:31.201343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:34:33] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:35:20.679113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:35:20] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:35:57.980562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:35:58] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:35:59.342367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:35:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:36:27.411371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:36:27.414368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:36:27] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:36:27] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:36:35.671906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:36:37] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:37:41.007687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:37:41] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:37:55.250791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:37:55] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:37:56.738813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:37:56] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:45:23.434295 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:45:23.435313 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:45:23.435313 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:45:23.435313 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:45:23.435313 : ++ 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:2023-12-08 14:45:41.745805 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:45:41.745805 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:45:41.746806 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:45:41.746806 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:45:41.746806 : ++ 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:2023-12-08 14:46:57.285132 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:46:57.285132 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:46:57.285132 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:46:57.286133 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:46:57.286133 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:46:57.352053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.354076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.356207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.359329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.365207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.366208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.371206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.375745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.379083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:46:57.386363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.391382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:46:57.394920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:46:57] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:46:59.933920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.019519 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.056929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.059938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.074107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.180729 : La session de connexion n'est pas valide +INFO:root:2023-12-08 14:47:00.183764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.194974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.199501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.315322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.372698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.378051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.530090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.613002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.659983 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.669983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.675988 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.685981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.689008 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.692017 : La session de connexion n'est pas valide +INFO:root:2023-12-08 14:47:00.698007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:00.705369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.854453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.931155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.978161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:00.989611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:00] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.023945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.035984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.180926 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.245029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.293030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.315570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.337845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.349862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.448247 : LMS_Get_Partner_Data - partner_recid KO : Impossible d'importer la liste des participants +INFO:root:2023-12-08 14:47:01.450250 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.456248 : find_partner_class_like - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.459249 : get_partner_account - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.497287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.558076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.618981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.627996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.649984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:01.665981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:01] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:07.809907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:07.811439 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:07.815474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:08.656647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:08.659624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.411738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.416034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.422601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.429583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.434828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.441160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.444173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.452779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.462815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.468529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.474261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.480622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.489482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.494825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.500075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.509950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.512985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.524550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.532145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.538469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.545039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.552365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.561549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.567703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.572512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.582002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.588470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:09.594137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.604184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:09.610426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:13.707443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:13] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:13.907914 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:13.910921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:13.918462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:13.927462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:13.947446 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:14.006168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:14.012191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:14] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:21.439787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:21.444775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:21.458780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:21.466781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:21.507794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:29.830490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:29.834496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:29.838496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:29.843496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:29] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:36.369134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:36.371240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:36.373294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.241729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.244619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.634218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.636231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.642141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.649538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.655774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.667696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.672033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.684077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.695089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.710428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.721511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.729919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.753098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.761095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.772793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.778074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.793272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.808724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.813687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.821462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.828350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.838115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.862406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.867405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.882256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.893256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.910590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.915685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:37.922701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:37.946241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:41.788834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:41.798841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:41.807327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:41.813912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:41.834376 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:41.969817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:41.973824 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:45.304624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:45.309468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:45] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:50.409633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:50.413636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:47:53.817450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:47:53.820449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:53] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:47:53] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:48:01.698950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:48:03] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ 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:2023-12-08 14:49:23.402485 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:49:23.402485 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:49:23.403491 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:49:23.403491 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:49:23.403491 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 14:49:23.506836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:49:23] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:49:50.752727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:49:50] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:49:52.256458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:49:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:49:57.285184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 14:49:57.288178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:49:57] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:49:57] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 14:50:06.574411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 14:50:08] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ 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:2023-12-08 14:51:31.929710 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 14:51:31.929710 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 14:51:31.930731 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 14:51:31.930731 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 14:51:31.930731 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 15:14:50.042764 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:14:50.043763 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:14:50.043763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:14:50.044776 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:14:50.044776 : ++ 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:2023-12-08 15:15:14.829775 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:15:14.829775 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:15:14.830763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:15:14.830763 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:15:14.830763 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 15:15:43.196661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:43.207074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:43.210075 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:43] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:43.814857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:43.816860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:43] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.622293 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:44.627304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.634297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.642300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.649302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.661291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.940518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.949976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:44.951982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.964269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:44.969271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:44.978121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.251680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.266899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.270907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.279144 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.284181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.290830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.562387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.595482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.597509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.602669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.615503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.619513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.877246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.925965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.929958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.933962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:15:45.940255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:15:45.951293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:15:45] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:46.577384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:46.578395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:46.580931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:46] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:47.474352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:47.477372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:47.948160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:47.950168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:47.956830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:47.967717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:47.974743 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:47.982567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:47.988873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.001400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.008396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.016399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:48.020404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.029881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.041371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.047369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:48.056133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:48.064512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.076677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.090596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:48.094876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.102375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.110636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.120193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:48.128054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.132067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.150071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.156053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.165058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.177081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.186647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:48.200656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:48] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:54.383374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:54.624214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:54.630218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:54.632211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:54.640217 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:54.655210 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:16:54.727839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:16:54.731831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:16:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:03.529408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:03.530408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:03.534408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.109261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.111283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.553798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.558832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.562823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.568012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.577038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.585282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.595973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.609009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.618903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.634516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.649515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.652329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.668852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.681377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.688072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.702504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.709527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.719899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.731485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.768684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.775482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.782479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.821059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.868065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.892085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.899087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.913625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.937626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:04.947628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:04.954632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:05.511875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:05.515867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:05.520875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:05.524869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:05.539878 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:05.603923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:05.607459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:11.698740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:11] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:11.702784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:11] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:17.652568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:17:17.656568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:17:24.358207 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:17:24] "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\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-12-08 15:20:06.165264 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:20:06.165264 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:20:06.165264 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:20:06.165264 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:20:06.165264 : ++ 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:2023-12-08 15:20:22.739994 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:20:22.739994 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:20:22.739994 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:20:22.739994 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:20:22.739994 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 15:20:22.797518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:20:22.801517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:20:22.805517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:20:22.810104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:22] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:20:22.818011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:20:22.825916 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:22] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:20:30.365267 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:20:30.368267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:30] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:20:36.530487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:20:36] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:35.124843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:35.128606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:35] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:47.098269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:22:47.102262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:22:47.107647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:47.114836 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:47.251819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:47] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:47.255837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:47] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:22:55.369241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:22:55.372818 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:55] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:22:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:23:02.677564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:23:02] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:24:55.396058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:24:55] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:24:57.111056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:24:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:25:25.734471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:25] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:25:29.447478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:29] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:25:34.791268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:34.799363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:34.804960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:34.810897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:34.817940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:25:44.435597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:44.441121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:44.449214 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:25:44.453746 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:44] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:25:59.705474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:25:59] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:28:41.963967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:28:41.967656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:28:41.972950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:28:41.979103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:28:41.986509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:42] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:28:46.460532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:46] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:28:54.608320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:28:54.611681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:54] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:28:54] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:29:07.297250 : 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é :  
N° de contrat : xxxx

\n
\n
\n
\n
\n
Est conclue la convention suivante entre.
\n
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 :
    
Contact :  
\n

Et

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

\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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

xxx organisme de formation

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Durée : (s)
Lieu de formation :   
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur :  
\n

 

\n

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

\n

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

\n

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

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

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
  

Contact :  
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_45415.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 - - [08/Dec/2023 15:29:07] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2023-12-08 15:29:32.484802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:29:32.493853 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:29:32] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:29:32] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:29:44.560000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:29:48] "POST /myclass/api/Sent_Convention_Stagiaire_By_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:30:27.498555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:30:27.501579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:30:27] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:30:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:32:02.646279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:32:02.652077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:32:02] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:32:02] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ 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:2023-12-08 15:34:39.093123 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:34:39.093123 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:34:39.093123 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:34:39.093123 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:34:39.093123 : ++ 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:2023-12-08 15:35:34.205121 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:35:34.205121 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:35:34.206127 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:35:34.206127 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:35:34.206127 : ++ 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:2023-12-08 15:35:55.796760 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:35:55.797756 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:35:55.797756 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:35:55.797756 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:35:55.797756 : ++ 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:2023-12-08 15:36:37.893763 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:36:37.893763 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:36:37.893763 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:36:37.893763 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:36:37.893763 : ++ 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:2023-12-08 15:36:56.823616 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:36:56.823616 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:36:56.823616 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:36:56.823616 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:36:56.823616 : ++ 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:2023-12-08 15:37:17.120791 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:37:17.120791 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:37:17.120791 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:37:17.120791 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:37:17.120791 : ++ 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:2023-12-08 15:37:51.868962 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:37:51.869975 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:37:51.869975 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:37:51.869975 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:37:51.869975 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 15:37:58.194923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.198922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.203703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:37:58.220905 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:37:58.451987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.456033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.460031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.467057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:37:58.473325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:37:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:38:24.403243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:38:24.407250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:38:24.415248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:38:24.418247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:24] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:24] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:38:41.322509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:38:41.324494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:41] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:38:41] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:38:49.346425 : 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é :  
N° de contrat : xxxx

\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  75009 Paris 09 
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
    
Contact : mysytraining+dev@gmail.com 
\n

Et

\n
Et le bénéciaire :
sekou  sekou  
(Ci-aprés nommé le client)
Situé : adeee  cppp  villl 

\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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

xxx organisme de formation

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Durée : 21.0 jour (s)
Lieu de formation :   
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur : balde_em sekou_empl 
\n

 

\n

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

\n

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

\n

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

\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 , 08/12/2023 

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
  

Contact : mysytraining+dev@gmail.com 
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_80637.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 - - [08/Dec/2023 15:38:49] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:13.684520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:39:13.687369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:39:13.694727 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:13] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:33.695909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:33] "POST /myclass/api/update_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:34.059875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:38.254100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:39:38.257100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:38] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:38] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:44.419615 : 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° de contrat : xxxx

\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  75009  
Déclation d\'activité : mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
    
Contact : mysytraining+dev@gmail.com 
\n

Et

\n
Et le bénéciaire :
sekou  sekou  
(Ci-aprés nommé le client)
Situé : adeee  cppp  villl 

\n
\n
\n

PRÉAMBULE
EZUS Lyon xx nom_part 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é xx nom_part 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

 

\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

xxx organisme de formation

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Durée : 21.0 jour (s)
Lieu de formation :   
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur : balde_em sekou_empl 
\n

 

\n

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

\n

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

\n

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

\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 , 08/12/2023 

\n\n\n\n\n\n\n\n
Pour l\'organisme de formation
  

Contact : mysytraining+dev@gmail.com 
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_58997.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 - - [08/Dec/2023 15:39:44] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/657327551d3796bc291cca74 HTTP/1.1" 200 - +INFO:root:2023-12-08 15:39:57.019585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:39:57.023196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:57] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:39:57] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:15.338017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:15.341359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:26.252502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:26.254502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:39.907011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:39] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:49.730588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:49.732282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:49.734937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:49] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:49] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:49] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.537398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.539154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.819043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.823297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.830100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.837055 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.840059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.848371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.858587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.865449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.883060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.896582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.908170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.910822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.919327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.929535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.933995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.936784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.955974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.962100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:50.974910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:50.989530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:50] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.003468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.014242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.043240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.056236 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.065240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.093825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.105815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.113804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.129808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.139301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.580895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.584889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.588531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.592550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.603648 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:51.686442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:40:51.689707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:51] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:56.794250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:40:56.797253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:40:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:41:05.414782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:41:05.418229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:41:05] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:41:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:48:34.372590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:48:34] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:48:36.335222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:48:36] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:48:59.599588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:48:59] "POST /myclass/api/Delete_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:49:00.840531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:49:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:49:32.033459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:49:32] "POST /myclass/api/Duplicate_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:49:35.643278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:49:35] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:49:40.875795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:49:40.878317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:49:40] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:49:40] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:49:47.072081 : 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 MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé :  place du test  75009
Déclation d\'activité : mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
   
Contact :  mysytraining+dev@gmail.com

\n

 

\n
\n

Et le bénéciaire :
 sekou  sekou -  pere  
(Ci-aprés nommé le client)
Situé :  place du test  75009
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Type d\'action de formation : xxx
Durée : 21.0 jour (s)
Lieu de formation :  
Effectif formé : xxx
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur : balde_em sekou_empl 
\n

 

\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 : xxx statgiaire 1

\n

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 08/12/2023 

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

Pour l\'organisme de formation
   

Contact :  mysytraining+dev@gmail.com 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_03323.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 - - [08/Dec/2023 15:49:47] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 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:2023-12-08 15:52:40.143175 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:52:40.144163 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:52:40.144163 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:52:40.144163 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:52:40.144163 : ++ 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:2023-12-08 15:53:02.718885 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:53:02.718885 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:53:02.718885 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:53:02.718885 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:53:02.718885 : ++ 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:2023-12-08 15:53:44.216399 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:53:44.216399 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:53:44.217398 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:53:44.217398 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:53:44.217398 : ++ 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:2023-12-08 15:55:02.852582 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:55:02.853584 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:55:02.854580 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:55:02.854580 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:55:02.854580 : ++ 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:2023-12-08 15:58:41.203130 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:58:41.203130 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:58:41.203130 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:58:41.203130 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:58:41.203130 : ++ 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:2023-12-08 15:58:52.843080 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 15:58:52.843080 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 15:58:52.843080 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 15:58:52.843080 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 15:58:52.843080 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 15:58:52.889907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 15:58:52.893790 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:58:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:58:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 15:59:07.847225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 15:59:07] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:00:11.325097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:00:11] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:00:12.937192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:00:12] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:00:20.139087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:00:20.142431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:00:20] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:00:20] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:00:27.781500 : 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 MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé :  place du test  75009
Déclation d\'activité : mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
   
Contact :  mysytraining+dev@gmail.com

\n

 

\n
\n

Et le bénéciaire :
 sekou  sekou -  pere  
(Ci-aprés nommé le client)
Situé :  place du test  75009
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Type d\'action de formation : xxx
Durée : 21.0 jour (s)
Lieu de formation :  
Effectif formé : xxx
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur : balde_em sekou_empl 
\n

 

\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 : xxx statgiaire 1

\n

\n

 

\n

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 08/12/2023 

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

Pour l\'organisme de formation
   

Contact :  mysytraining+dev@gmail.com 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_28015.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 - - [08/Dec/2023 16:00:28] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 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:2023-12-08 16:02:22.131517 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 16:02:22.131517 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 16:02:22.131517 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 16:02:22.131517 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 16:02:22.131517 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 16:02:22.177980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:02:22.181209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:02:22] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:02:22] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:02:25.324496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:02:26.090945 : Download_Convention_Stagiaire_PDF -dictionary update sequence element #0 has length 4; 2 is required - Line : 6846 +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:02:26] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 500 - +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:2023-12-08 16:05:31.625739 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 16:05:31.626740 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 16:05:31.626740 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 16:05:31.626740 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 16:05:31.626740 : ++ 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:2023-12-08 16:05:43.496993 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-12-08 16:05:43.496993 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-12-08 16:05:43.496993 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-12-08 16:05:43.497504 : ++ FLASK PORT 5001 ++ +INFO:root:2023-12-08 16:05:43.497504 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-12-08 16:05:43.541201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:05:43.545238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:05:43.550215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:05:43] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:05:43] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ 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 MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé :  place du test  75009
Déclation d\'activité : mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
   
Contact :  mysytraining+dev@gmail.com

\n

 

\n
\n

Et le bénéciaire :
 sekou  sekou -  pere  
(Ci-aprés nommé le client)
Situé :  place du test  75009
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : PRATICIEN EN OLFACTOTHERAPIE_dup
Type d\'action de formation : xxx
Durée : 21.0 jour (s)
Lieu de formation :  
Effectif formé : xxx
Dates de formation : 25/12/2023  au 29/12/2023 
Nom formateur : balde_em sekou_empl 
\n

 

\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 : xxx statgiaire 1

\n

[{\'email\': \'billardman01@hotmail.com\', \'nom\': \'sekou\', \'prenom\': \'sekou\'}]

\n

 

\n

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 08/12/2023 

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

Pour l\'organisme de formation
   

Contact :  mysytraining+dev@gmail.com 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_10267.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 - - [08/Dec/2023 16:05:43] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/6572ee317e488d34eade969c/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - +INFO:root:2023-12-08 16:06:14.702408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:06:14.705887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:06:14.711655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:06:14.717052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:14] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:14] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:06:29.318435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:29] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:06:35.453025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-12-08 16:06:35.457038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:35] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [08/Dec/2023 16:06:35] "POST /myclass/api/Get_Stagiaire_Communication_List_Email/ HTTP/1.1" 200 - +INFO:root:2023-12-08 16:06:41.239075 : 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 MySy Dev Compte   ci-après nommé l\'Organisme de formation
Situé :  place du test  75009
Déclation d\'activité : mysy_NDA 1234  Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :
   
Contact :  mysytraining+dev@gmail.com

\n

 

\n
\n

Et le bénéciaire :
 balde  cherif -  aicha  
(Ci-aprés nommé le client)
Situé :  place du test  75009
Représenté par : xxxx
xxx
Contact : xxx

\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

\n
Formation : PRATICIEN EN AROMATHERAPIE INTEGRATIVE
Type d\'action de formation : xxx
Durée : 21.0 jour (s)
Lieu de formation : vv 
Effectif formé : xxx
Dates de formation : 29/10/2023  au 31/10/2023 
Nom formateur : BALDEEMP Sekou emp 
\n

 

\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 : xxx statgiaire 1

\n

[{\'email\': \'billardman1@gmail.com\', \'nom\': \'balde02\', \'prenom\': \'cherif\'}, {\'email\': \'cherif.balde@yahoo.fr\', \'nom\': \'balde\', \'prenom\': \'cherif\'}, {\'email\': \'cherif.balde_0@yahoo.fr\', \'nom\': \'balde\', \'prenom\': \'cherif\'}]

\n

 

\n

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

\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 , 08/12/2023 

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

Pour l\'organisme de formation
   

Contact :  mysytraining+dev@gmail.com 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n
\n

 

\n

xxx nom_partenare
Téléphone : xxx tel part 57
Email : xxx email part
Site : xxx site part/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a_72064.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 - - [08/Dec/2023 16:06:41] "GET /myclass/api/Download_Convention_Stagiaire_PDF/T4tQPv8KK5KaYNExRelwZ674PM5lKi-XAA/65224c59f223456955510b27/6572ec3a0b24a6f90b31d100 HTTP/1.1" 200 - diff --git a/agenda.py b/agenda.py index 39c1cd6..1b704ef 100644 --- a/agenda.py +++ b/agenda.py @@ -172,8 +172,6 @@ def Add_Update_Agenda_Event(diction): return True, " L'événement a été ajouté" - - except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) diff --git a/apprenant_mgt.py b/apprenant_mgt.py new file mode 100644 index 0000000..f3ac57c --- /dev/null +++ b/apprenant_mgt.py @@ -0,0 +1,527 @@ +""" +Ce fichier permet de gerer les apprenants. + +Un apprenant est crée apres la validation d'une inscription ou sans. + +""" +import pymongo +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime +import prj_common as mycommon +import secrets +import inspect +import sys, os +import csv +import pandas as pd +from pymongo import ReturnDocument +import GlobalVariable as MYSY_GV +from math import isnan +import GlobalVariable as MYSY_GV +import ela_index_bdd_classes as eibdd +import email_mgt as email + + +""" +Ajout d'un apprenant. +La clé est l'adresse email +""" + +- log historique dans les fonction +def Add_Apprenant(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'email', 'nom', 'prenom', 'telephone', 'opco', 'employeur', 'comment', + 'client_rattachement_id', 'adresse', 'code_postal', 'ville', 'pays', + 'tuteur1_nom', 'tuteur1_prenom', 'tuteur1_email', 'tuteur1_telephone', 'tuteur1_adresse', + 'tuteur1_cp', 'tuteur1_ville', 'tuteur1_pays', 'tuteur1_include_com', + 'tuteur2_nom', 'tuteur2_prenom', 'tuteur2_email', 'tuteur2_telephone', 'tuteur2_adresse', + 'tuteur2_cp', 'tuteur2_ville', 'tuteur2_pays', 'tuteur2_include_com', + ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token','email', 'nom', 'prenom' ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que l'adresse email est valide + if( "email" in diction.keys() and diction['email']): + if( mycommon.isEmailValide(str(diction['email'])) is False ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '"+str(diction['email'])+"' n'est pas valide") + return False, " L'adresse email '"+str(diction['email'])+"' n'est pas valide ", + + + # Verifier l'adresse email du tuteur 1 + if ("tuteur1_email" in diction.keys() and diction['tuteur1_email']): + if (mycommon.isEmailValide(str(diction['tuteur1_email'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '" + str(diction['tuteur1_email']) + "' n'est pas valide") + return False, " L'adresse email '" + str(diction['tuteur1_email']) + "' n'est pas valide ", + + + # Verifier l'adresse email du tuteur 2 + if ("tuteur2_email" in diction.keys() and diction['tuteur2_email']): + if (mycommon.isEmailValide(str(diction['tuteur2_email'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '" + str( + diction['tuteur2_email']) + "' n'est pas valide") + return False, " L'adresse email '" + str(diction['tuteur2_email']) + "' n'est pas valide ", + + + # Verifier que le client_rattachement_id est valide + if ("client_rattachement_id" in diction.keys() and diction['client_rattachement_id']): + is_client_rattachement_id_valide = MYSY_GV.dbname['partner_client'].count_documents({'_id':ObjectId(str(diction['client_rattachement_id'])), + 'valide':'1', + 'locked':'0', + 'partner_recid':str(my_partner['recid'])}) + if( is_client_rattachement_id_valide <= 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide") + return False, " L'identifiant du client n'est pas valide ", + + + + # Verifier si un apprenant n'a pas deja ce meme email + is_apprenant_exist = MYSY_GV.dbname['apprenant'].count_documents({'email':str(diction['email']), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1'}) + + if( is_apprenant_exist > 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Il existe déjà un apprenant avec la même adresse email. ") + return False, " Il existe déjà un apprenant avec la même adresse email. ", + + new_data = diction + del new_data['token'] + new_data['valide'] = '1' + new_data['locked'] = '0' + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + + inserted_id = MYSY_GV.dbname['apprenant'].insert_one(new_data).inserted_id + if (not inserted_id): + mycommon.myprint( + " Impossible de créer l'apprenant (1) ") + return False, " Impossible de créer l'apprenant (1) " + + return True, "L'apprenant a été correctement ajouté " + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de créer l'apprenant " + + +""" +Mise à jour d'un apprenant. +La clé : _id +""" +def Update_Apprenant(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', '_id', 'email', 'nom', 'prenom', 'telephone', 'opco', 'employeur', 'comment', + 'client_rattachement_id', 'adresse', 'code_postal', 'ville', 'pays', + 'tuteur1_nom', 'tuteur1_prenom', 'tuteur1_email', 'tuteur1_telephone', 'tuteur1_adresse', + 'tuteur1_cp', 'tuteur1_ville', 'tuteur1_pays', 'tuteur1_include_com', + 'tuteur2_nom', 'tuteur2_prenom', 'tuteur2_email', 'tuteur2_telephone', 'tuteur2_adresse', + 'tuteur2_cp', 'tuteur2_ville', 'tuteur2_pays', 'tuteur2_include_com', + ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que l'apprenant existe deja + is_apprenant_exist = MYSY_GV.dbname['apprenant'].count_documents({'_id':ObjectId(str(diction['_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}) + if( is_apprenant_exist <= 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'apprenant n'est pas valide ") + return False, " L'identifiant de l'apprenant n'est pas valide ", + + + # Verifier que l'adresse email est valide + if ("email" in diction.keys() and diction['email']): + if (mycommon.isEmailValide(str(diction['email'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '" + str(diction['email']) + "' n'est pas valide") + return False, " L'adresse email '" + str(diction['email']) + "' n'est pas valide ", + + # Verifier l'adresse email du tuteur 1 + if ("tuteur1_email" in diction.keys() and diction['tuteur1_email']): + if (mycommon.isEmailValide(str(diction['tuteur1_email'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '" + str( + diction['tuteur1_email']) + "' n'est pas valide") + return False, " L'adresse email '" + str(diction['tuteur1_email']) + "' n'est pas valide ", + + # Verifier l'adresse email du tuteur 2 + if ("tuteur2_email" in diction.keys() and diction['tuteur2_email']): + if (mycommon.isEmailValide(str(diction['tuteur2_email'])) is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'adresse email '" + str( + diction['tuteur2_email']) + "' n'est pas valide") + return False, " L'adresse email '" + str(diction['tuteur2_email']) + "' n'est pas valide ", + + # Verifier que le client_rattachement_id est valide + if ("client_rattachement_id" in diction.keys() and diction['client_rattachement_id']): + is_client_rattachement_id_valide = MYSY_GV.dbname['partner_client'].count_documents( + {'_id': ObjectId(str(diction['client_rattachement_id'])), + 'valide': '1', + 'locked': '0', + 'partner_recid': str(my_partner['recid'])}) + if (is_client_rattachement_id_valide <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide") + return False, " L'identifiant du client n'est pas valide ", + + apprenant_id = str(diction['_id']) + new_data = diction + del new_data['token'] + del new_data['_id'] + + new_data['valide'] = '1' + new_data['locked'] = '0' + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + + ret_val = MYSY_GV.dbname['apprenant'].find_one_and_update( + {'_id': ObjectId(str(apprenant_id)), + 'partner_owner_recid':str(my_partner['recid'])}, + {"$set": new_data}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + + if ret_val is None or ret_val['_id'] is None: + mycommon.myprint(str(inspect.stack()[0][3]) + " Impossible de mettre à jour l'apprenant (1) ") + return False, " Impossible de mettre à jour l'apprenant (1) " + + + return True, "L'apprenant a été correctement mise à jour " + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de mettre à jour l'apprenant " + + +""" +Recuperer les données detaillée d'un apprenant +""" +def Get_Given_Apprenant_Data(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', '_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que l'apprenant existe deja + is_apprenant_exist = MYSY_GV.dbname['apprenant'].count_documents({'_id':ObjectId(str(diction['_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}) + if( is_apprenant_exist <= 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'apprenant n'est pas valide ") + return False, " L'identifiant de l'apprenant n'est pas valide ", + + RetObject = [] + val_tmp = 1 + for val in MYSY_GV.dbname['apprenant'].find_one({'_id':ObjectId(str(diction['_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}): + user = val + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + # Recuperer les données du client + if( "client_rattachement_id" in val.keys() and val['client_rattachement_id'] ): + client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(val['client_rattachement_id'])), + 'valide':'1', + 'locked':'0'}) + user['client_nom'] = client_data['nom'] + + RetObject.append(mycommon.JSONEncoder().encode(user)) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer les données de l'apprenant " + + +""" +Récuperer la liste des apprenants d'un partenaire +""" +def Get_List_Partner_Apprenant(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + RetObject = [] + val_tmp = 1 + for val in MYSY_GV.dbname['apprenant'].find_one({'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + 'locked': '0'}): + user = val + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + # Recuperer les données du client + if ("client_rattachement_id" in val.keys() and val['client_rattachement_id']): + client_data = MYSY_GV.dbname['partner_client'].find_one( + {'_id': ObjectId(str(val['client_rattachement_id'])), + 'valide': '1', + 'locked': '0'}) + user['client_nom'] = client_data['nom'] + + RetObject.append(mycommon.JSONEncoder().encode(user)) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des apprenants " + + +""" +Inscrire un apprenant à un session de formation +""" +def Apprenant_Inscrire_Session(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', '_id', 'session_id' ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id', 'session_id' ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verifier que l'apprenant existe + is_apprenant_exist = MYSY_GV.dbname['apprenant'].count_documents({'_id':ObjectId(str(diction['_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}) + if( is_apprenant_exist <= 0 ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'apprenant n'est pas valide ") + return False, " L'identifiant de l'apprenant n'est pas valide ", + + # Recuperer les données de l'apprenant + apprenant_data = MYSY_GV.dbname['apprenant'].count_documents({'_id': ObjectId(str(diction['_id'])), + 'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + 'locked': '0'}) + + # Verifier que la session de formation existe et est valide + is_session_existe = MYSY_GV.dbname['session_formation'].count_documents({'_id':ObjectId(str(diction['session_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + }) + + if (is_apprenant_exist <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de la session de formation n'est pas valide ") + return False, " L'identifiant de la session de formation n'est pas valide ", + + # Recuperer les données de la session + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(diction['session_id'])), + 'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + }) + + + new_data = {} + new_data['email'] = apprenant_data['email'] + new_data['apprenant_id'] = str(apprenant_data['_id']) + new_data['session_id'] = str(session_data['_id']) + new_data['class_internal_url'] = session_data['class_internal_url'] + new_data['status'] = "1" + + + new_data['inscription_validation_date'] = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + new_data['partner_owner_recid'] = str(my_partner['recid']) + + + # Reste à faire : + - ajout dans la collection 'inscription' + - log historique + - envoie email inscription + + return True + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible d'inscrire l'apprenant à la session de formation " + + diff --git a/partner_document_mgt.py b/partner_document_mgt.py index 1eb26b4..3885c6c 100644 --- a/partner_document_mgt.py +++ b/partner_document_mgt.py @@ -1106,7 +1106,7 @@ def Get_Given_Personnalisable_Fields_By_courrier_template_id(diction): val_tmp = 1 #print(" ### data_cle = ", data_cle) - for retval in MYSY_GV.dbname['courrier_template_champ_config'].find(data_cle): + for retval in MYSY_GV.dbname['courrier_template_champ_config'].find(data_cle).sort([("nom_champ_fonctionel", pymongo.ASCENDING)]): user = retval user['id'] = str(val_tmp) val_tmp = val_tmp + 1 diff --git a/prj_common.py b/prj_common.py index 18d3cf7..fdbbf49 100644 --- a/prj_common.py +++ b/prj_common.py @@ -3622,7 +3622,8 @@ def Check_Connexion_And_Return_Partner_Data(diction): """ /!\ Update du 26/11/2023 : - On a plutot besoin de recuperer les données du user connecté au lieu du partenaire + On a plutot besoin de recuperer les données du user connecté au lieu du partenaire, + """ local_status, my_connected_user = get_connected_data_from_token(token) if (local_status is False): @@ -3636,6 +3637,23 @@ def Check_Connexion_And_Return_Partner_Data(diction): myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de verifier la connexion" +""" +Cette fonction retourne les données du partenair rattaché au user connecté +""" +def Get_Connected_User_Partner_Data_From_RecID(user_recid): + try: + + + mydata = MYSY_GV.dbname['partnair_account'].find_one({'recid':str(user_recid), 'is_partner_admin_account':'1', 'active':'1', 'locked':'0'}) + if( mydata is None): + return False, " Aucun compte partenaire actif pour cet utilisateur" + + return True,mydata + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer les données du partenaire" """