From c264ad0ac29afd4f8a529b82d8a3c7616ec2a4fe Mon Sep 17 00:00:00 2001 From: cherif Date: Sat, 23 Mar 2024 00:01:04 +0100 Subject: [PATCH] 20/03/2024 - 22h30dss --- .idea/workspace.xml | 25 +- E_Sign_Document.py | 389 +++++++++---- Log/log_file.log | 1296 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 1599 insertions(+), 111 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 49fb5fe..81f1bb9 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,13 +1,10 @@ - + - - - @@ -435,7 +432,6 @@ - @@ -460,6 +456,7 @@ - \ No newline at end of file diff --git a/E_Sign_Document.py b/E_Sign_Document.py index 4c6222b..cb7eff5 100644 --- a/E_Sign_Document.py +++ b/E_Sign_Document.py @@ -41,7 +41,6 @@ Chaque signataire reçoit par mail une notification pour signer ainsi qu’un co import base64 - import bson import pymongo from pymongo import MongoClient @@ -364,37 +363,94 @@ def Get_Given_E_Document_Not_Signed_No_Token(diction): # Creation de l'email à enoyer msg = MIMEMultipart("alternative") - html = """\ - - -
-
- -
-
- -
-
-
- -
- Bonjour - -
-
- Vous venez de lancer une procedure de signature digitale. Voici le code de validation :
- - """ + secret_key_for_sign + """
- -

- Cordialement. -
- - + """ + Recupération du modele de courrier. + le principe est de prendre le module du partenaire. si pas de modele du partenaire on + prend le modele par default """ + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNATURE_CODE", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNATURE_CODE", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) - # contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) - # sourceHtml = contenu_doc_Template.render(params=body["params"]) + else: + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNATURE_CODE", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNATURE_CODE", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + else: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Aucun modèle de document configuré pour envoyer les e-documents signés ") + return False, " Aucun modèle de document configuré pour envoyer les e-documents signés " + + if ("contenu_doc" not in courrier_template_data.keys() or str( + courrier_template_data['contenu_doc']).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le modèle de document ne contient pas de valeur 'contenu_doc' ") + return False, " Le modèle de document ne contient pas de valeur 'contenu_doc' " + + + """ + On est sur une fonction sans token, mais pour recuperer des infos en mode connecté comme le dictionnaire + je vais aller prendre le token du compte admin + """ + temp_admin_account = MYSY_GV.dbname['partnair_account'].find_one({'recid':str(local_partner_owner_recid), + 'active':'1', + 'is_partner_admin_account':'1', + 'locked':'0'}) + + if( temp_admin_account is None ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Impossible de recupérer les données du partenaire ") + return False, " Impossible de recupérer les données du partenaire " + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = temp_admin_account['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data["secret_key_signature"] = str(secret_key_for_sign) + + body = { + "params": convention_dictionnary_data + } + + html = contenu_doc_Template.render(params=body["params"]) html_mime = MIMEText(html, 'html') @@ -594,7 +650,7 @@ def Create_E_Signature_For_E_Document(diction): str(inspect.stack()[0][3]) + " L'idientifiant du E-Document est invalide ") return False, " L'idientifiant du E-Document est invalide " - + local_partner_owner_recid = e_document_data['partner_owner_recid'] """ @@ -631,17 +687,50 @@ def Create_E_Signature_For_E_Document(diction): with open(qr_code_img_file, "rb") as image2string: qr_code_converted_string = base64.b64encode(image2string.read()).decode() - print(" ### qr_code_converted_string = ", qr_code_converted_string) - img_qr_code = "data:image/png;base64," + str(qr_code_converted_string) - print(" ### img_qr_code = ", img_qr_code) + + """ + On est sur une fonction sans token, mais pour recuperer des infos en mode connecté comme le dictionnaire + je vais aller prendre le token du compte admin + """ + temp_admin_account = MYSY_GV.dbname['partnair_account'].find_one({'recid': str(local_partner_owner_recid), + 'active': '1', + 'is_partner_admin_account': '1', + 'locked': '0'}) + + if (temp_admin_account is None): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Impossible de recupérer les données du partenaire ") + return False, " Impossible de recupérer les données du partenaire " + + Create_E_Signature_For_E_Document + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = temp_admin_account['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data["mysy_signature_digitale"] = str(local_signature_digitale) + convention_dictionnary_data["mysy_url_securite"] = local_url_securite + convention_dictionnary_data["mysy_qrcode_securite"] = "data:image/png;base64," + qr_code_converted_string, body = { - "params": {"mysy_signature_digitale":str(local_signature_digitale), - 'mysy_url_securite':local_url_securite, - 'mysy_qrcode_securite': "data:image/png;base64," + qr_code_converted_string, - } + "params": convention_dictionnary_data } + + source_data = str(e_document_data['source_document']) + "
cherifffffffff

{{ mysy_url_securite }}

 
" + contenu_doc_Template = jinja2.Template(str(e_document_data['source_document'])) sourceHtml = contenu_doc_Template.render(params=body["params"]) @@ -672,6 +761,7 @@ def Create_E_Signature_For_E_Document(diction): 'secret_key_signature': str(diction['secret_key_signature']), 'email_destinataire': str(diction['email_destinataire'])} + new_data = {} new_data['document_data_signed'] = final_encoded_pdf_to_string result = MYSY_GV.dbname['e_document_signe'].find_one_and_update( @@ -703,34 +793,95 @@ def Create_E_Signature_For_E_Document(diction): new_node = {"attached_file": file_to_attache_to_mail} tab_files_to_attache_to_mail.append(new_node) - html = """\ - - -
-
- -
-
- -
-
-
- -
- Bonjour - -
-
- Merci de trouver en pièce jointe le document signé electroniquement - -
- -

- Cordialement. -
- - """ + Recupération du modele de courrier. + le principe est de prendre le module du partenaire. si pas de modele du partenaire on + prend le modele par default + """ + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNED", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) + if( courrier_template_model == 1 ): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNED", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) + + else: + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNED", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNED", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + else: + mycommon.myprint(str(inspect.stack()[0][3]) + " Aucun modèle de document configuré pour envoyer les e-documents signés ") + return False, " Aucun modèle de document configuré pour envoyer les e-documents signés " + + if( "contenu_doc" not in courrier_template_data.keys() or str(courrier_template_data['contenu_doc']).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le modèle de document ne contient pas de valeur 'contenu_doc' ") + return False, " Le modèle de document ne contient pas de valeur 'contenu_doc' " + + + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + """ + On est sur une fonction sans token, mais pour recuperer des infos en mode connecté comme le dictionnaire + je vais aller prendre le token du compte admin + """ + temp_admin_account = MYSY_GV.dbname['partnair_account'].find_one({'recid': str(local_partner_owner_recid), + 'active': '1', + 'is_partner_admin_account': '1', + 'locked': '0'}) + + if (temp_admin_account is None): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Impossible de recupérer les données du partenaire ") + return False, " Impossible de recupérer les données du partenaire " + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = temp_admin_account['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + + body = { + "params": convention_dictionnary_data + } + + html = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(html, 'html') # Creation de l'email à enoyer msg = MIMEMultipart("alternative") @@ -912,7 +1063,7 @@ def Sent_E_Document_Signature_Request(diction): """ url_signature = MYSY_GV.CLIENT_URL_BASE+"E_Signature/"+str(e_document_data['_id']) - + local_partner_owner_recid = e_document_data['partner_owner_recid'] """ Recuperation des parametre SMTP du partner si le client a decidé d'utiliser son propre smpt @@ -966,40 +1117,84 @@ def Sent_E_Document_Signature_Request(diction): # Creation de l'email à enoyer msg = MIMEMultipart("alternative") - html = """\ - - -
-
- -
-
- -
-
-
- -
- Bonjour - -
-
- Cliquez sur le lien ci-dessous pour signer electroniquement le document :
- - """ + url_signature + """
- -

- -

- Le code d'ouverture du document est : """+ str(e_document_open_code) +""" -

- Cordialement. -
- - """ + Recupération du modele de courrier. + le principe est de prendre le module du partenaire. si pas de modele du partenaire on + prend le modele par default + """ + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNATURE_REQUEST", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNATURE_REQUEST", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': str(local_partner_owner_recid)} + ) + + else: + courrier_template_model = MYSY_GV.dbname['courrier_template'].count_documents( + {'ref_interne': "E_DOCUMENT_SIGNATURE_REQUEST", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + if (courrier_template_model == 1): + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one( + {'ref_interne': "E_DOCUMENT_SIGNATURE_REQUEST", + 'valide': '1', + 'locked': '0', + 'type_doc': 'email', + 'partner_owner_recid': "default"} + ) + else: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Aucun modèle de document configuré pour envoyer les e-documents signés ") + return False, " Aucun modèle de document configuré pour envoyer les e-documents signés " + + if ("contenu_doc" not in courrier_template_data.keys() or str( + courrier_template_data['contenu_doc']).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le modèle de document ne contient pas de valeur 'contenu_doc' ") + return False, " Le modèle de document ne contient pas de valeur 'contenu_doc' " + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) + + # Creation du dictionnaire d'information à utiliser pour la creation du doc + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = [] + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data["e_document_open_code"] = str(e_document_data['secret_key_open']) + convention_dictionnary_data["url_signature"] = str(url_signature) + + body = { + "params": convention_dictionnary_data + } + + html = contenu_doc_Template.render(params=body["params"]) + + html_mime = MIMEText(html, 'html') #contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) #sourceHtml = contenu_doc_Template.render(params=body["params"]) diff --git a/Log/log_file.log b/Log/log_file.log index 3e50461..cf882d1 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2166024,3 +2166024,1299 @@ INFO:root:2024-03-22 18:37:11.115417 : ++ FLASK PORT 5001 ++ INFO:root:2024-03-22 18:37:11.115417 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 22:41:25.299466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 22:41:25.299466 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 22:41:25.300466 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 22:41:25.300466 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 22:41:25.300466 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 22:41:37.103823 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 22:41:37.103823 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 22:41:37.103823 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 22:41:37.104823 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 22:41:37.104823 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 22:42:36.757657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:36.757657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:36.758671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:36.760906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:36.762330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:36.766368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:36] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:36] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:36] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:37.098001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.099334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.100862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.102889 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:37.676213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.677358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.678384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.679399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.685381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:37.688920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.003868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.014845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:38.018845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.028831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.035851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.049852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.314255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.329855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.345655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.353908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.362137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:38.366669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.626286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.644570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.655146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.664232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.674651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:38.678956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.937643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.969115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:38.973119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.979521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:38.989793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:38.991769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.255918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.285504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.292729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.297274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.309343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.310767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.566307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.612390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.614951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.618955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.631718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.637706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.891466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.937638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.941277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.947061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:39.951736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:39.961914 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.203663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.263712 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:40.269148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.280539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:40.282533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:40.284546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.517629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.580071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.589250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:42:40.600557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:40.603466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:42:40.606975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:42:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:22.953068 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:22.954088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:22.959081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:22.961080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:22.964091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:22.969089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:22] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.356176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.358195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.476392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.478377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.637723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.642204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.647199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.652652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.657209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.660770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.665528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.675407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.678440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.685440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.689236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.697053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.700349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.707826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.712294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.717451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.726170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.730597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.736952 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.741978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.752629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.759329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.764312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.772287 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.775298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.781463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.785456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.794386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.796962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.801136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.806989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.813339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.819732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.824391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.827125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.836326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.841586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.848924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.854271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.858940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.867294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.870288 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.877383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.885633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.893746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.898784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.908287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.913301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.919981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.928536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.930541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.937901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.943954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.948941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.957654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.960177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:23.965052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.972447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.977475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:23.984808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:23] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.465285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.576261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.580773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.585083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.588230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.596231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.602669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.606186 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-03-22 22:49:28.607606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.622295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.631354 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:28.732656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.735972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.743570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:28.749113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:28] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.854348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.857480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.862194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.868203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.875207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.877220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.885852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.890855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.897498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.902882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.909395 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.920730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.931786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.938801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.946462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.950454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.965457 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.971393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:30.978539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:30.992336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:30] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:31.000833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:31.005975 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:35.589904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:35.593946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:35.597082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:35.601634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:35.605641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:35.616363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:38.410308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:38.412910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:38.416836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:38.423576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:38.430230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:49:38.437643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:39] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:49:56.232859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:49:56] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:50:09.483868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:50:09] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:50:18.640587 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:50:19.780460 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 22:50:19.782436 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n
\n
\n
\n

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

\n
\n
\n
\n
\n
 Est conclue la convention suivante entre
\n
L\'Organisme de formation  Dev MySy Training   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 : Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 
Téléphone : +331 01 77 00 38 57 
\n

Et

\n
Et le bénéciaire :
 part 2 part nom2 
(Ci-aprés nommé le client)
Situé :  adresse01  code_postal01 ville01 

\n
\n
\n

PRÉAMBULE
EZUS Lyon   Dev MySy Training 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é Dev MySy Training  fait appel au : Docteur Eric J. VOIGLIO, MD, PhD, FACS, FRCS Directeur ATLS France.

\n

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

\n

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

\n

 Dev MySy Training 

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

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

\n

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

\n

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

\n

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

\n

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

\n

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

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation Training   Dev MySy 

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n

 

\n
\n

 

\n
\n

 

\n

 Dev MySy Training 
Téléphone : 07 69 20 39 45 
Email :  mysytraining+dev@gmail.com 
Site :   

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_09265.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 - - [22/Mar/2024 22:50:21] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:50:21.282098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:50:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:06.119921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:15.853222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:15.857001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:15.858019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:15.865768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:15.870269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:15.874298 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-03-22 22:51:15.875296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:15.888897 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.076615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.080615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.086317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.094403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.098888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.111036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.117046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.122826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.133167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.153239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.158239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.166239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.173238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.179823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.207832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.211664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.214891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.220553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.226864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:16.231896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.247279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:16.253404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:23.264465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:23.278944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:29.974750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:29.976760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:29.980941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:29.986955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:29.993309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:29] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:30.004844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:30.009990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:30.016000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:51:41.066949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:41.069459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:41.072474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:51:41.078475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:41] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:41] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:41] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:51:41] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:53:10.385033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:10.388765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:10.393389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:10.398403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:10.405494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:10.414695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:10] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:11] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:53:12.551654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:12] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:53:15.171804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:15] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:53:18.959112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:53:19.036716 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 22:53:19.039714 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_07776.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:root:2024-03-22 22:53:19.197997 : Sent_E_Document_Signature_Request -'NoneType' object has no attribute 'keys' - Line : 1064 +INFO:root:2024-03-22 22:53:19.197997 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-22 22:53:19.257678 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 22:53:19.260183 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_28935.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:root:2024-03-22 22:53:19.413801 : Sent_E_Document_Signature_Request -'NoneType' object has no attribute 'keys' - Line : 1064 +INFO:root:2024-03-22 22:53:19.413801 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:19] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:53:19.435382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:53:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 22:55:00.073823 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 22:55:00.073823 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 22:55:00.073823 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 22:55:00.073823 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 22:55:00.073823 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 22:55:35.873753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:55:37.030764 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:37.034786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:37.038529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:37.042907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:37.047454 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:37.051459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:37] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:55:40.827723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:40] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:55:43.762379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:55:43] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:55:59.454596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:55:59.990638 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 22:55:59.993637 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_28379.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:root:2024-03-22 22:56:00.160865 : Sent_E_Document_Signature_Request -'NoneType' object has no attribute 'keys' - Line : 1063 +INFO:root:2024-03-22 22:56:00.160865 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-22 22:56:00.221464 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 22:56:00.224455 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_55256.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:root:2024-03-22 22:56:00.368147 : Sent_E_Document_Signature_Request -'NoneType' object has no attribute 'keys' - Line : 1063 +INFO:root:2024-03-22 22:56:00.368147 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:56:00] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:56:00.386569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:56:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-22 22:57:16.427037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:57:16.433889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 22:57:16.436004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:57:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:57:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 22:57:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 22:57:39.604835 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 22:57:39.605833 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 22:57:39.605833 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 22:57:39.605833 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 22:57:39.605833 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:01:02.635751 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:01:02.635751 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:01:02.635751 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:01:02.635751 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:01:02.635751 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:04:08.695424 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:04:08.695424 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:04:08.695424 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:04:08.695424 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:04:08.695424 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:04:39.848778 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:04:39] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:04:42.718936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:04:42] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:04:49.274222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:04:49.830527 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:04:49.832521 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_68014.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:root:2024-03-22 23:04:50.019417 : Sent_E_Document_Signature_Request -'dict object' has no attribute 'company_data' - Line : 1076 +INFO:root:2024-03-22 23:04:50.019417 : WARNING : impossible d'envoyer la convention au client : 65f05b37c544f77525a30645 +INFO:root:2024-03-22 23:04:50.076239 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:04:50.078246 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_08734.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:root:2024-03-22 23:04:50.223618 : Sent_E_Document_Signature_Request -'dict object' has no attribute 'company_data' - Line : 1076 +INFO:root:2024-03-22 23:04:50.223618 : WARNING : impossible d'envoyer la convention au client : 65f05b71c544f77525a30647 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:04:50] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:04:50.238615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:04:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:11:08.930018 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:11:08.930018 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:11:08.930018 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:11:08.931024 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:11:08.933017 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:11:31.249184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:11:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:11:33.170088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:11:33] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:11:37.788300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:11:38.480116 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:11:38.482126 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_18283.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:root:2024-03-22 23:11:38.676098 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:11:38.678093 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:root:2024-03-22 23:11:39.661337 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:11:39.663988 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_92268.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:root:2024-03-22 23:11:39.823084 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:11:39.825108 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:11:40] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:11:40.511947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:11:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:13:26.498651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:13:26.498651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:13:26.498651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:13:26.499733 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:13:26.499733 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:13:52.293422 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:13:52.293422 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:13:52.293422 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:13:52.293422 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:13:52.293422 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:14:24.745605 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:14:24.745605 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:14:24.745605 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:14:24.745605 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:14:24.745605 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:15:31.661732 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:15:31.661732 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:15:31.661732 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:15:31.661732 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:15:31.661732 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:17:09.410540 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:17:09.411526 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:17:09.411526 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:17:09.411526 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:17:09.411526 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:17:50.205867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:17:50] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:17:54.361474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:17:54] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:18:02.306739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:18:02.859576 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:18:02.861577 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_90894.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:root:2024-03-22 23:18:03.041009 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:18:03.042989 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:root:2024-03-22 23:18:03.920750 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:18:03.922727 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_53034.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:root:2024-03-22 23:18:04.084754 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:18:04.086754 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:18:04] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:18:04.792282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:18:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:14.663802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:14.708912 : La session de connexion n'est pas valide +INFO:root:2024-03-22 23:19:14.711720 : Get_Given_E_Document_Not_Signed_No_Token -'str' object does not support item assignment - Line : 434 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:14] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:38.037360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:38.346258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.347686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.349156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.351509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.353893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:38.469229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.470700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:38.658391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:38.659420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.014605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.015616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.016616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.017962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.023464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.059686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.343187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.344187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.348241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.356612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.359677 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.366549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.671331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.673339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.673339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.674362 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:19:39.680398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:19:39.690167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:19:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:20:08.210257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:20:08.256590 : La session de connexion n'est pas valide +INFO:root:2024-03-22 23:20:08.259631 : Get_Given_E_Document_Not_Signed_No_Token -'str' object does not support item assignment - Line : 434 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:20:08] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:20:34.045020 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:20:34.083710 : La session de connexion n'est pas valide +INFO:root:2024-03-22 23:20:34.085738 : Get_Given_E_Document_Not_Signed_No_Token -'str' object does not support item assignment - Line : 434 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:20:34] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:30:33.010493 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:30:33.010493 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:30:33.011490 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:30:33.011490 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:30:33.011490 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:30:41.758374 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:30:41.758374 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:30:41.758374 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:30:41.758374 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:30:41.758374 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:30:50.576662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:30:51.047375 : Get_Given_E_Document_Not_Signed_No_Token Impossible de recupérer les données du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:30:51] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:32:23.219508 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:32:23.219508 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:32:23.219508 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:32:23.219508 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:32:23.219508 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:32:23.255926 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:32:23.723548 : Get_Given_E_Document_Not_Signed_No_Token Impossible de recupérer les données du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:32:23] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:34:38.339567 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:34:38.339567 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:34:38.340567 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:34:38.340567 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:34:38.340567 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:34:45.038190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:34:45.549722 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:34:45.551710 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:34:46] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:35:17.325816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:35:17.391557 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:35:17.393883 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:35:17] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:36:02.703160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:36:02.947056 : La session de connexion n'est pas valide +INFO:root:2024-03-22 23:36:02.950030 : Create_E_Signature_For_E_Document -'str' object does not support item assignment - Line : 717 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:36:02] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:36:37.310546 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:36:37.310546 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:36:37.310546 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:36:37.310546 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:36:37.310546 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:37:20.566816 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:37:20.566816 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:37:20.566816 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:37:20.566816 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:37:20.566816 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:37:46.754646 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:37:46.755635 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:37:46.755635 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:37:46.755635 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:37:46.755635 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:38:39.758358 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:38:39.758358 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:38:39.758358 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:38:39.758358 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:38:39.758358 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:38:42.657808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:38:43.266218 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:38:43.268234 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 


Lien sécurisé = http://localhost:3009/E_Document/65fe039a9dca1665dc1089d0/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/JfUUGxA

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_77235.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject '(', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:root:2024-03-22 23:38:43.400352 : La session de connexion n'est pas valide +INFO:root:2024-03-22 23:38:43.405081 : Create_E_Signature_For_E_Document -'str object' has no attribute 'company_data' - Line : 865 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:38:43] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:39:33.007135 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:39:33.007135 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:39:33.007135 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:39:33.007135 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:39:33.007135 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:39:33.043201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:33.691740 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:39:33.693735 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 


Lien sécurisé = http://localhost:3009/E_Document/65fe039a9dca1665dc1089d0/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/JfUUGxA

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_02735.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject '(', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:root:2024-03-22 23:39:33.810502 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:39:33.812032 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:34] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:36.955800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.265402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.266398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.267394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.268401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.272497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.418079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.420092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.578913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.580458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.915746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:37.919318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.922329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.926316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.931933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:37.993022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:37] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.243004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:38.245570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.250070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:38.254083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.261503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.305424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.555640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.563740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:38.566016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.570319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.575792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.617458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.867640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.873695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.878825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.883040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:38.886440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:38.929572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:38] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.182408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.185432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.190679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.194712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.198728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.244843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.493795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.496953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.504170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.508481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.516054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.556524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.818750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.821474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.824834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.831158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:39.835509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:39.862132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.144694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.146630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.147644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.150690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.155854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.168714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.471865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.472875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.476893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.481938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.484378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.488796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.799322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.800856 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.801854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.805875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:39:40.808858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:39:40.815811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:39:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:49:33.237781 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:49:33.237781 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:49:33.237781 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:49:33.237781 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:49:33.237781 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:51:13.289962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:51:13] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:51:13.332922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:51:13] "POST /myclass/api/Get_Given_E_Document_Signed_No_Token/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:53:14.186654 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:53:14.186654 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:53:14.186654 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:53:14.186654 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:53:14.186654 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:54:38.190907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:54:38.190907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:54:38.191900 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:54:38.191900 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:54:38.191900 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-03-22 23:54:48.851514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:54:48] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:54:52.671718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:54:52] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:54:57.211857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:54:57.701533 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:54:57.702533 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_40432.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:root:2024-03-22 23:54:57.907343 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:54:57.909348 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:root:2024-03-22 23:54:59.476117 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:54:59.478121 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 2   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenom2 prenom2  en qualité de
Contact : billardman01@hotmail.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_43598_03304.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:root:2024-03-22 23:54:59.633211 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:54:59.634211 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:55:00] "POST /myclass/api/Prepare_and_Send_Convention_From_Session_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:55:00.352557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:55:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:55:32.394320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:55:32.445702 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:55:32.447702 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:55:32] "POST /myclass/api/Get_Given_E_Document_Not_Signed_No_Token/ HTTP/1.1" 200 - +INFO:root:2024-03-22 23:56:51.287099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-03-22 23:56:51.399943 : getRecodedParnterImage_from_front Aucune image (Logo ou Cachet trouvé) +INFO:root:2024-03-22 23:56:51.402101 : Get_Dictionnary_data_For_Template WARNING : Impossible de récuperer le logo et le cachet du partenaire +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

\n
\n
\n

 

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

Entre L\'Organisme de formation    ci-après nommé l\'Organisme de formation
Situé :    
Déclation d\'activité :   Représenté par : [PDG]
Signataire dûment habilité aux fins des présentes :  Training Dev MySy 
Contact :  mysytraining+dev@gmail.com 

\n

 

\n
\n

Et le bénéciaire : Client 1   Réprésenté par
(Ci-aprés nommé le client)
Situé :      
Représenté par :  prenpù prenpù  en qualité de
Contact : cbalde@mysy-training.com 

\n

 

\n
\n
\n

Est conclue la convention suivante. 

\n

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

\n


Formation :  DEMO 1 PRATICIEN EN AROMATHERAPIE INTEGRATIVE 

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

\n

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

\n

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

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

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

\n

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

\n

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

\n

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

\n

 

\n

 

\n

Paris , 22/03/2024 

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

Pour l\'organisme de formation
Training  Dev MySy

\n
\n

Pour le client :
Nom & Prénom du Signataire

\n
\n

 

\n

 

\n

 

\n

Dev MySy Training 
Téléphone : 
Site web :  

\n

 

\n

 


Lien sécurisé = http://localhost:3009/E_Document/65fe0c41025e17c249f8e6fc/43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89/wR7hAnI

 

' + dest = <_io.BufferedRandom name='./temp_direct/Convention_Signe_07656.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:FileObject '(', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:URLParts: (ParseResult(scheme='c', netloc='', path='\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__', params='', query='', fragment=''), 'c') +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf:Unrecognized scheme, assuming local file path +WARNING:xhtml2pdf:Need a valid file name! +'' +INFO:root:2024-03-22 23:56:51.485336 : Create_E_Signature_For_E_Document -can't concat str to bytes - Line : 761 +INFO:werkzeug:127.0.0.1 - - [22/Mar/2024 23:56:51] "POST /myclass/api/Create_E_Signature_For_E_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-03-22 23:58:00.841616 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-03-22 23:58:00.841616 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-03-22 23:58:00.841616 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-03-22 23:58:00.841616 : ++ FLASK PORT 5001 ++ +INFO:root:2024-03-22 23:58:00.841616 : ++ 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\\E_Sign_Document.py', reloading +INFO:werkzeug: * Restarting with stat