From 6ba4292ae3fa566795ae8412fcbfb6a6f32313eb Mon Sep 17 00:00:00 2001 From: Cherif Date: Mon, 16 Feb 2026 18:27:24 +0100 Subject: [PATCH] 16/02/26 - 18h30 Signed-off-by: Cherif --- .idea/workspace.xml | 24 +- Dashbord_queries/BPF.py | 8 +- Inscription_mgt.py | 438 +++++ Log/log_file.log | 3356 ++++++++++++++++++++++++++++++++++ Session_Formation.py | 14 +- code_promo_mgt.py | 2 +- email_mgt.py | 52 +- main.py | 55 +- partner_invoice.py | 2 +- partners.py | 315 ++++ stage_mgt.py | 33 +- tools_cherif/tools_cherif.py | 4 +- 12 files changed, 4239 insertions(+), 64 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f3df2e2..6a14e68 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,19 +4,19 @@ - @@ -527,6 +526,7 @@ - \ No newline at end of file diff --git a/Dashbord_queries/BPF.py b/Dashbord_queries/BPF.py index 73d0345..99accb6 100644 --- a/Dashbord_queries/BPF.py +++ b/Dashbord_queries/BPF.py @@ -358,7 +358,7 @@ def Get_Qery_Generate_BPF_From_partner_invoice_header(diction): bpf_c2_type_apprenant = [] total_bpf_c_type_apprenant = 0 for retval in MYSY_GV.dbname['partner_invoice_header'].aggregate(C2_pipe_qry_invoice_header_partner__invoice_line_detail__partner_type_organisme_financement__type_apprenant): - print(" ### retval = ", retval) + #print(" ### retval = ", retval) node = {} node['Type_Apprenant_Code'] = retval['_id']['Type_Apprenant'] node['Type_Apprenant_Desc'] = retval['_id']['Type_Apprenant_Description'] @@ -480,7 +480,7 @@ def Get_Qery_Generate_BPF_From_partner_invoice_header(diction): total_bpf_c3_c8_type_pouvoir_public = 0 for retval in MYSY_GV.dbname['partner_invoice_header'].aggregate( C3_C8_pipe_qry_invoice_header_partner__invoice_line_detail__partner_type_pouvoir_public): - print(" bpf_c3_c8_type_pouvoir_public ### retval = ", retval) + #print(" bpf_c3_c8_type_pouvoir_public ### retval = ", retval) node = {} node['Type_pouvoir_public_desc'] = retval['_id']['Type_pouvoir_public_desc'] node['TotalAmount_HT'] = retval['TotalAmount_HT'] @@ -1593,7 +1593,7 @@ def Prepare_and_Print_BPF_PDF(diction): total_bpf_c_type_apprenant = 0 for retval in MYSY_GV.dbname['partner_invoice_header'].aggregate( C2_pipe_qry_invoice_header_partner__invoice_line_detail__partner_type_organisme_financement__type_apprenant): - print(" ### retval = ", retval) + #print(" ### retval = ", retval) node = {} node['Type_Apprenant_Code'] = retval['_id']['Type_Apprenant'] node['Type_Apprenant_Desc'] = retval['_id']['Type_Apprenant_Description'] @@ -1711,7 +1711,7 @@ def Prepare_and_Print_BPF_PDF(diction): total_bpf_c3_c8_type_pouvoir_public = 0 for retval in MYSY_GV.dbname['partner_invoice_header'].aggregate( C3_C8_pipe_qry_invoice_header_partner__invoice_line_detail__partner_type_pouvoir_public): - print(" bpf_c3_c8_type_pouvoir_public ### retval = ", retval) + #print(" bpf_c3_c8_type_pouvoir_public ### retval = ", retval) node = {} node['Type_pouvoir_public_desc'] = retval['_id']['Type_pouvoir_public_desc'] node['TotalAmount_HT'] = retval['TotalAmount_HT'] diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 6e3b894..c03885f 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -9670,6 +9670,444 @@ def Get_Statgaire_List_Partner_with_filter(diction): +""" +Cette fonction récupérer la liste des stagiaire d'un partenaire. +On y ajoute la formation concernée - version light pour alleger la recherche +""" +def Get_Statgaire_List_Partner_with_filter_light(diction): + try: + field_list = ['token', 'session_id', 'archive', 'with_alert'] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - Le champ '" + val + "' n'est pas autorisé, Creation partenaire annulée") + return False, "Toutes les informations fournies ne sont pas valables" + + """ + Verification de la liste des champs obligatoires + """ + field_list_obligatoire = ['token'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, "Toutes les informations necessaires n'ont pas été fournies" + + # Recuperation du recid du partner + mydata = {} + mytoken = "" + if ("token" in diction.keys()): + if diction['token']: + mytoken = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + partner_recid = my_partner['recid'] + + + """ + 30/07/2024 - Pour la gestion du recyclage, recuperer les paramettres du partner dans la collection "base_partner_setup" + - recyclage_warning + - recyclage_warning_lead_time + """ + recyclage_warning = "0" + recyclage_warning_lead_time = "0" + partner_base_setup_recyclage_warning = MYSY_GV.dbname['base_partner_setup'].find_one({"config_name":'recyclage_warning', + 'valide':'1', 'locked':'0', + 'partner_owner_recid':my_partner['recid']}) + + if( partner_base_setup_recyclage_warning and "config_value" in partner_base_setup_recyclage_warning.keys() ): + recyclage_warning = partner_base_setup_recyclage_warning['config_value'] + + + if( recyclage_warning == "1"): + partner_base_setup_recyclage_warning_lead_time = MYSY_GV.dbname['base_partner_setup'].find_one( + {"config_name": 'recyclage_warning_lead_time', + 'valide': '1', 'locked': '0', + 'partner_owner_recid': my_partner['recid']}) + + if (partner_base_setup_recyclage_warning_lead_time and "config_value" in partner_base_setup_recyclage_warning_lead_time.keys()): + recyclage_warning_lead_time = str(mycommon.tryInt(str(partner_base_setup_recyclage_warning_lead_time['config_value']))) + + + + + """ + Etape 1 : si on a le champ 'code session' saisie par l'utilisateur, + alors on va commencer par aller cherche toutes les session avec un regex de la valeur saisie filter sur le partner_recid + + """ + filt_session_code = {} + list_session_id = [] + if ("code_session" in diction.keys()): + filt_code_session = {'code_session': {'$regex': str(diction['code_session']), "$options": "i"}} + + """ + qry_list_session_id = { { '$and' :[ {'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, + {'partner_owner_recid': str(partner_recid)} ]}, {'_id':1}} + """ + + qry_list_session_id = {"$and": [{'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, + {'partner_owner_recid': str(partner_recid)}]} + + #print(" ### qry_list_session_id aa = ", qry_list_session_id) + list_session_id_count = MYSY_GV.dbname['session_formation'].count_documents(qry_list_session_id) + + if( list_session_id_count <= 0 ): + # Aucune session + return True, [] + + for val in MYSY_GV.dbname['session_formation'].find(qry_list_session_id): + list_session_id.append(str(val['_id'])) + + #print(" ### liste des Id des sessions eligible list_session_id = ", list_session_id) + filt_session_code = {'session_id': {'$in': list_session_id, }} + + filt_archive = {} + if ("archive" in diction.keys() and (diction["archive"] == "0" or diction["archive"] == "")): + filt_archive = {'archive': {'$ne': '1'}} + + elif ("archive" in diction.keys() and diction["archive"] == "1"): + filt_archive = {'archive': '1'} + + elif ("archive" not in diction.keys()): + filt_archive = {'archive': {'$ne': '1'}} + + + + filt_session_id = {} + if ("session_id" in diction.keys()): + filt_session_id = {'session_id': str(diction['session_id'])} + + + filt_class_partner_recid = {'partner_owner_recid': str(partner_recid)} + #---- + + + query = [{'$match':{ '$and' : [ filt_archive, filt_session_code, + filt_session_id, {'partner_owner_recid':str(partner_recid), 'valide':'1'}] } }, + {'$sort': {'_id': -1}}, + {'$lookup': + { + 'from': 'myclass', + 'localField': 'class_internal_url', + 'foreignField': 'internal_url', + 'pipeline': [{'$match':{ '$and' : [ filt_class_partner_recid] } }, {'$project': {'title': 1, 'domaine': 1, + 'duration': 1, + 'duration_unit': 1, + '_id':1, + 'recyclage_delai':1, + 'recyclage_periodicite':1, + 'recyclage_alert':1}}], + 'as': 'myclass_collection' + } + }, + + ] + + print("#### Get_Statgaire_List_Partner_with_filter laa 01 : query = ", query) + RetObject = [] + cpt = 0 + for retVal in MYSY_GV.dbname['inscription'].aggregate(query): + val = {} + + ## Ne prendre que les lignes qui on un session valide + # Recuperation des informations de la session + local_qry = {'_id': ObjectId(retVal['session_id']), 'valide': '1'} + + # print(" #### local_qry zzz = ", local_qry) + + count_session = MYSY_GV.dbname['session_formation'].count_documents(local_qry) + + if( count_session == 1 ): + + # Verifier si le client est valide + client_valide = "1" + if( "client_rattachement_id" in retVal.keys() and retVal['client_rattachement_id']): + client_rattachement_id_count = MYSY_GV.dbname['partner_client'].count_documents({'_id':ObjectId(retVal['client_rattachement_id']), + 'valide':'1', + 'locked':'0', + 'partner_owner_recid':str(my_partner['recid'])}) + if( client_rattachement_id_count <= 0 ): + client_valide = "0" + + # Verifier si le client de facturation est valide + client_facturation_valide = "1" + if ("facture_client_rattachement_id" in retVal.keys() and retVal['facture_client_rattachement_id']): + facture_client_rattachement_id_id_count = MYSY_GV.dbname['partner_client'].count_documents( + {'_id': ObjectId(retVal['facture_client_rattachement_id']), + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])}) + if (facture_client_rattachement_id_id_count <= 0): + client_facturation_valide = "0" + + if ('myclass_collection' in retVal.keys() and len(retVal['myclass_collection']) > 0 and client_valide == "1" and client_facturation_valide == "1"): + + val['id'] = str(cpt) + cpt = cpt + 1 + val['_id'] = retVal['_id'] + val['session_id'] = retVal['session_id'] + val['class_internal_url'] = retVal['class_internal_url'] + val['nom'] = retVal['nom'] + val['partner_owner_recid'] = retVal['partner_owner_recid'] + val['prenom'] = retVal['prenom'] + + val['email'] = retVal['email'] + + if ("civilite" in retVal.keys()): + val['civilite'] = str(retVal['civilite']).lower() + else: + val['civilite'] = "" + + if (str(val['civilite']) not in MYSY_GV.CIVILITE): + val['civilite'] = "neutre" + + if( str(val['civilite']).strip() == ""): + val['civilite'] = "neutre" + + if( "modefinancement" in retVal.keys()): + val['modefinancement'] = retVal['modefinancement'] + else: + val['modefinancement'] = "" + + + if ("archive" not in retVal.keys()): + val['archive'] = "0" + + + if ("opco" in retVal.keys()): + + val['opco'] = retVal['opco'] + else: + val['opco'] = "" + + + if ("employeur" in retVal.keys()): + val['employeur'] = retVal['employeur'] + else: + val['employeur'] = "" + + if ("telephone" in retVal.keys()): + val['telephone'] = retVal['telephone'] + else: + val['telephone'] = "" + + if ("date_naissance" in retVal.keys() and retVal['date_naissance']): + val['date_naissance'] = retVal['date_naissance'] + else: + val['date_naissance'] = "" + + if ("adresse" in retVal.keys()): + val['adresse'] = retVal['adresse'] + else: + val['adresse'] = "" + + if ("code_postal" in retVal.keys()): + val['code_postal'] = retVal['code_postal'] + else: + val['code_postal'] = "" + + if ("ville" in retVal.keys()): + val['ville'] = retVal['ville'] + else: + val['ville'] = "" + + + if ("pays" in retVal.keys()): + val['pays'] = retVal['pays'] + else: + val['pays'] = "" + + + val['status'] = retVal['status'] + + val['class_id'] = str(retVal['myclass_collection'][0]['_id']) + val['title'] = retVal['myclass_collection'][0]['title'] + if("domaine" in retVal['myclass_collection'][0].keys() ): + val['domaine'] = retVal['myclass_collection'][0]['domaine'] + else: + val['domaine'] = "" + + + client_rattachement_id = "" + client_rattachement_nom = "" + + # Si il a un client rattacher, recuperation des information du client + #print(" ### retVal = ", retVal ) + if( "client_rattachement_id" in retVal.keys()): + if( retVal['client_rattachement_id'] and str(retVal['client_rattachement_id'] ) != 'undefined'): + client_retval = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId( retVal['client_rattachement_id']), + 'valide':'1', 'locked':'0'}) + + if( client_retval is not None): + client_rattachement_id= client_retval['_id'] + client_rattachement_nom = client_retval['nom'] + + val['client_rattachement_id'] = client_rattachement_id + val['client_rattachement_nom'] = client_rattachement_nom + + if ("facture_client_rattachement_id" in retVal.keys()): + val['facture_client_rattachement_id'] = retVal['facture_client_rattachement_id'] + else: + val['facture_client_rattachement_id'] = "" + + # ---- + + invoiced = "" + if ("invoiced" in retVal.keys()): + invoiced = retVal['invoiced'] + val['invoiced'] = invoiced + + invoiced_ref = "" + if ("invoiced_ref" in retVal.keys()): + invoiced_ref = retVal['invoiced_ref'] + val['invoiced_ref'] = invoiced_ref + + invoiced_date = "" + if ("invoiced_date" in retVal.keys()): + invoiced_date = str(retVal['invoiced_date'])[0:10] + val['invoiced_date'] = invoiced_date + + + financeur_rattachement_id = "" + financeur_rattachement_nom = "" + + # Si il a un client rattacher, recuperation des information du client + # print(" ### retVal = ", retVal ) + if ("financeur_rattachement_id" in retVal.keys()): + if (retVal['financeur_rattachement_id'] and str(retVal['financeur_rattachement_id']) != 'undefined'): + client_retval = MYSY_GV.dbname['partner_client'].find_one( + {'_id': ObjectId(retVal['financeur_rattachement_id']), + 'valide': '1', 'locked': '0'}) + + if (client_retval is not None): + financeur_rattachement_id = client_retval['_id'] + financeur_rattachement_nom = client_retval['nom'] + + val['financeur_rattachement_id'] = financeur_rattachement_id + val['financeur_rattachement_nom'] = financeur_rattachement_nom + + if(count_session != 1 ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Impossible de récupérer la liste des stagiaires, Il y a une incohérence sur la session : " + str( + retVal['session_id'])) + return False, "Impossible de récupérer la liste des stagiaires, Les informations d'identification sont incorrectes. Il y a une incohérence sur la session : " + str( + retVal['session_id']) + + + #qry2 = {'class_internal_url':str(retVal['class_internal_url']), 'code_session':str(retVal['session_id']), 'valide':'1'} + #print(" ### qry 2 =", qry2) + + session_retval = {} #MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(retVal['session_id'])), 'valide':'1'}) + + if ("code_session" in session_retval.keys()): + val['code_session'] = str(session_retval['code_session']) + else: + val['code_session'] = "" + + + if ("date_debut" in session_retval.keys()): + val['date_du'] = str(session_retval['date_debut'])[0:10] + else: + val['date_du'] = "" + + if ("date_fin" in session_retval.keys()): + val['date_au'] = str(session_retval['date_fin'])[0:10] + else: + val['date_au'] = "" + + if ("code_postal" in session_retval.keys()): + val['code_postal'] = session_retval['code_postal'] + else: + val['code_postal'] = "" + + if ("prix_session" in session_retval.keys()): + val['price'] = session_retval['prix_session'] + else: + val['price'] = "" + + if ("presentiel" in session_retval.keys()): + val['presentiel'] = session_retval['presentiel'] + else: + val['presentiel'] = "0" + + if ("distantiel" in session_retval.keys()): + val['distantiel'] = session_retval['distantiel'] + else: + val['distantiel'] = "0" + + if ("session_ondemande" in session_retval.keys()): + val['session_ondemande'] = session_retval['session_ondemande'] + else: + val['session_ondemande'] = "0" + + """ + Gestion du recyclage d'un apprenant si la formation a laquelle il a participer + necessite un recyclage. + On ne fait ce controle que sur l'inscription 'recyclage_managed' != "1" ou est + """ + val['class_recyclage_delai'] = "" + val['class_recyclage_periodicite'] = "" + val['class_recyclage_alert'] = "" + val['nb_jour_avant_recyclage'] = "" + val['warning_recyclage'] = "0" + + if( "with_alert" in diction.keys() and diction['with_alert'] == "1"): + if(retVal['status'] == "1" and ("recyclage_managed" not in retVal.keys() or retVal['recyclage_managed'] != "1") ): + + if ("recyclage_delai" in retVal['myclass_collection'][0].keys()): + val['class_recyclage_delai'] = retVal['myclass_collection'][0]['recyclage_delai'] + + + if ("recyclage_periodicite" in retVal['myclass_collection'][0].keys()): + val['class_recyclage_periodicite'] = retVal['myclass_collection'][0]['recyclage_periodicite'] + + if ("recyclage_alert" in retVal['myclass_collection'][0].keys()): + val['class_recyclage_alert'] = retVal['myclass_collection'][0]['recyclage_alert'] + + + if (str(val['class_recyclage_delai']) != "" and str(val['class_recyclage_periodicite']) != "" and str(val['class_recyclage_alert']) != "" ): + session_date_debut = str(session_retval['date_debut'])[0:10] + session_date_debut_datetime = datetime.strptime(str(session_date_debut).strip(), '%d/%m/%Y') + if (str(val['class_recyclage_periodicite']) == "mois"): + class_recyclage_delai_int = mycommon.tryInt(str(val['class_recyclage_delai'])) + session_date_debut_datetime = session_date_debut_datetime + relativedelta( months=+class_recyclage_delai_int) + + elif (str(val['class_recyclage_periodicite']) == "annee"): + class_recyclage_delai_int = mycommon.tryInt(str(val['class_recyclage_delai'])) + session_date_debut_datetime = session_date_debut_datetime + relativedelta( years=+class_recyclage_delai_int) + + mytoday = datetime.today().strftime("%d/%m/%Y") + mytoday_datetime = datetime.strptime(str(mytoday).strip(), '%d/%m/%Y') + + local_delta = session_date_debut_datetime - mytoday_datetime + val['nb_jour_avant_recyclage'] = str(local_delta.days) + + + if( local_delta.days < mycommon.tryInt(str(val['class_recyclage_alert'])) ): + val['warning_recyclage'] = "1" + + + + + RetObject.append(mycommon.JSONEncoder().encode(val)) + + #print(" ### RetObject = ", str(RetObject)) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de récupérer la liste des stagiaires" + + + + """ Gestion du recyclage : Cette fonction permet d'acquiter la gestion du recyclage d'une inscription diff --git a/Log/log_file.log b/Log/log_file.log index 37f7703..ff6c2e4 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -35889,3 +35889,3359 @@ INFO:root:2026-02-15 18:30:40.124906 : ++ FLASK PORT 5001 ++ INFO:root:2026-02-15 18:30:40.124906 : ++ LMS_BAS_URL mysy-hosting.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:34:20.636727 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:34:20.636727 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:34:20.636727 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:34:20.636727 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:34:20.636727 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-15 18:34:20.704240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:34:20] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation HTTP/1.1" 308 - +INFO:root:2026-02-15 18:34:20.711255 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tJMJ FORMATION
\n\t\t\t\t\t388 Chemin Long Pré
\n\t\t\t\t\t97232 Le Lamentin
\n\t\t\t\t\tMartinique\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20260217\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 15/02/2026 Date échéance : 15/02/2026
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : Contrat MTT/2025_N°0012/JMJ FORMATION
\n\t\t\t\t\tPériode : 13/02/2026 au 14/03/2026 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
ELYOS - Pack BASIQUE
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
1130 €130 €
 
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 130   €
    TVA : 11.05   €
    Montant TTC : 141,05   €
\n\n\t\t\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire

\n\n\t\t\t

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

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

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

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

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

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20260116.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col widths: ['50%', '10%', '20%', '20%'] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:34:21] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:39:53.042986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:39:53.042986 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:39:53.042986 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:39:53.043986 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:39:53.043986 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:40:26.837827 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:40:26.838842 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:40:26.838842 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:40:26.838842 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:40:26.838842 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:42:06.835938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:42:06.835938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:42:06.835938 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:42:06.835938 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:42:06.835938 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:42:48.836739 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:42:48.836739 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:42:48.836739 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:42:48.837765 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:42:48.837765 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:43:56.634567 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:43:56.634567 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:43:56.634567 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:43:56.634567 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:43:56.634567 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:44:16.220037 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:44:16.220037 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:44:16.220037 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:44:16.220037 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:44:16.220037 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:45:03.428079 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:45:03.428079 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:45:03.428079 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:45:03.428079 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:45:03.429079 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:45:19.344884 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:45:19.344884 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:45:19.344884 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:45:19.344884 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:45:19.344884 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:48:00.382962 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:48:00.382962 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:48:00.382962 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:48:00.382962 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:48:00.382962 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:48:12.080493 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:48:12.080493 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:48:12.080493 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:48:12.080493 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:48:12.080493 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-15 18:48:27.443434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:48:27] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia HTTP/1.1" 308 - +INFO:root:2026-02-15 18:48:27.447435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:48:29] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:53:06.672521 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:53:06.672521 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:53:06.672521 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:53:06.672521 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:53:06.672521 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-15 18:53:22.828345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:53:22] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation HTTP/1.1" 308 - +INFO:root:2026-02-15 18:53:22.834354 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tJMJ FORMATION
\n\t\t\t\t\t388 Chemin Long Pré
\n\t\t\t\t\t97232 Le Lamentin
\n\t\t\t\t\tMartinique\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20260217\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 15/02/2026 Date échéance : 15/02/2026
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : Contrat MTT/2025_N°0012/JMJ FORMATION
\n\t\t\t\t\tPériode : 13/02/2026 au 14/03/2026 \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
ELYOS - Pack BASIQUE
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
1130 €130 €
 
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 130   €
    TVA : 11.05   €
    Montant TTC : 141,05   €
\n\n\t\t\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire

\n\n\t\t\t

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

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

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

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

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

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20260116.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col widths: ['50%', '10%', '20%', '20%'] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:53:23] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_JMJFormation/ HTTP/1.1" 200 - +INFO:root:2026-02-15 18:54:00.725895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:54:00] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia HTTP/1.1" 308 - +INFO:root:2026-02-15 18:54:00.733894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:54:02] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:54:55.828524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:54:55.829531 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:54:55.829531 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:54:55.829531 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:54:55.829531 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\email_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-15 18:55:13.109090 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-15 18:55:13.110084 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-15 18:55:13.110084 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-15 18:55:13.110084 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-15 18:55:13.110084 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-15 18:55:13.521965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:55:13] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia HTTP/1.1" 308 - +INFO:root:2026-02-15 18:55:13.527965 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf.document:pisaDocument options: + src = '\n\n\n\n\t
\n\t\tMysy Training Logo \n\t
\n\t\n\t\t
\n\t\t\t
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\tXCELIA Consulting
\n\t\t\t\t\tKOBAYA
\n\t\t\t\t\tC/RATOMA
\n\t\t\t\t\tCONAKRY-GUINEE\n\n\t\t\t\t
\n\n\n\t\t\t\t\n\n\t\t\t\t\tFacture n° FACT_20260220\n\n\n\t\t\t\t
\n\n\n\n\t\t\t\t\n\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\n\t\t\t\t
Date de facture: 15/02/2026 Date échéance : 15/02/2026
\n\n\t\t\t\t\n\t\t\t\t\tOrigine : PROTOCOLE D’ENTENTE MTT & XCELIA CONSULTING du le 29 Octobre 2025
\n\t\t\t\t\tPériode : \n\t\t\t\t\n\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
DescriptionQuantitéPrix unitaire (HT)Montant (HT)
ELYOS - Initialisation et configuration de la plateforme de démonstration client
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
14 690 €4 690 €
 
\n\t\t\t\t\t
\n\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t
Détail
Initialisation & Sécurisation serveur (2J * 650 €) 1 300 € HT
Installation & Configuration Elyos Standard (3J * 650 €) 1 950 € HT
Location Serveur, Maintenance & Monitoring ( 120€/mois * 12 mois) 1 440 € HT
\n\t\t\t\t\n\n\n\t\t\t\n\n\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t
    Montant HT: 4 690   €
    TVA : TVA non applicable – Prestations situées hors UE   €
    Montant TTC : 4 690   €
\n\n\t\t\n\t\t\t
\n\n\t\t\t\n\t\t\t\tRèglement : Virement bancaire

\n\n\t\t\t

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

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

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

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

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

\n\t\t\n\t
\n\n\n' + dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_20260220.pdf'> + path = '' + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf.files:FileObject './../img/MYSY-LOGO-BLUE.png', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__' +DEBUG:xhtml2pdf.files:URLParts: ParseResult(scheme='c', netloc='', path='\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__', params='', query='', fragment=''), 'c' +DEBUG:xhtml2pdf.tags:Parsing img tag, src: +DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None} +DEBUG:xhtml2pdf.files:Unrecognized scheme, assuming local file path +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col 0 has width 50% +DEBUG:xhtml2pdf.tables:Col 1 has width 10% +DEBUG:xhtml2pdf.tables:Col 2 has width 20% +DEBUG:xhtml2pdf.tables:Col 3 has width 20% +DEBUG:xhtml2pdf.tables:Col widths: ['50%', '10%', '20%', '20%'] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:None +DEBUG:xhtml2pdf.tables:Col widths: [None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25 +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645 +INFO:werkzeug:127.0.0.1 - - [15/Feb/2026 18:55:13] "GET /myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia/ HTTP/1.1" 200 - +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 09:01:52.743973 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 09:01:52.743973 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 09:01:52.743973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 09:01:52.744963 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 09:01:52.744963 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 09:02:33.804990 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 09:02:33.806007 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 09:02:33.806007 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 09:02:33.806007 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 09:02:33.806007 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 09:02:50.027197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:50.029196 : Le token partner est vide +INFO:root:2026-02-16 09:02:50.031196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:50.034196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:50.037197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:50.071197 : La session de connexion n'est pas valide +INFO:root:2026-02-16 09:02:50.072196 : La session de connexion n'est pas valide +INFO:root:2026-02-16 09:02:50.072196 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:50] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:52.802245 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:52.805246 : get_partner_account - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:53.520663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:53.585204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.587204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.590209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.595210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.598210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:53.643741 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:53.656746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.660745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.665262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.673262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:02:53.678263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:02:53.689271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:02:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:05:57.828274 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:05:57.830276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:05:57.833281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:05:57.834279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:05:57.839278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:05:57.846279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:05:57.856810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:05:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:00.315570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:00] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:01.625416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.630415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.634417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.638415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.641415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:01.647415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:01.653416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:01.659423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.660423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:01.667423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.675937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:01.677935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:01] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:06:03.245422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:03.247963 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:06:03.251000 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:03] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:03] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:06:03] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:08:00.747374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:08:00.753893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:08:00.766897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:08:00.775897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:08:00.790453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:08:00.806502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:08:00.821472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:08:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:14:48.094367 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:14:48.098369 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:14:48.102366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:14:48.107377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:14:48.111373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:14:48.117376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:14:48.126887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:14:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:45.019354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:45.022354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:45.030355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:45.038355 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:45.047361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:45.051361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:45.064456 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:51.510610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:51] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:52.587930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.591931 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.596936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.600952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.607936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:52.617446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:52.623447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.631448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.637445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.643446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:52.653448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:52.659447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:52] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:15:54.188762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:54.190762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:15:54.194761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:54] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:54] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:15:54] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:13.299303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:13.301316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:13.305730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:13.308729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:13.314613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:13.322108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:13.330149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:26.211513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:26.214513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:26.240515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:26.246513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:16:26.252515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:26.257514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:16:26.261518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:16:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:02.035223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:02.043230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:02.046231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:02.048230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:02.055230 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:02.068257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:02.072260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:04.674036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:04] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.520566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.524565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.529566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.531564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.537566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.547577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.556580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.562087 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.568606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.575617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:05.580605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:05.588606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:05] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:07.174505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:07.177506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:07.181509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:07] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:07] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:07] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:53.902095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:53.905098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:53.909125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:17:53.914096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:53.921095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:53.931098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:53.938585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:17:59.547379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:17:59] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:00.497665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.500608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.504121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.508120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.511625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:00.518142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:00.527148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:00.533655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:00.537654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.540656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.544655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:00.551165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:00] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:18:02.074390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:02.077944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:18:02.080944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:02] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:02] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:18:02] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.427206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:01.429206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:01.434209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.440206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.457542 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.475058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:01.478058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:01.482065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:01.486066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.488066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.499081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:01.503634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:03.259501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:03] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.192898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.196898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.201900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.205404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.210408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.218403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.224405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.230407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:04.236404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.244405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.249404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:04.256403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:04] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:31:05.886805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:05.889766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:31:05.893764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:05] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:05] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:31:05] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:17.984864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:17.988827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:17.992831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:17.995832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:17] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:18.000835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:18.007373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:18.015362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:18] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:29.524610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:29.528611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:29.533610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:29.538613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:29.548644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:29.552720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:29.563643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:37.375624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:37.378640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:37.383640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:37.389641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:37.394639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:37.400640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:37.412645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:43.851070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:43] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.799317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.803317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.807353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.809318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.813316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.818316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.833316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.843322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.850831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.860865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:44.866866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:44.872836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:44] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:32:46.497234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:46.500241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:32:46.503240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:46] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:46] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:32:46] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:33:11.600718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:33:11] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 09:34:30.704566 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 09:34:30.704566 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 09:34:30.704566 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 09:34:30.704566 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 09:34:30.704566 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 09:34:38.641295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.643294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.645295 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.651300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:38.679321 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:38.685548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.689549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.693549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:38.696549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:38.699546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:38.706546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:38.715595 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.138359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.931600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.935609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.939607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.943609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.951129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.960643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.963641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.971640 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.973641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.984150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:40.991151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:40.994153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:40] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:41] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:41] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:41] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:41] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:34:42.830278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:42.834282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:34:42.838278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:42] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:42] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:34:42] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:35:01.740049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:35:01] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:36:44.405924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:44] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:36:45.979023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:36:47.920569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:36:47.924571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:36:47.928569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:47] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:47] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:47] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:36:52.629170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:36:52.633172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:36:52.635169 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:52] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:52] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:36:52] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:06.824656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:06.825673 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:06.832192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:06.835192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:06.839192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:06.854227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:06.855734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:06] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:14.857477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:14] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:15.788649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.793651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.795651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.799655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.806654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.813652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:15.824756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:15.829654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:15.839730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.847747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.852743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:15.858273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:15] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:25.375734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:39:26.205679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:26.208678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:39:26.212692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:26] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:26] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:39:26] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.305046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:29.308556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.315558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:29.320558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.338557 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.347575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:29.351582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:29.355559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:29.359564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.367564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.381076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:29.392083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:47.797686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:47.802683 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:47.806685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:47.809682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:40:47.812682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:47.817688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:40:47.825688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:40:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:29.839469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:29.856605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:29.862117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:29.867636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:29.873145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:29.882354 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:29.889913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:32.175630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:32] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.189725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:33.194720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:33.203726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:33.208720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:33.213827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.240729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:33.245720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.262726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.284737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.302226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.311215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:33.324208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:37.371126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:37.375124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:41:37.377127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:37] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:37] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:37] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:41:50.260878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:41:50] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:13.871647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:13.874647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:13.878649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:13.879647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:13.884651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:13.891651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:13.900662 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:48.746925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.445273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.446271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.452285 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.457274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.471276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.480032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.482047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.488567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.499550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.505568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.510574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.520567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.834739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.839756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.842751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.845739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.853756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.858741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.874768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.886294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.889276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:49.893277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.907292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:49.910293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:49] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:53.387486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:53] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:58.134719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:58.140701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:58.144703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:58.147702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:58.156245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:42:58.159245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:42:58.169244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:42:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:12.382151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:12.386151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:12.389163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:12.394161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:12.396163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:12.405675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:12.416180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:14.977464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:14] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:15.975989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:15.979005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:15.983987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:15] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:15] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:15.992987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:15.994007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:15.998987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:16.006999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:16.017022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:16.024518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:16.029517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:16.033518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:44:16.041517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:16] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:44:17.522592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:44:17] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:45.108588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:45.114591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:45.124602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:45.126585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:45.136603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:45.156221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:45.175203 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.001478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.882046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.884039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.887080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.891051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.895046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.898060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.907580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.912611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.923597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.929611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:48.939595 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:48.941599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:48] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:50.402014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:50] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:51.734678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:52.717642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:52.720648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:52.725642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:52] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:52] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:52] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:55.127974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:55.131986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:55.135987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:55.136986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:55.143026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:55] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:55] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:55] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:55] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:58.070915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:58.074913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:58.078915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:47:58.082913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:58] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:47:58.087912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:58] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:58] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:58] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:47:58] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:05.469772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:05.474780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:05.478777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:05.482779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:05.496821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:05.503821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:05.517829 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:05] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:37.738490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:37.742489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:37.747492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:37.752491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:37.761491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:37.767491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:37.773490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:37] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:44.088025 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:44] "POST /myclass/api/Get_Entity_Question_List_With_Stat_For_Given_related_collection_id/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:45.703981 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:45] "POST /myclass/api/Get_RH_List_Insc_Tutore/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:46.547327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:46] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:53.054212 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:53] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:53.972067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:49:55.007530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:55.011543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:49:55.014557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:55] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:55] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:49:55] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:50:07.608549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:50:07] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:23.115862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:23.118863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:23.120863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:23.125868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:23.129867 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:23.137380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:23.141379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:25.031479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:25] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:26.180582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.183584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.186598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.190588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.194587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:26.202587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:26.211583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:26.217584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.224585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.228583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:26.248584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:26.252590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:26] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:52:28.730409 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:28.733418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:52:28.737407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:28] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:28] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:52:28] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:53:19.176904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:53:19.180908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:53:19.184908 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:53:19.190909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:53:19.203927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:53:19.208942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:53:19.213940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:53:19] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:42.580241 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:42.584239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:42.589237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:42.596237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:42.605246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:42.609244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:42.615755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:44.210283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:46.067624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.072625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.074626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.080639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.085625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.094641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:46.108653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.113651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:46.122224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.127240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:46.136225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:46.142229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:46] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:55:48.441038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:48.445132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:55:48.449037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:48] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:48] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:55:48] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:56:56.672699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:56:56.676846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:56:56.677844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:56:56.681845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:56:56.687845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:56:56.693845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:56:56.702847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:56:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.310019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.313032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.315046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.322024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.336370 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.368916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.371932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.374919 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.378918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.385933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:02.390918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:02.401934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:03.686070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:03] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:04.579019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.583022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.587026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.593042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.598032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.612021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:04.623031 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:04.632019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.634053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:04.645041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:04.655066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:04.658054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:06.756503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:06.760507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:06.764507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:06] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:06] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:06] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:36.297100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:36.301101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:36.302100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:36.306099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:36.309118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:36.318141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:36.330100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:42.541893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:42.544893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:42.550893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:42.558893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:42.565898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:57:42.569899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:57:42.578417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:57:42] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:09.146546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:09.150508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:09.154507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:09.157508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:09.160507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:09.170508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:09.175507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:09] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:14.952803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:14.963499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:14.974635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:14.983644 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:14.986648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:14] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:15.004119 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:15.014654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:15.025039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:15.028569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:15.033607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:15.040571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:15.046574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:16.413331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:16] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:17.217653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.221654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.227654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.232653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:17.242654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:17.253656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.256651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.261652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:17.267653 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.271654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:17.277659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:17.283659 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:17] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:24.691984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:24.695982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:24.698983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:24.701988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:24.709028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:24] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:24] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:24] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:24] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:58:25.969248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:25.973245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:58:25.975242 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:25] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:26] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:58:26] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:51.436538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:51.442553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:51.447552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:51.451548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:51.456577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:51.461590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:51.475587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:53.255245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:53] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.170834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.175353 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.180870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.184867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.191925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.199980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.212396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.226404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.233404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:54.240403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.246402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:54.253401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:54] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 09:59:56.262887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:56.265885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 09:59:56.269884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:56] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:56] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 09:59:56] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.414876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:04.416876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.422962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:04.427495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.439530 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.464496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:04.466513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:04.469497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:04.473517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.480516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.487539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:04.494527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:05.944271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:05] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.836869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.839865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.843869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.847866 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.853868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.857866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.865335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.866334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.873334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.879335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:06.882335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:06.887335 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:06] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:00:09.703953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:09.706969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:00:09.710956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:09] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:09] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:00:09] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:35.325358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:35.330360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:35.332376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:35.337361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:35.343424 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:35.353392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:35.360933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:37.427606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:37] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.327803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.331804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.336803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.337804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.343812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.355331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.365879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.376882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.384885 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.390095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:38.396097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:38.405094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:38] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:41.801633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:41.804649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:41.808661 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:41] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:41] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:41] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:43.291555 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:43] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:47.932334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:47] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:48.941192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:48.945191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:48.949192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:48.954191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:48.972219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:48.975218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:48.979254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:48.986256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:48.990254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:48.996256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:49.003255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:49.013255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:01:50.960822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:50.962839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:01:50.967854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:50] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:50] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:01:51] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:20.403466 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:20.407467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:20.410467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:20.414467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:20.417466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:20.433472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:20.445504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:20] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:46.710552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:46.713552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:46.718553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:46.722551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:46.726550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:46.740550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:46.744550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:46] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:48.823012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.608259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:49.613398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:49.616412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:49.623411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.630414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.643396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.649415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:49.655420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.663395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.672396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:49.677396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:49.680397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:49] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:02:51.023814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:51.026814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:02:51.037400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:51] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:51] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:02:51] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:41.341990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:03:41.345093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:03:41.349493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:03:41.350498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:03:41.355500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:41.366499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:41.375500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:41.383499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:41] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:47.588329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:03:47.593383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:47] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:49.568116 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:49] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:03:58.045397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:03:58] "GET /myclass/api/Export_To_Excel_List_Participant_To_Evaluation/DHeWQ0QYqJdANbF0yOdj56N7yKW2Mb3EWA/690f3bd5a00c978d63f0330a/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:05:11.678508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:05:11.681506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:05:11.684507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:05:11.688514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:05:11.692516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 10:05:11.697515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:05:11.710039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 10:05:11.714036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 10:05:11] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 10:08:26.364390 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 10:08:26.364390 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 10:08:26.364390 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 10:08:26.368392 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 10:08:26.368392 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 11:01:07.902793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:01:07] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:01:10.171918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:01:10] "POST /myclass/api/Get_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:02:35.234911 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:02:35] "POST /myclass/api/Get_Given_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:03:15.692645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:03:15.701645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:03:15.713153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:03:15.721158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:15] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:03:15.779670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:03:15.783670 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:15] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:03:29.788511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:29] "POST /myclass/api/Get_bloc_competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:03:32.189211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:03:32] "POST /myclass/api/Get_Given_bloc_competence/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:09:02.264801 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:09:02.265831 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:09:02.265831 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:09:02.265831 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:09:02.265831 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:09:56.938007 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:09:56.938007 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:09:56.938007 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:09:56.938007 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:09:56.938007 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:10:21.542935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:10:21.542935 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:10:21.542935 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:10:21.542935 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:10:21.544059 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:10:49.714047 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:10:49.714047 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:10:49.714047 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:10:49.714047 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:10:49.714047 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:12:02.810361 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:12:02.811361 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:12:02.811361 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:12:02.811361 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:12:02.811361 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 11:12:21.370781 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:12:21] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:12:24.267493 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:12:24.270474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:12:24] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:12:24] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\activite_pedagogique.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 11:14:31.556991 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 11:14:31.556991 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 11:14:31.556991 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 11:14:31.556991 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 11:14:31.557990 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 11:17:03.164864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:03] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:17:17.873261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:17:17.877264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:17] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:17] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:17:30.344062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:17:30.348073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:30] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:30] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:17:37.982734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:37] "POST /myclass/api/Add_Update_Competence_To_Pole_pedagogique_And_Activite/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:17:38.063807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:17:38] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:18:39.822667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:18:39] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:18:51.368303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:18:51] "POST /myclass/api/Delete_Competence_Activite_From_Pole_pedagogique_And_Activite/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:18:51.416868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:18:51] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:20:26.208404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:20:26] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:20:29.692445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:20:29.695461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:20:29] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:20:29] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:28.450238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:28] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:47.348194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:21:47.349195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:21:47.350194 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:21:47.355198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:47] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:47.377196 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:47.407196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:47] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:48.804522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:21:48.808517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:48] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:48] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:21:53.286459 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:21:53] "POST /myclass/api/Get_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:22:15.842447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:22:15] "POST /myclass/api/Add_Update_Competence_To_Pole_pedagogique_And_Activite/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:22:15.932143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:22:15] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:22:48.691676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:22:48] "POST /myclass/api/Get_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:22:53.410290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:22:53] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:23:56.472693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:23:56] "POST /myclass/api/Get_pole_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:24:01.590005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 11:24:01.593002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:24:01] "POST /myclass/api/Get_competence_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:24:01] "POST /myclass/api/Get_Given_pole_activite_pedagogique/ HTTP/1.1" 200 - +INFO:root:2026-02-16 11:24:03.745792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 11:24:03] "POST /myclass/api/Get_activite_pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:10:14.367826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:10:14.369808 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:10:14.378809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:10:14.389811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:10:14.398820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:10:14.414351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:10:14.432329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:10:14] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:12:41.288187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:12:41.292163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:12:41.299183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:12:41.305153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:12:41.315158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:12:41.323164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:12:41.333062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:12:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:10.304820 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:10.308824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:10.312825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:10.316826 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:10.321826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:10.329826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:10.345854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:37.734582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:37.740577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:37.745593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:37.748594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:37.754593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:37.757593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:37.783198 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:44.612334 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.863253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.866237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.870254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.874253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.882274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.892263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.896256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.904253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:13:45.909235 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.917237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.925313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:13:45.938886 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:13:45] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:35.147842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:35.153354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:35.155865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:35.163417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:35.170726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:35.175703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:35.183220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:35] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:50.653945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:50.659940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:50.661945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:18:50.665921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:50.673972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:50.686322 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:18:50.698326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:18:50] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.451966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.456210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.458206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.470820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.487498 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.499498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.502503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.505706 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.510702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.516706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:19:04.525702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:19:04.527702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:19:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:15.587483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:15.593487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:15.599485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:15.606482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:15.612482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:15.620484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:15.629489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.667116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.672119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.679117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.682125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.700153 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.726151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.729151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.734387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.738405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.745405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:21.757443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:21.760443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:40.597404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:40.602404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:40.610440 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:40.613436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:40.626405 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:21:40.636404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:21:40.655406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:21:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:46.960338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:46.966354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:46.969355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:46.973354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:46.977339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:46] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:46.987359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:46] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:46] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:47.001347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.575037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.579063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.583037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.593042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.609722 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.619238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.624329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.627355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.633615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.649196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:22:53.653183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:22:53.662736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:22:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:16.122639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:16.126641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:16.129641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:16.134641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:16.139153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:16.145152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:16.160164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.742883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.745881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.749883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.759884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.774882 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.793883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.796884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.799883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.805881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.810882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:23.817882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:23.818915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:58.647532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:58.652531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:58.655533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:58.659532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:23:58.667531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:58.679535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:23:58.686543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:23:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:09.478025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:09.484023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:09.489025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:09.494025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:09.501053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:09.504022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:09.518024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:09] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:41.682847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:44.566780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:44.867734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:44.872740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:44.883756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:44.891739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:44.910765 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:44.932858 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:44.938394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:44] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:45.187303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:45.207473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:45.209467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:45.215474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:45] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:48.263907 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:48.265929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:25:48.272930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:25:48.290471 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:25:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:31:18.802176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:31:18.804175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:31:18.809219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:31:18.812177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:31:18.818192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:31:18.824202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:31:20] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:32:33.479450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.481438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.484443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:32:33.492450 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:32:33.504578 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:32:33.529086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.531086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.535087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.542092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.545088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:32:33.549088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:32:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 15:41:36.959827 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 15:41:36.960826 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 15:41:36.960826 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 15:41:36.960826 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 15:41:36.960826 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 15:42:39.290828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:39.316373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:39.380977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:39.399504 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:39.470046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:39.515602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:42:51.591845 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.595844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:42:51.619377 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:42:51.652376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.666375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:42:51.780025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.791029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.808039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.811036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:42:51.844560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:42:51.861560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:42:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:04.578052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:04.620811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:04.633553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:04.646223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:04.651203 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:04.665226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:04.674256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:12.645752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:12.648778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:12.650745 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:12.655749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:12.658313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:12.666297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:17.000805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:17.003822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:17.007807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:17.016823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:17] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:17] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:17] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:17] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:18.052591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:18.056590 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:18.059591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:18.065592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:43:18.068596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:18.076100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:18.082106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:43:18.086111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/Get_Inscrit_List_Tuteurs/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/Get_List_Jury_Soutenenace_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:43:18] "POST /myclass/api/Get_List_Participant_Notes/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 15:45:44.329913 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 15:45:44.329913 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 15:45:44.329913 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 15:45:44.329913 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 15:45:44.330915 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 15:45:51.011032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.016012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.019011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.024011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.026011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.030012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.035011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.051045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:45:51.062083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:51.065084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:45:57.317088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:57.319105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:57.322729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:57.326752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:57.332780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:45:57.338740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:57] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:45:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:05.181849 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:05.184865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:05.186864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:05.190848 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:05.196355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:05.199364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:05.208364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:05.215363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:05.229445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:05.236405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/Get_List_Partner_Apprenant/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:46:06.396662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:06.400246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:06.405209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:06.409211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:06.416212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:46:06.423219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:46:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 15:47:24.501050 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 15:47:24.502052 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 15:47:24.502052 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 15:47:24.502052 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 15:47:24.502052 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 15:47:27.313565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:27.315546 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:27.319576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:27.324079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:27] "POST /myclass/api/Get_List_Type_Cours/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:27] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:27] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:47:32.508012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:32.537571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:32.557555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:32.582554 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:47:32.617145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:47:32.661640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter_light/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:47:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:48:42.736011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:48:42.738008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:48:42.740008 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:48:42.745031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:48:42.751013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:48:42.762088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:48:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:46.681723 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:46.684721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:46.688723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:46.698241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:46] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:46.715260 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:47.805003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:47.808025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:47.809019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:47.815580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:47] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:47.847525 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:49.456316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:49.460297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:49.464314 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:50:49.468300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:49] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:50:49.500324 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:50:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:04.804333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:04.807328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:04.810345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:04.820329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:04] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:04.839330 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:05.323599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:05.348623 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:05.635298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:05.638297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:05.706975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:05.709975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:05.716983 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:05.722982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:05.754540 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:06.060417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:06.065416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:51:06.070437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:06.081668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:06] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:51:06.103536 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:51:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:01.433737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:01.436736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:01.442737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:01.447736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:01] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:01.464744 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.610021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:02.612557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:02.616738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.625738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:02.628739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.637737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.666753 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.678744 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.943374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:02.947377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:02.952376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.964380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.967383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:02.985643 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.026746 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:09.030762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:09.031762 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.042300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.059300 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.122497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:09.125479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.140485 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:09.359374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:09] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:54.853396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:54.872183 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:55:55.161734 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:55:55.164736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:55] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:55:55] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:56:16.419053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:56:16.422069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:56:16.432078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:56:16] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:56:16] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:56:16.466079 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:56:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:21.720091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:21.757299 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:21.767302 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:21.772306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:21] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:21] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:31.271795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:31.584333 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:31.591338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:31.597333 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:31.614354 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:31.695523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:31.704524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 15:58:31.716507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 15:58:31.729553 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 15:58:31] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:03:54.412294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:03:54.414313 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:03:54.418296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:03:54] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:03:54.444874 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:03:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:03:54] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 16:07:25.340770 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 16:07:25.340770 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 16:07:25.340770 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 16:07:25.340770 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 16:07:25.340770 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 16:08:08.385950 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 16:08:08.385950 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 16:08:08.385950 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 16:08:08.386950 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 16:08:08.386950 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 16:10:21.641443 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 16:10:21.641443 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 16:10:21.641443 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 16:10:21.641443 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 16:10:21.641443 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 16:14:08.882898 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 16:14:08.882898 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 16:14:08.885898 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 16:14:08.885898 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 16:14:08.885898 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 16:14:24.423819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:14:24.425835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:14:24] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:14:24.441904 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:14:24.458908 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:14:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:14:24] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:15:32.391527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:15:32.392544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:15:32.396548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:15:32] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:15:32] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:15:32.445198 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:15:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:17:04.489616 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:17:04.491629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:17:04.492630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:04] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:17:04.560357 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:17:18.080585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:17:18.108575 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:17:18.408880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:17:18.409877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:18] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:17:18] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:19:18.473081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:19:18.476081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:19:18.480081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:19:18] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:19:18] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:19:18.528174 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:19:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:22:04.515373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:22:04.519402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:22:04.531968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:22:04.540952 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:04] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:22:29.078503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:22:29.094054 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:29] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:22:29.394992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:22:29.399115 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:29] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:22:29] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partners.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 16:22:52.368569 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 16:22:52.368569 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 16:22:52.368569 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 16:22:52.368569 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 16:22:52.368569 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 16:23:07.388487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:07.406496 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:07.422319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:07] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:07.552361 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:07] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:13.787590 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:14.093708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:14.097252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:14.102252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:14.124252 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:14.202816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:14.206816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:23:14.210814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:23:14.259923 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:23:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:24:35.460605 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:24:35.466613 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:24:35.473156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:24:35] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:24:35.527548 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:24:35] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:24:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:03.843597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:03] "POST /myclass/api/update_partner_account_employee_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:04.172461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:19.242326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:19.547041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:25:19.551090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:25:19.556047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:19.568480 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:19.659582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:25:19.661592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:25:19.664931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:25:19.719935 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:25:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:26:03.888922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:26:06.424632 : update_partner_pwd Le mot de passe du partenaire a bien ete mis à jour dans Mysy =6617f968847f325c4b83990d +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:26:06] "POST /myclass/api/update_partner_pwd/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:26:39.417374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:26:39.428372 : update_partner_main_mailL'adresse mail du partenaire a bien ete mis à jour =6617f968847f325c4b83990d +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:26:39] "POST /myclass/api/update_partner_main_mail/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:31.601915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:31.604911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:31.608422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:31.611427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:31.614426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:31.621426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:31.628481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:31] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:37.730481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:37] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:38.786229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.791235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.792234 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.798251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.802795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:38.827837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:38.830839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:38.835984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.840968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.845981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:38.849496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:38.855492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:38] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:27:59.612661 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:27:59.627106 : update_partner_main_mailL'adresse mail du partenaire a bien ete mis à jour =6617f968847f325c4b83990d +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:27:59] "POST /myclass/api/update_partner_main_mail/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:29:23.435012 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:29:23.437011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:29:23.440518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:29:23] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:29:23] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:29:23.489064 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:29:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:30:41.451651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:30:41.456207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:30:41.458224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:30:41.461222 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:30:41.491345 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:30:41.529392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:30:41.534938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:30:41.555969 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:30:41.791931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:30:41] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:16.559031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:16.562032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:16.570565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:16.574554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:16] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:16.595568 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:16.974226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:17.003795 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:17.282111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:17.286113 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:24.975378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:24.976372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:24.979371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:24.985356 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:24] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:25.007099 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:25.070133 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:35:25.073446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:25] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:25.093318 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:35:25.305809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:35:25] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:38:01.503899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:38:01.505901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:38:01.520021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:38:01.524047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:38:01.536575 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:38:01.772710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:38:01.794517 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:38:01.867377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:38:01.871363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:38:01] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.632053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:39:08.639039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:39:08.648050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.667593 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.695110 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.863627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:39:08.869626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.899627 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:39:08.974150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:39:09] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:41:40.283274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:40] "POST /myclass/api/update_partner_account_employee_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:41:40.533795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:40] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:41:48.964456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:41:48.965461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:41:48.966461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:48] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:48] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:41:49.002063 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:41:57.717494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:41:57.733625 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:41:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:43:05.146035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 16:43:05.161117 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:43:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 16:43:09.991668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 16:43:10] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\main.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 17:32:14.313091 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 17:32:14.313091 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 17:32:14.313091 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 17:32:14.313091 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 17:32:14.313091 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 17:32:45.819883 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 17:32:45.819883 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 17:32:45.819883 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 17:32:45.819883 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 17:32:45.819883 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 17:34:39.595328 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 17:34:39.595328 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 17:34:39.595328 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 17:34:39.595328 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 17:34:39.595328 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\code_promo_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 17:35:41.708292 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 17:35:41.708292 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 17:35:41.708292 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 17:35:41.709351 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 17:35:41.709351 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2026-02-16 17:54:03.438562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:03.440541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:03.443559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:03.448558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:03.452567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:03] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:03] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:03] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:54:04.675212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:04.680229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:04.684224 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:04.689223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:04.697228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:04.699744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_List_Admission_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_Given_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_List_Admission_Setup_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:04] "POST /myclass/api/Get_List_Admission_Setup_Document/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:54:07.959636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:07] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:54:09.102137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:09.106139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:09.107139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:54:09.109139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:09] "POST /myclass/api/Get_List_jury_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:09] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:54:09.629261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:54:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:58:06.821628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:58:06.826635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:58:06.832638 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:58:06.835636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_List_Admission_Setup/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:58:06.845668 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_Given_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:58:06.857179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_List_Admission_Setup_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_List_Admission_Setup_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:06] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:58:09.232843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:58:09] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:12.535672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:12.539671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:12.541672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:12.548185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_Nb_User_Internal_Mail_Not_Read/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:12.564785 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:12.592296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:12.594297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:12.597321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:12.603297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:12.610296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:13.760490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:13.763515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:13.767506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:13.770500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_List_Admission_Setup/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:13.776499 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:13.780501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_Given_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_List_Admission_Setup_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:13] "POST /myclass/api/Get_List_Admission_Setup_Etape/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:15.137811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:15] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:44.086437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:44.089452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:44.090452 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:44.097437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:44] "POST /myclass/api/Get_List_jury_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:44] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:49.795903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:49] "POST /myclass/api/Get_List_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:50.859232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:50.862233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:50.867500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:50] "POST /myclass/api/Get_Given_Stagiaire_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:50] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:50] "POST /myclass/api/Get_Inscrit_Admiss_Session_Recorded_Image_from_front/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:54.292488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 17:59:54.295491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:54] "POST /myclass/api/Get_List_Candidat_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:54] "POST /myclass/api/Get_Pourcentage_Candidat_Document/ HTTP/1.1" 200 - +INFO:root:2026-02-16 17:59:57.468541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 17:59:57] "POST /myclass/api/Get_List_Admission_Session/ HTTP/1.1" 200 - +INFO:root:2026-02-16 18:00:19.999827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2026-02-16 18:00:20.002827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 18:00:20] "POST /myclass/api/Get_Pourcentage_Candidat_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 18:00:20] "POST /myclass/api/Get_List_Candidat_Document/ HTTP/1.1" 200 - +INFO:root:2026-02-16 18:01:23.679286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 18:01:23] "POST /myclass/api/Get_List_Plateforme_Partnaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2026-02-16 18:01:25.955740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 18:01:25] "POST /myclass/api/get_partner_account_from_id/ HTTP/1.1" 200 - +INFO:root:2026-02-16 18:02:03.355329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [16/Feb/2026 18:02:03] "POST /myclass/api/get_partner_account_from_id/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\stage_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 18:20:06.127719 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 18:20:06.127719 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 18:20:06.127719 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 18:20:06.127719 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 18:20:06.127719 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\stage_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 18:25:03.260790 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 18:25:03.260790 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 18:25:03.261791 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 18:25:03.261791 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 18:25:03.261791 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\stage_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 18:26:39.805836 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 18:26:39.806811 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 18:26:39.806811 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 18:26:39.806811 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 18:26:39.806811 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\stage_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +DEBUG:matplotlib:matplotlib data path: C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\matplotlib\mpl-data +DEBUG:matplotlib:CONFIGDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib:interactive is False +DEBUG:matplotlib:platform is win32 +DEBUG:matplotlib:CACHEDIR=C:\Users\Cherif\.matplotlib +DEBUG:matplotlib.font_manager:Using fontManager instance from C:\Users\Cherif\.matplotlib\fontlist-v390.json +INFO:root:2026-02-16 18:27:11.028822 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2026-02-16 18:27:11.028822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2026-02-16 18:27:11.028822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2026-02-16 18:27:11.028822 : ++ FLASK PORT 5001 ++ +INFO:root:2026-02-16 18:27:11.028822 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 diff --git a/Session_Formation.py b/Session_Formation.py index b02e24f..c53c4fc 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -1365,7 +1365,7 @@ def GetActiveSessionFormation_List(diction): final_qry = {"$and":[myquery,filt_archive, filt_type_session, filt_class_id, filt_class_internal_url]} print(" ### GetActiveSessionFormation_List final_qry = ", final_qry) for retval in coll_session.find({"$and":[myquery,filt_archive, filt_type_session, filt_class_id, filt_class_internal_url]} ): - print(" ### retval = ", retval) + #print(" ### retval = ", retval) local_tmp = retval if ("archive" not in local_tmp.keys()): @@ -1585,7 +1585,7 @@ def GetActiveSession_Cities_And_Distance_Formation_List(diction): RetObject = [] - print(" ### GetActiveSession_Cities_And_Distance_Formation_List myquery = ", myquery) + print(" ### GetActiveSession_Cities_And_Distance_Formation_List myquery = ", ) for retval in coll_session.find(myquery): local_tmp = retval @@ -12281,8 +12281,8 @@ def Invoice_Inscrption_With_Split_Session_By_Inscription_Id( tab_files, diction) local_diction_for_NOT_INVOICE_SPLIT) - print(" ### status = ", status) - print(" ### retval = ", retval) + #print(" ### status = ", status) + #print(" ### retval = ", retval) print(" ### local_diction_for_NOT_INVOICE_SPLIT invoice_ref = ", invoice_ref) if (status is False): return False, str(retval), False @@ -12308,8 +12308,8 @@ def Invoice_Inscrption_With_Split_Session_By_Inscription_Id( tab_files, diction) print(" ### local_diction_for_WITH_INVOICE_SPLIT = ", local_diction_for_WITH_INVOICE_SPLIT) status, retval, invoice_ref = Invoice_Splited_Partner_From_Session_By_Inscription_Id( local_diction_for_WITH_INVOICE_SPLIT) - print(" ### status = ", status) - print(" ### retval = ", retval) + #print(" ### status = ", status) + #print(" ### retval = ", retval) print(" ### local_diction_for_WITH_INVOICE_SPLIT invoice_ref = ", invoice_ref) list_splited_invoice = str(invoice_ref).replace('[', '').replace(']', '').replace("'", "") @@ -14963,7 +14963,7 @@ def Invoice_Create_Secure_E_Document(diction): for retval in MYSY_GV.dbname['partner_invoice_line'].aggregate(query): if ('myclass_collection' in retval.keys() and len(retval['myclass_collection']) > 0): - print(" ### retval = ", retval) + #print(" ### retval = ", retval) user = {} user['id'] = str(val_tmp) val_tmp = val_tmp + 1 diff --git a/code_promo_mgt.py b/code_promo_mgt.py index de24c8b..32c1180 100644 --- a/code_promo_mgt.py +++ b/code_promo_mgt.py @@ -508,7 +508,7 @@ def Get_Given_Code_Promo(diction): nb_val = 0 is_code_promo_expired = "0" for retval in coll_session.find(myquery): - print(" ##### retval = " + str(retval)) + #print(" ##### retval = " + str(retval)) debut_debut = datetime.strptime(str(retval['date_debut']).strip(), '%d/%m/%Y') date_fin = datetime.strptime(str(retval['date_fin']).strip(), '%d/%m/%Y') if (debut_debut <= datetime.now() and date_fin >= datetime.now() and retval['type'] in ['fix', 'percent'] ): diff --git a/email_mgt.py b/email_mgt.py index e09ad0a..cc714b4 100644 --- a/email_mgt.py +++ b/email_mgt.py @@ -2512,7 +2512,7 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(diction): body = { "params": {"order_id": "MTT/2025_N°0012/JMJ FORMATION", "date_order": ": 14/07/2025", - "periode":"14/01/2026 au 13/02/2026", + "periode":"13/02/2026 au 14/03/2026", "total_ht": "130", "tva": "11.05", "total_ttc": "141,05 ", @@ -2528,9 +2528,9 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(diction): "montant": "130 €", - "invoice_id": "FACT_20260116", - "invoice_date": "18/01/2026", - "due_date": "18/01/2026", + "invoice_id": "FACT_20260217", + "invoice_date": "15/02/2026", + "due_date": "15/02/2026", "orign_order": "Contrat MTT/2025_N°0012/JMJ FORMATION", } } @@ -2614,56 +2614,44 @@ def ManualSendInvoiceEmailRIB_CIC_Xcelia(diction): # JINJA2 templateLoader = jinja2.FileSystemLoader(searchpath="./") templateEnv = jinja2.Environment(loader=templateLoader) - TEMPLATE_FILE = "Template/MySy_Invoice_RIB_PortCities_Perso_tpl.html" + TEMPLATE_FILE = "Template/invoice_RIB_Xcelia_perso_tpl.html" template = templateEnv.get_template(TEMPLATE_FILE) body = { "params": {"order_id": "N/A", "date_order": ": 29/10/2025", "periode":"", - "total_ht": "130", - "tva": "11.05", - "total_ttc": "141,05 ", + "total_ht": "4 690", + "tva": "TVA non applicable – Prestations situées hors UE", + "total_ttc": "4 690 ", "client_name": "XCELIA Consulting", "client_address": "KOBAYA", "client_zip_ville": "C/RATOMA", "client_pays": "CONAKRY-GUINEE", - "packs": "ELYOS - Initialisation de la plateforme de démonstration client ", + "packs": "ELYOS - Initialisation et configuration de la plateforme de démonstration client ", "detail_packs": "Mise à disposition d’une plateforme standard opérationnelle" - "Location et maintenance du serveur sur 12 mois ", + "Prestation de location et maintenance du serveur – période de 12 mois ", "qty": "1", - "unit_price": "130 €", - "montant": "130 €", + "unit_price": "4 690 €", + "montant": "4 690 €", - "invoice_id": "FACT_20251215", - "invoice_date": "21/12/2025", - "due_date": "21/12/2025", - "orign_order": "Contrat MTT/2025_N°0012/JMJ FORMATION", + "invoice_id": "FACT_20260220", + "invoice_date": "15/02/2026", + "due_date": "15/02/2026", + "orign_order": "PROTOCOLE D’ENTENTE MTT & XCELIA CONSULTING du le 29 Octobre 2025", } } #print(" ### body 1 = ", body) - sourceHtml = template.render(params=body["params"]) + #sourceHtml = template.render(params=body["params"]) + sourceHtml = template.render(json_data=body["params"]) - """msg.set_content(sourceHtml, subtype='html') - msg['From'] = MYSY_GV.O365_SMTP_COUNT_From_User - msg['Bcc'] = 'contact@mysy-training.com' - msg['Subject'] = "[MySy Training Technology] : Votre facture N° FACT_230500030" - msg['To'] = 'billardman1@gmail.com' - - smtpserver.ehlo() - smtpserver.starttls() - smtpserver.login(MYSY_GV.O365_SMTP_COUNT_user, MYSY_GV.O365_SMTP_COUNT_password) - val = smtpserver.send_message(msg) - smtpserver.close() - """ - #print(" Email envoyé " + str(val)) ### CREATION DE LA FACTION PDF templateLoader = jinja2.FileSystemLoader(searchpath="./") templateEnv = jinja2.Environment(loader=templateLoader) #TEMPLATE_FILE = "Template/MySy_Invoice_RIB_tpl.html" - TEMPLATE_FILE = "Template/invoice_RIB_PortCities_perso_tpl.html" + TEMPLATE_FILE = "Template/invoice_RIB_Xcelia_perso_tpl.html" template = templateEnv.get_template(TEMPLATE_FILE) # This data can come from database query @@ -2671,7 +2659,7 @@ def ManualSendInvoiceEmailRIB_CIC_Xcelia(diction): #print(" ### body 22 = ", body) sourceHtml = template.render(json_data=body["params"]) - orig_file_name = "invoice_FACT_20251215.pdf" + orig_file_name = "invoice_FACT_20260220.pdf" outputFilename = str(MYSY_GV.INVOICE_DIRECTORY) + str(orig_file_name) # open output file for writing (truncated binary) diff --git a/main.py b/main.py index 88836d2..422f428 100644 --- a/main.py +++ b/main.py @@ -941,6 +941,22 @@ def update_partner_account(): return jsonify(status=status, message=retval) + +''' +Cette fonction modifie/MAJ les donnes d'un employé utilisateut du systeme +''' +@app.route('/myclass/api/update_partner_account_employee_account/', methods=['POST','GET']) +@crossdomain(origin='*') +def update_partner_account_employee_account(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### update_partner_account_employee_account payload = ",payload) + status, retval = pa.update_partner_account_employee_account(payload) + return jsonify(status=status, message=retval) + + + + """ API de suppression d'une image enregistrer dans la collection 'mysy_images" en input, on prend le recid @@ -2073,7 +2089,7 @@ par exemple lorsqu'une personne lambda affiche les formation def getRecodedClassImage_no_token(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### getRecodedClassImage_no_token payload = ",payload) + print(" ### getRecodedClassImage_no_token payload = ",) status, myimg= mycommon.getRecodedClassImage_no_token(payload) return jsonify(status=status, message=myimg) @@ -2533,7 +2549,7 @@ API de recuperation des villes les sessions de formation valides et actives def GetActiveSession_Cities_And_Distance_Formation_List(): # On recupere le corps (payload) de la requete payload = mycommon.strip_dictionary (request.form.to_dict()) - print(" ### GetActiveSession_Cities_And_Distance_Formation_List : payload = ",str(payload)) + print(" ### GetActiveSession_Cities_And_Distance_Formation_List : payload = ",) localStatus, message= SF.GetActiveSession_Cities_And_Distance_Formation_List(payload) return jsonify(status=localStatus, message=message ) @@ -3254,6 +3270,25 @@ def ManualSendInvoiceEmailRIB_CIC_JMJFormation(): + +""" +API Creation manuelle d'une facture avec RIB CIC pour Xcelia - perso +""" +@app.route('/myclass/api/ManualSendInvoiceEmailRIB_CIC_Xcelia/', methods=['POST','GET']) +@crossdomain(origin='*') +def ManualSendInvoiceEmailRIB_CIC_Xcelia(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### ManualSendInvoiceEmailRIB_CIC_Xcelia : payload = ",str(payload)) + localStatus, message= emails.ManualSendInvoiceEmailRIB_CIC_Xcelia(payload) + return jsonify(status=localStatus, message=message ) + + + + + + + """ API Creation manuelle d'une facture avec RIB CIC pour France Active - perso """ @@ -5425,6 +5460,22 @@ def Get_Statgaire_List_Partner_with_filter(): return jsonify(status=status, message=retval) + +""" +API qui recupere la liste complete des stagaire d'un partener - version light pour alleger la recherche +""" +@app.route('/myclass/api/Get_Statgaire_List_Partner_with_filter_light/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Statgaire_List_Partner_with_filter_light(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Statgaire_List_Partner_with_filter_light payload = ",payload) + status, retval = inscription.Get_Statgaire_List_Partner_with_filter_light(payload) + return jsonify(status=status, message=retval) + + + + """ API qui recupere la liste complete des stagaire d'un partener pour seulement les inscription on ne fait pas de lien avec la collection des apprenant diff --git a/partner_invoice.py b/partner_invoice.py index 2ebfeb1..65c4506 100644 --- a/partner_invoice.py +++ b/partner_invoice.py @@ -1346,7 +1346,7 @@ def Get_Given_Partner_Invoice_Lines(diction): for retval in MYSY_GV.dbname['partner_invoice_line'].aggregate(query): if ('myclass_collection' in retval.keys() and len(retval['myclass_collection']) > 0): - print(" ### retval = ", retval) + #print(" ### retval = ", retval) user = {} user['id'] = str(val_tmp) val_tmp = val_tmp + 1 diff --git a/partners.py b/partners.py index e727594..6b24078 100644 --- a/partners.py +++ b/partners.py @@ -935,6 +935,321 @@ def update_partner_account(file_logo=None, file_cachet=None, Folder=None, dictio return False, "Impossible de mettre à jour le partenaire" +''' +MAJ d'un partenaire. +la clé est l'adresse email principale +''' + + +def update_partner_account_employee_account(diction=None): + try: + + # Dictionnaire des champs utilisables + ''' + # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés + # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API + # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste + # field_list. + ''' + field_list = ['contact_nom', 'contact_prenom', 'adr_street', 'adr_city', 'adr_zip', 'adr_country', 'link_linkedin', + 'email', 'pwd', 'telephone', 'token', 'link_facebook', 'link_twitter', + 'partner_account_id', ] + + incom_keys = diction.keys() + + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str(inspect.stack()[0][3]) + " : Le champ '" + val + "' n'est pas autorisé ") + return False, " Le champ '" + val + "' n'est pas accepté " + + ''' + Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, + On controle que les champs obligatoires sont presents dans la liste + ''' + field_list_obligatoire = ['token'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ") + return False, " La valeur '" + val + "' n'est pas presente dans la liste des arguments " + + # recuperation des paramettre + my_email = "" + my_token = "" + + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", my_token) + + if retval is False: + return False, " La session de connexion n'est pas valide" + # Recuperation du recid de l'utilisateur + + partner_recid = mycommon.get_parnter_recid_from_token(str(my_token)) + if partner_recid is False: + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de récupérer le recid du partenaire") + return False, " Impossible de mettre à jour le partenaire " + + partner_account_id = "" + if ("partner_account_id" in diction.keys()): + partner_account_id = diction['partner_account_id'] + + # Verification de la validité du compte + is_count_valide = MYSY_GV.dbname['partnair_account'].count_documents( + {'_id': ObjectId(partner_account_id), 'active': '1', 'locked': '0', + 'recid': partner_recid}) + if (is_count_valide <= 0): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Le compte partner_account_id :" + str( + partner_account_id) + " est invalide") + return False, " Le compte partner_account_id :" + str(partner_account_id) + " est invalide " + + if (is_count_valide > 1): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Le compte partner_account_id :" + str( + partner_account_id) + " correspond à plusieurs utilisateurs (" + str(is_count_valide) + ")") + return False, " Le compte partner_account_id :" + str( + partner_account_id) + " correspond à plusieurs utilisateurs " + + is_partner_admin_account = "0" + if ("is_partner_admin_account" in diction.keys()): + partner_account_id = diction['is_partner_admin_account'] + + # print(" #### partner_account_id = ", partner_account_id) + + mydata = {} + if ("nom" in diction.keys()): + mydata['nom'] = diction['nom'] + + if ("subdomaine_catalog_pub" in diction.keys()): + mydata['subdomaine_catalog_pub'] = diction['subdomaine_catalog_pub'] + + if ("adr_street" in diction.keys()): + mydata['adr_street'] = diction['adr_street'] + + if ("adr_city" in diction.keys()): + mydata['adr_city'] = diction['adr_city'] + + if ("adr_zip" in diction.keys()): + mydata['adr_zip'] = diction['adr_zip'] + + if ("adr_country" in diction.keys()): + mydata['adr_country'] = diction['adr_country'] + + if ("siret" in diction.keys()): + mydata['siret'] = diction['siret'] + + if ("num_nda" in diction.keys()): + mydata['num_nda'] = diction['num_nda'] + + if ("iscertitrace" in diction.keys()): + mydata['iscertitrace'] = diction['iscertitrace'] + + if ("isbureaucertitrace" in diction.keys()): + mydata['isbureaucertitrace'] = diction['isbureaucertitrace'] + + if ("iscertifvoltaire" in diction.keys()): + mydata['iscertifvoltaire'] = diction['iscertifvoltaire'] + + if ("isdatadock" in diction.keys()): + mydata['isdatadock'] = diction['isdatadock'] + + if ("isqualiopi" in diction.keys()): + mydata['isqualiopi'] = diction['isqualiopi'] + + if ("website" in diction.keys()): + mydata['website'] = diction['website'] + + if ("email" in diction.keys()): + my_email = diction['email'] + + if ("telephone" in diction.keys()): + mydata['telephone'] = diction['telephone'] + + if ("pwd" in diction.keys()): + mydata['pwd'] = diction['pwd'] + + if ("contact_nom" in diction.keys()): + mydata['contact_nom'] = diction['contact_nom'] + + if ("contact_prenom" in diction.keys()): + mydata['contact_prenom'] = diction['contact_prenom'] + + if ("contact_tel" in diction.keys()): + mydata['contact_tel'] = diction['contact_tel'] + + if ("contact_mail" in diction.keys()): + mydata['contact_mail'] = diction['contact_mail'] + + if ("link_linkedin" in diction.keys()): + mydata['link_linkedin'] = diction['link_linkedin'] + + if ("link_facebook" in diction.keys()): + mydata['link_facebook'] = diction['link_facebook'] + + if ("link_twitter" in diction.keys()): + mydata['link_twitter'] = diction['link_twitter'] + + if ("invoice_vat_num" in diction.keys()): + mydata['invoice_vat_num'] = diction['invoice_vat_num'] + + if ("invoice_taux_vat" in diction.keys()): + mydata['invoice_taux_vat'] = diction['invoice_taux_vat'] + + if ("invoice_nom" in diction.keys()): + mydata['invoice_nom'] = diction['invoice_nom'] + + if ("invoice_adr_street" in diction.keys()): + mydata['invoice_adr_street'] = diction['invoice_adr_street'] + + if ("invoice_adr_city" in diction.keys()): + mydata['invoice_adr_city'] = diction['invoice_adr_city'] + + if ("invoice_adr_zip" in diction.keys()): + mydata['invoice_adr_zip'] = diction['invoice_adr_zip'] + + if ("invoice_adr_zip" in diction.keys()): + mydata['invoice_adr_country'] = diction['invoice_adr_country'] + + if ("invoice_email" in diction.keys()): + mydata['invoice_email'] = diction['invoice_email'] + + if ("invoice_telephone" in diction.keys()): + mydata['invoice_telephone'] = diction['invoice_telephone'] + + mydata['update_date'] = str(datetime.now()) + + # print(str(datetime.now()) + " webservice : diction = " + str(mydata)) + + coll_name = MYSY_GV.dbname['partnair_account'] + + """ + Si le compte partenaire n'as pas de compte de payement stripe, alors on profite de cette mise à jour pour le faire + """ + tmp = coll_name.find({'_id': ObjectId(partner_account_id), 'active': '1', 'locked': '0', + 'recid': partner_recid}) + + is_admin_account = "0" + if ("is_partner_admin_account" in tmp[0].keys()): + is_admin_account = tmp[0]['is_partner_admin_account'] + + if (is_admin_account == "1"): + partnair_stripe_id = "" + if ("stripe_account_id" in tmp[0].keys()): + if tmp[0]['stripe_account_id']: + partnair_stripe_id = tmp[0]['stripe_account_id'] + + if (partnair_stripe_id is None or len(partnair_stripe_id) < 5): + print('### le partenaire = ' + str(tmp[0]['nom']) + " n'as pas de compte Stripe. on va le créer") + """ + Creation du compte de payement Stripe + """ + + my_stripe_data = {} + my_stripe_data['email'] = str(tmp[0]['email']) + my_stripe_data['name'] = str(tmp[0]['nom']) + + my_stripe_data['city'] = "" + if ("adr_city" in tmp[0].keys()): + if tmp[0]['adr_city']: + my_stripe_data['city'] = str(tmp[0]['adr_city']) + + my_stripe_data['country'] = "" + if ("adr_country" in tmp[0].keys()): + if tmp[0]['adr_country']: + my_stripe_data['country'] = str(tmp[0]['adr_country']) + + local_status, part_stripe_account_id = Stripe.create_customer(my_stripe_data) + mydata['stripe_account_id'] = part_stripe_account_id + mydata['stripe_paymentmethod_id'] = "" + + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - WARNING : Impossible de créer le compte STRIPE du Client " + str( + tmp[0]['nom'])) + + ret_val = coll_name.find_one_and_update( + {'_id': ObjectId(partner_account_id), 'locked': '0', 'active': '1'}, + {"$set": mydata}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + + if (ret_val is None or '_id' not in ret_val.keys()): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Impossible de mettre à jour le partenaire recid= : " + str( + partner_recid)) + return False, " Impossible de mettre à jour le partenaire" + + """ + A present que le partenaire est mis à jour / créé, on va mettre à jour les image logo et image cachet s'il y en a. + Mais seulement pour les comptes admin + """ + + if (is_admin_account == "1" and file_logo): + recordimage_diction = {} + recordimage_diction['token'] = diction['token'] + recordimage_diction['related_collection'] = "partnair_account" + recordimage_diction['type_img'] = "logo" + recordimage_diction['related_collection_recid'] = str(partner_recid) + recordimage_diction['image_recid'] = diction['file_logo_recid'] + # print(" ### recordimage_diction 1 = ", recordimage_diction) + local_status, local_message = mycommon.recordClassImage_v2(file_logo, MYSY_GV.upload_folder, + recordimage_diction) + if (local_status is False): + return local_status, local_message + + if (is_admin_account == "1" and file_cachet): + recordimage_diction = {} + recordimage_diction['token'] = diction['token'] + recordimage_diction['related_collection'] = "partnair_account" + recordimage_diction['type_img'] = "cachet" + recordimage_diction['related_collection_recid'] = str(partner_recid) + recordimage_diction['image_recid'] = diction['file_cachet_recid'] + # print(" ### recordimage_diction 2 = ", recordimage_diction) + local_status, local_message = mycommon.recordClassImage_v2(file_cachet, MYSY_GV.upload_folder, + recordimage_diction) + if (local_status is False): + return local_status, local_message + + """ + Update du 28/09/2023 : + On verifie le compte a un 'ressource_humaine_id', si ce n'est pas le cas, + cela veut dire le compte RH associé au compte admin n'a pas été crée. + Il faut donc le faire. + + """ + is_valide_rh_compte = False + Parnter_Data = MYSY_GV.dbname['partnair_account'].find_one( + {'recid': str(partner_recid), 'locked': '0', 'active': '1'}, ) + if ("ressource_humaine_id" in Parnter_Data.keys()): + if (len(str(Parnter_Data['ressource_humaine_id'])) > 2): + is_valide_rh_compte = True + + if (is_valide_rh_compte is False): + data_employe_admin = {} + data_employe_admin['partner_recid'] = str(Parnter_Data['recid']) + data_employe_admin['nom'] = str(Parnter_Data['nom']) + data_employe_admin['email'] = str(Parnter_Data['email']) + data_employe_admin['comment'] = "Compte Administrateur" + data_employe_admin['is_partner_admin_account'] = "1" + data_employe_admin['account_partner_id'] = str(Parnter_Data['_id']) + + print(" #### data_employe_admin = ", str(data_employe_admin)) + local_status, local_retval_inserted_id = ressources_humaines.Add_Partner_Admin_Ressource_Humaine_No_Toke( + data_employe_admin) + + return True, "Le partenaire a bien ete mise à jour" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de mettre à jour le partenaire" + + + ''' cette fonction valide un compte partenaire La modification ne s'effectue que si le compte n'est pas verrouillé. diff --git a/stage_mgt.py b/stage_mgt.py index 259d17a..9c1e421 100644 --- a/stage_mgt.py +++ b/stage_mgt.py @@ -19,6 +19,28 @@ autre_disposition => Permet de saisir du texte comme 'assurance', 'horaires', statut : - 0 : stage non realisé par l'inscrit - 1 : stage realisé par l'inscrit + + 6.4 Gestion administrative +• Génération des conventions +• Circuit de validation et signature +• Gestion documentaire + +6.5 Suivi du stage +• Déclaration du début de stage +• Suivi pédagogique +• Gestion des incidents + +6.6 Évaluation et validation +• Évaluation par l’organisme d’accueil +• Soutenance +• Validation académique +• Documents : +o Dépôt du rapport de stage +o Grille d’évaluation du maître de stage +o Évaluation du tuteur académique +o Organisation de la soutenance + + """ import ast from zipfile import ZipFile @@ -739,10 +761,8 @@ def Get_Stage_Inscrit_no_filter(diction): - - """ -Suppression d'une compétence +Suppression d'un stage """ def Delete_Given_Stage_Inscrit(diction): try: @@ -805,3 +825,10 @@ def Delete_Given_Stage_Inscrit(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de supprimer le stage " + +""" + 6.4 Gestion administrative +• Génération des conventions +• Circuit de validation et signature +• Gestion documentaire +""" \ No newline at end of file diff --git a/tools_cherif/tools_cherif.py b/tools_cherif/tools_cherif.py index c314a98..5bfa56d 100644 --- a/tools_cherif/tools_cherif.py +++ b/tools_cherif/tools_cherif.py @@ -775,7 +775,7 @@ def mysylmsdb(): # Rcuperation de la sequence de l'objet "lms_user_id" dans la collection : "mysy_sequence" retval = MYSY_GV.dbname['mysy_sequence'].find_one({'related_mysy_object':'lms_user_id', 'valide':'1'}) - print(" ### retval = ",retval) + #print(" ### retval = ",retval) mypasswd = 'sekou'.encode('UTF-8') salt = bcrypt.gensalt() @@ -891,7 +891,7 @@ def test_web_service(diction): """ cpt = 0 for retval in MYSY_GV.dbname['session_formation'].find({'date_by':'automatic'}): - print(" ### retval == ", retval) + #print(" ### retval == ", retval) if( "class_internal_url" in retval.keys() and retval['class_internal_url']): class_data = MYSY_GV.dbname['myclass'].find_one({'internal_url':str(retval['class_internal_url'])})