diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 830e66d..1fa734d 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,59 +4,31 @@
-
+
+
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -103,7 +75,7 @@
"git-widget-placeholder": "master__Elyos__FI",
"ignore.virus.scanning.warn.message": "true",
"last_opened_file_path": "C:/Users/Cherif/Documents/myclass.com/Siteweb/Elyos_Ftion_Initiale/Ela_back/Back_Office_FI/tools_cherif",
- "settings.editor.selected.configurable": "project.propVCSSupport.CommitDialog"
+ "settings.editor.selected.configurable": "preferences.lookFeel"
}
}
@@ -499,7 +471,7 @@
1747251650255
-
+
@@ -541,7 +513,6 @@
-
@@ -566,6 +537,18 @@
-
+
+
+
+
+
+
+
+ file://$PROJECT_DIR$/partner_client.py
+ 526
+
+
+
+
\ No newline at end of file
diff --git a/Contact.py b/Contact.py
index 7f6f833..4fc6c36 100644
--- a/Contact.py
+++ b/Contact.py
@@ -151,6 +151,8 @@ def Add_Contact(diction):
if( civilite not in MYSY_GV.CIVILITE ):
civilite = "neutre"
+ if(str(civilite).strip() == ""):
+ civilite = "neutre"
data['civilite'] = civilite
@@ -303,6 +305,7 @@ Mise à jour d'un contact en se basant sur :
- related_collection
"""
+
def Update_Contact(diction):
try:
diction = mycommon.strip_dictionary(diction)
@@ -398,6 +401,9 @@ def Update_Contact(diction):
data_update['civilite'] = str(diction['civilite']).lower()
+ if( str(diction['civilite']).strip() == ""):
+ data_update['civilite'] = "neutre"
+
include_com = ""
if ("include_com" in diction.keys()):
include_com = diction['include_com']
@@ -425,6 +431,9 @@ def Update_Contact(diction):
if (civilite not in MYSY_GV.CIVILITE):
civilite = "neutre"
+ if( str(civilite).strip() == ""):
+ civilite = "neutre"
+
data_update['civilite'] = str(civilite)
adr_adresse = ""
@@ -683,6 +692,9 @@ def Get_Given_Contact(diction):
if( local_civilite not in MYSY_GV.CIVILITE ):
local_civilite = "neutre"
+ if( str(local_civilite).strip() == ""):
+ local_civilite = "neutre"
+
user['civilite'] = local_civilite
diff --git a/E_Sign_Document.py b/E_Sign_Document.py
index 4472fa5..e3a0a62 100644
--- a/E_Sign_Document.py
+++ b/E_Sign_Document.py
@@ -1250,7 +1250,7 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None):
quotation_client_data = None
quotation_client_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': local_partner_owner_recid,
+ {'partner_owner_recid': local_partner_owner_recid,
'_id': ObjectId(str(quotation_data['order_header_client_id'])),
'valide': '1',
'locked': '0'})
@@ -1827,7 +1827,7 @@ def Create_E_Signature_For_E_Invoice(file_img=None, Folder=None, diction=None):
quotation_client_data = None
quotation_client_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': local_partner_owner_recid,
+ {'partner_owner_recid': local_partner_owner_recid,
'_id': ObjectId(str(quotation_data['order_header_client_id'])),
'valide': '1',
'locked': '0'})
diff --git a/GlobalVariable.py b/GlobalVariable.py
index a41cca9..19b9f47 100644
--- a/GlobalVariable.py
+++ b/GlobalVariable.py
@@ -133,7 +133,7 @@ Au dela de 300 caractère, le système rame
MAX_CARACT = 300 # Celui est utilisé pour les affichage courts et tronqués, comme sur la page principale du moteur
MAX_CARACT_DEDUIT = 150
TOKEN_SIZE = 25
-MAX_CARACT_DETAIL = 1000 # Celui est utilisé pour les affichage globaux (si le texte est trop long, il va tronquer un peut mais cela permet de cadrer un peu les choses
+MAX_CARACT_DETAIL = 1200 # Celui est utilisé pour les affichage globaux (si le texte est trop long, il va tronquer un peut mais cela permet de cadrer un peu les choses
@@ -444,9 +444,9 @@ Limite des zones de texte des formation
- objectif
- description
"""
-CLASS_ZONE_PROGRAM_LIMIT = 1300
-CLASS_ZONE_DESCRIP_LIMIT = 2000
-CLASS_ZONE_OBJECTIF_LIMIT = 2000
+CLASS_ZONE_PROGRAM_LIMIT = 1200
+CLASS_ZONE_DESCRIP_LIMIT = 1200
+CLASS_ZONE_OBJECTIF_LIMIT = 1200
"""
@@ -530,8 +530,8 @@ elif (MYSY_ENV == "DEM"):
MYSY_MARIADB_PORT = 3306
MYSY_LMS_BDD = "mysy_db_chamilo_rec"
MYSY_LMS_URL = "https://demolms.mysy-training.com/"
- MYSY_LMS_BASE_DIRECTORY = "/var/www/html/chamilo_demo/"
- LMS_BAS_URL = "mysy-hosting.fr/"
+ MYSY_LMS_BASE_DIRECTORY = "/var/www/html/chamilo_mysy_demo/"
+ LMS_BAS_URL = "mysytraining.fr/"
MYSY_ENV_API = "https://demoapi.mysy-training.com/myclass/api/"
diff --git a/Inscription_mgt.py b/Inscription_mgt.py
index 60734c3..d627e5b 100644
--- a/Inscription_mgt.py
+++ b/Inscription_mgt.py
@@ -272,6 +272,9 @@ def AddStagiairetoClass(diction):
if (str(civilite) not in MYSY_GV.CIVILITE):
civilite = "neutre"
+ if( str(civilite).strip() == ""):
+ civilite = "neutre"
+
mydata['civilite'] = civilite
@@ -325,7 +328,7 @@ def AddStagiairetoClass(diction):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents( {'_id': ObjectId(diction['client_rattachement_id']),
- 'valide': '1','locked': '0', 'partner_recid': str(my_session_data['partner_owner_recid'])})
+ 'valide': '1','locked': '0', 'partner_owner_recid': str(my_session_data['partner_owner_recid'])})
if( local_client_retval_count != 1 ):
mycommon.myprint(
@@ -342,7 +345,7 @@ def AddStagiairetoClass(diction):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents( {'_id': ObjectId(diction['facture_client_rattachement_id']),
- 'valide': '1','locked': '0', 'partner_recid': str(my_session_data['partner_owner_recid'])})
+ 'valide': '1','locked': '0', 'partner_owner_recid': str(my_session_data['partner_owner_recid'])})
if( local_client_retval_count != 1 ):
mycommon.myprint(
@@ -376,7 +379,7 @@ def AddStagiairetoClass(diction):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(diction['financeur_rattachement_id']),
- 'valide': '1', 'locked': '0', 'partner_recid': str(my_session_data['partner_owner_recid'])})
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(my_session_data['partner_owner_recid'])})
if (local_client_retval_count != 1):
mycommon.myprint(
@@ -389,17 +392,17 @@ def AddStagiairetoClass(diction):
mydata['financeur_rattachement_id'] = ""
if ("tuteur1_civilite" not in diction.keys()):
- mydata['tuteur1_civilite'] = ""
+ mydata['tuteur1_civilite'] = "neutre"
elif (diction['tuteur1_civilite'] not in MYSY_GV.CIVILITE):
# la civilité n'est pas une de celle autorisée, alors je renvoie vide
- mydata['tuteur1_civilite'] = ""
+ mydata['tuteur1_civilite'] = "neutre"
if ("tuteur2_civilite" not in diction.keys()):
- mydata['tuteur2_civilite'] = ""
+ mydata['tuteur2_civilite'] = "neutre"
elif (diction['tuteur2_civilite'] not in MYSY_GV.CIVILITE):
# la civilité n'est pas une de celle autorisée, alors je renvoie vide
- mydata['tuteur2_civilite'] = ""
+ mydata['tuteur2_civilite'] = "neutre"
if ("ville" in diction.keys()):
@@ -1013,6 +1016,8 @@ def UpdateStagiairetoClass(diction):
if (str(mydata['civilite']) not in MYSY_GV.CIVILITE):
mydata['civilite'] = "neutre"
+ if( str(mydata['civilite']).strip() == ""):
+ mydata['civilite'] = "neutre"
if ("date_naissance" in diction.keys()):
if diction['date_naissance']:
@@ -1154,7 +1159,7 @@ def UpdateStagiairetoClass(diction):
if(len(str(diction['client_rattachement_id']).strip()) > 0 ):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents({'_id': ObjectId(diction['client_rattachement_id']),
- 'valide': '1', 'locked': '0', 'partner_recid': str(partner_recid)})
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(partner_recid)})
if (local_client_retval_count != 1):
mycommon.myprint(
@@ -1168,7 +1173,7 @@ def UpdateStagiairetoClass(diction):
if(len(str(diction['facture_client_rattachement_id']).strip()) > 0 ):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents({'_id': ObjectId(diction['facture_client_rattachement_id']),
- 'valide': '1', 'locked': '0', 'partner_recid': str(partner_recid)})
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(partner_recid)})
if (local_client_retval_count != 1):
mycommon.myprint(
@@ -1184,7 +1189,7 @@ def UpdateStagiairetoClass(diction):
## Verifier l'existance du client de rattachement
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(diction['financeur_rattachement_id']),
- 'valide': '1', 'locked': '0', 'partner_recid': str(partner_recid)})
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(partner_recid)})
if (local_client_retval_count != 1):
mycommon.myprint(
@@ -1673,6 +1678,9 @@ def GetAllClassStagiaire(diction):
if( str( user['civilite']) not in MYSY_GV.CIVILITE):
user['civilite'] = "neutre"
+ if( str(user['civilite']).strip() == ""):
+ user['civilite'] = "neutre"
+
lms_account_expiration_date = ""
if ("lms_account_expiration_date" in retval.keys()):
lms_account_expiration_date = retval['lms_account_expiration_date']
@@ -2772,6 +2780,11 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None):
civilite = str(df['civilite'].values[n]).lower()
mydata['civilite'] = str(civilite).lower()
+ if( str(civilite).strip() == ""):
+ mydata['civilite'] = "neutre"
+
+
+
if( civilite not in MYSY_GV.CIVILITE):
mycommon.myprint(
str(inspect.stack()[0][3]) + " Ligne : " + str(
@@ -2833,7 +2846,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None):
if( client_rattachement_email and client_rattachement_nom ):
local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), 'valide':'1',
- 'locked':'0', 'partner_recid' :str(partner_recid)}
+ 'locked':'0', 'partner_owner_recid' :str(partner_recid)}
print(" ### local_client_retval_qry = ", local_client_retval_qry)
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry)
@@ -3204,7 +3217,7 @@ def Controle_AddStagiairetoClass_mass(saved_file=None, Folder=None, diction=None
if (client_rattachement_email and client_rattachement_nom):
local_client_retval_qry = {'email': str(client_rattachement_email),
'nom': str(client_rattachement_nom), 'valide': '1',
- 'locked': '0', 'partner_recid': str(partner_recid)}
+ 'locked': '0', 'partner_owner_recid': str(partner_recid)}
print(" ### local_client_retval_qry = ", local_client_retval_qry)
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(
@@ -3621,7 +3634,7 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No
client_rattachement_nom = str(df['client_rattachement_nom'].values[n]).strip()
if (client_rattachement_email and client_rattachement_nom):
local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom),
- 'valide':'1', 'locked':'0', 'partner_recid' :str(partner_recid)}
+ 'valide':'1', 'locked':'0', 'partner_owner_recid' :str(partner_recid)}
print(" ### local_client_retval_qry = ", local_client_retval_qry)
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry)
@@ -3668,7 +3681,7 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No
if (facture_client_rattachement_email and facture_client_rattachement_nom):
local_client_retval_qry = {'email': str(facture_client_rattachement_email), 'nom': str(facture_client_rattachement_nom),
- 'valide': '1', 'locked': '0', 'partner_recid': str(partner_recid)}
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(partner_recid)}
print(" ### local_client_retval_qry = ", local_client_retval_qry)
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry)
@@ -3996,6 +4009,10 @@ def Controle_AddStagiairetoClass_mass_for_many_session(saved_file=None, Folder=N
if (str(df['civilite'].values[n])):
civilite = str(df['civilite'].values[n]).lower()
mydata['civilite'] = str(civilite).lower()
+
+ if( str(civilite).strip() == ""):
+ mydata['civilite'] = "neutre"
+
if( civilite not in MYSY_GV.CIVILITE):
mycommon.myprint(
str(inspect.stack()[0][3]) + " Ligne : " + str(
@@ -4061,7 +4078,7 @@ def Controle_AddStagiairetoClass_mass_for_many_session(saved_file=None, Folder=N
if (facture_client_rattachement_email and facture_client_rattachement_nom):
local_client_retval_qry = {'email': str(facture_client_rattachement_email),
'nom': str(facture_client_rattachement_nom),
- 'valide': '1', 'locked': '0', 'partner_recid': str(partner_recid)}
+ 'valide': '1', 'locked': '0', 'partner_owner_recid': str(partner_recid)}
print(" ### local_client_retval_qry = ", local_client_retval_qry)
local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry)
@@ -6602,25 +6619,48 @@ def AcceptAttendeeInscription(diction):
mycommon.myprint(
str(inspect.stack()[0][3]) + " TOP, l'inscription dans le LMS a ete correctement faite")
- """ Vu que l'inscription est ok, on va envoyer les credentials à l'inscrit
+ """
+ 11/07/2025 :
+ Vu que l'inscription est ok, on va envoyer les credentials à l'inscrit
si et seulement local_session['lms_account_automatic'] == "1"
"""
if( local_session and "lms_account_automatic" in local_session.keys() and local_session['lms_account_automatic'] == "1"):
+
+ print(" ### AUTOMATIC INSCRIPTION LMS a faire zzzzzz")
local_node_send_credential = {}
local_node_send_credential['token'] = diction['token']
local_node_send_credential['class_internal_url'] = local_ret_val['class_internal_url']
local_node_send_credential['session_id'] = local_ret_val['session_id']
local_node_send_credential['email'] = local_ret_val['email']
+ local_node_send_credential['nom'] = local_ret_val['nom']
+ local_node_send_credential['prenom'] = local_ret_val['prenom']
+ local_node_send_credential['date_du'] = local_ret_val['date_du']
+ local_node_send_credential['date_au'] = local_ret_val['date_au']
+ local_node_send_credential['title'] = str(class_title)
+
+ local_node_send_credential['login'] = local_ret_val['email']
+ local_node_send_credential['pwd'] = local_ret_val['lms_pwd']
+ local_node_send_credential['lms_url'] = str(my_partner['lms_virtualhost_url'])
+
+ local_node_send_credential['course_owner_email'] = my_partner['email']
+ local_node_send_credential['partner_recid'] = my_partner['recid']
+
+ local_node_send_credential['inscription_id'] = str(local_ret_val['_id'])
+ local_node_send_credential['session_code'] = str(local_session['code_session'])
+
+ # split_mail_tab = str(email).split('@')
+ # email_data['login'] = split_mail_tab[0]
print(" ### local_node_send_credential = ", local_node_send_credential)
- send_credential_status, send_credential_retval = SendInscriptionConfirmation(local_node_send_credential)
- if( send_credential_status is False):
- mycommon.myprint(
- str(inspect.stack()[0][
- 3]) + " - WARNING : Impossible d'envoyer les accès du compte LMS à l'utilisateur "+str(local_ret_val['email']))
- return_message = return_message + " -Impossible d'envoyer les accès du compte LMS à l'utilisateur "+str(local_ret_val['email'])+". \n"
- is_warning_message = 1
+ local_status, local_message = email_session.LMS_Credential_Sending_mail(local_node_send_credential)
+ if (local_status is False):
+ mycommon.myprint(str(
+ inspect.stack()[0][
+ 3]) + " - WARNING : Impossible d'envoyer le mail de notification pour " + str(
+ diction['email']))
+ return_message = return_message + str(
+ " Impossible d'envoyer le mail de notification pour : " + str(diction['email']))
else:
@@ -6746,6 +6786,7 @@ def AcceptAttendeeInscription(diction):
new_apprenant_diction['nom'] = inscription_data['nom']
new_apprenant_diction['email'] = inscription_data['email']
new_apprenant_diction['prenom'] = inscription_data['prenom']
+ new_apprenant_diction['civilite'] = ""
if( "civilite" in inscription_data.keys()):
new_apprenant_diction['civilite'] = str(inscription_data['civilite']).lower()
@@ -6755,6 +6796,10 @@ def AcceptAttendeeInscription(diction):
if (str(new_apprenant_diction['civilite']) not in MYSY_GV.CIVILITE):
new_apprenant_diction['civilite'] = "neutre"
+ if( str(new_apprenant_diction['civilite']).strip() == ""):
+ new_apprenant_diction['civilite'] = "neutre"
+
+
if("telephone" in inscription_data.keys()):
new_apprenant_diction['telephone'] = inscription_data['telephone']
else:
@@ -6812,15 +6857,22 @@ def AcceptAttendeeInscription(diction):
else:
new_apprenant_diction['tuteur1_telephone'] = ""
+ new_apprenant_diction['tuteur1_civilite'] = ""
if ("tuteur1_civilite" in inscription_data.keys()):
new_apprenant_diction['tuteur1_civilite'] = inscription_data['tuteur1_civilite']
else:
new_apprenant_diction['tuteur1_civilite'] = ""
+ if( str(new_apprenant_diction['tuteur1_civilite']).strip() == ""):
+ new_apprenant_diction['tuteur1_civilite'] = "neutre"
+
+ new_apprenant_diction['tuteur2_civilite'] = ""
if ("tuteur2_civilite" in inscription_data.keys()):
new_apprenant_diction['tuteur2_civilite'] = inscription_data['tuteur2_civilite']
else:
new_apprenant_diction['tuteur2_civilite'] = ""
+ if (str(new_apprenant_diction['tuteur2_civilite']).strip() == ""):
+ new_apprenant_diction['tuteur2_civilite'] = "neutre"
if("tuteur2_nom" in inscription_data.keys()):
@@ -7926,8 +7978,6 @@ def Get_Statgaire_List_Partner_with_filter(diction):
filt_session_id = {'session_id': {'$in': list_session_id, }}
- #print(" ### filt_session_id zzzzzzzzz = ", filt_session_id)
-
filt_class_title = {}
if ("class_title" in diction.keys()):
filt_class_title = {'title': {'$regex': str(diction['class_title']), "$options": "i"}}
@@ -7956,7 +8006,6 @@ def Get_Statgaire_List_Partner_with_filter(diction):
if ("session_id" in diction.keys()):
filt_session_id = {'session_id': str(diction['session_id'])}
"""
- #print(" ### filt_session_id 0222 zzzzzzzzz = ", filt_session_id)
# -----
filt_client_nom = {}
@@ -7964,7 +8013,7 @@ def Get_Statgaire_List_Partner_with_filter(diction):
Lists_partner_client_id = []
if ("client_nom" in diction.keys()):
sub_filt_client_nom = {'nom': {'$regex': str(diction['client_nom']), "$options": "i"},
- 'partner_recid': str(partner_recid), 'valide': '1', 'locked': '0'}
+ 'partner_owner_recid': str(partner_recid), 'valide': '1', 'locked': '0'}
# Recuperation des '_id' des clients dont le nom match en regexp
# print(" ### sub_filt_client_nom = ", sub_filt_client_nom)
for List_Client_Data in MYSY_GV.dbname['partner_client'].find(sub_filt_client_nom, {'_id': 1}):
@@ -8039,6 +8088,10 @@ def Get_Statgaire_List_Partner_with_filter(diction):
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']
@@ -8554,6 +8607,7 @@ def GetAttendeeDetail_perSession_from_line_id(diction):
else:
my_retrun_dict['apprenant_id'] = ""
+ my_retrun_dict['tuteur1_civilite'] = ""
if ("tuteur1_civilite" not in local_Insc_retval.keys()):
my_retrun_dict['tuteur1_civilite'] = ""
elif (local_Insc_retval['tuteur1_civilite'] not in MYSY_GV.CIVILITE):
@@ -8562,6 +8616,11 @@ def GetAttendeeDetail_perSession_from_line_id(diction):
else:
my_retrun_dict['tuteur1_civilite'] = local_Insc_retval['tuteur1_civilite']
+
+ if( my_retrun_dict['tuteur1_civilite'] == ""):
+ my_retrun_dict['tuteur1_civilite'] = "neutre"
+
+ my_retrun_dict['tuteur2_civilite'] = ""
if ("tuteur2_civilite" not in local_Insc_retval.keys()):
my_retrun_dict['tuteur2_civilite'] = ""
elif (local_Insc_retval['tuteur2_civilite'] not in MYSY_GV.CIVILITE):
@@ -8570,6 +8629,9 @@ def GetAttendeeDetail_perSession_from_line_id(diction):
else:
my_retrun_dict['tuteur2_civilite'] = local_Insc_retval['tuteur2_civilite']
+ if( my_retrun_dict['tuteur2_civilite'] == ""):
+ my_retrun_dict['tuteur2_civilite'] = "neutre"
+
if ("code_session" in local_Insc_retval['inscription_collection'][0].keys()):
my_retrun_dict['code_session'] = str(local_Insc_retval['inscription_collection'][0]['code_session'])
@@ -8612,6 +8674,8 @@ def GetAttendeeDetail_perSession_from_line_id(diction):
if (local_civilite not in MYSY_GV.CIVILITE):
local_civilite = "neutre"
+ if( str(local_civilite) == ""):
+ local_civilite = "neutre"
my_retrun_dict['civilite'] = str(local_civilite).lower()
@@ -8810,16 +8874,17 @@ def UpdateStagiairetoClass_Tuteurs(diction):
if ("tuteur1_civilite" in data_update.keys() ):
- if (data_update['tuteur1_civilite'] not in MYSY_GV.CIVILITE):
+ if (data_update['tuteur1_civilite'] not in MYSY_GV.CIVILITE or str(data_update['tuteur1_civilite']).strip() == "" ):
# la civilité n'est pas une de celle autorisée, alors je renvoie vide
- data_update['tuteur1_civilite'] = ""
+ data_update['tuteur1_civilite'] = "neutre"
if ("tuteur2_civilite" in data_update.keys() ):
- if (data_update['tuteur2_civilite'] not in MYSY_GV.CIVILITE):
+ if (data_update['tuteur2_civilite'] not in MYSY_GV.CIVILITE or str(data_update['tuteur2_civilite']).strip() == ""):
# la civilité n'est pas une de celle autorisée, alors je renvoie vide
- data_update['tuteur2_civilite'] = ""
+ data_update['tuteur2_civilite'] = "neutre"
+
result = MYSY_GV.dbname['inscription'].find_one_and_update(
{'_id':ObjectId(str(my_id)),
@@ -11084,7 +11149,7 @@ def Download_Convention_Stagiaire_PDF_By_Partner_client(diction):
partner_client_id_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['partner_client_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
tab_client = []
tab_client.append(partner_client_id_data['_id'])
@@ -11309,7 +11374,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat
{'_id': ObjectId(str(diction['partner_client_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
# Traitement de l'eventuel fichier joint
@@ -11476,7 +11541,7 @@ def Sent_Convention_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_pat
client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['partner_client_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid': str(my_partner['recid']),
+ 'partner_owner_recid': str(my_partner['recid']),
})
@@ -12584,7 +12649,7 @@ def Get_Statgaire_List_Partner_with_filter_FOR_ONLY_INSCRIPTION_NO_TOKEN(diction
else:
val['civilite'] = ""
- if (str(val['civilite']) not in MYSY_GV.CIVILITE):
+ if (str(val['civilite']) not in MYSY_GV.CIVILITE or str(val['civilite']).strip() == ""):
val['civilite'] = "neutre"
if ("modefinancement" in retVal.keys()):
@@ -14260,7 +14325,7 @@ def Add_Update_Inscription_Split_Invoice(diction):
is_partage_client_valide = MYSY_GV.dbname['partner_client'].count_documents({'_id':ObjectId(str(local_client)),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if( is_partage_client_valide != 1):
diff --git a/Job_Cron.py b/Job_Cron.py
index 556fb82..ff08879 100644
--- a/Job_Cron.py
+++ b/Job_Cron.py
@@ -814,7 +814,7 @@ def Invoice_Data_From_Tab(diction):
client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['list_client'][0])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(str(data_array[0]['partner_owner_recid']))})
+ 'partner_owner_recid':str(str(data_array[0]['partner_owner_recid']))})
if( client_data is None ):
mycommon.myprint(
diff --git a/Job_Cron_Common.py b/Job_Cron_Common.py
index c40e005..c3754bd 100644
--- a/Job_Cron_Common.py
+++ b/Job_Cron_Common.py
@@ -3004,3 +3004,77 @@ def Cron_Send_Emargement_By_Date_By_Email_for_not_sent(Folder, diction):
return False, " Impossible d'envoyer les demandes d'émargement ", "0"
+"""
+Cette fonction permet d'envoyer les emails qui sont dans file d'attente
+collection : 'email_queue'
+"""
+def Send_Mail_Queue_Message_With_Filter(diction):
+ try:
+
+ field_list_obligatoire = ['partner_owner_recid',]
+
+ 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"
+
+ for email_queue_data in MYSY_GV.dbname['mail_queue'].find({'statut':'0', 'valide':'1', 'locked':'0'}):
+ msg = MIMEMultipart("alternative")
+ msg.attach(email_queue_data['message'])
+ msg['From'] = email_queue_data['from']
+ msg['Cc'] = email_queue_data['cc']
+ msg['Bcc'] = 'contact@mysy-training.com'
+ msg['Subject'] = email_queue_data['subject']
+ msg['to'] = email_queue_data['to']
+ # Traitement de l'eventuel fichier joint
+ tab_files_to_attache_to_mail = []
+
+ smtpserver = smtplib.SMTP(email_queue_data['smtp_account_smtpsrv'], email_queue_data['smtp_account_port'])
+
+ for myfile in email_queue_data['attached_files_path']:
+ file_to_attache_to_mail = MIMEBase('application', "octet-stream")
+ file_to_attache_to_mail.set_payload(open(myfile, "rb").read())
+ encoders.encode_base64(file_to_attache_to_mail)
+ file_to_attache_to_mail.add_header('Content-Disposition',
+ 'attachment; filename="{0}"'.format(os.path.basename(myfile)))
+
+ new_node = {"attached_file": file_to_attache_to_mail}
+ tab_files_to_attache_to_mail.append(new_node)
+
+ # Attacher l'eventuelle pièces jointes
+ for myfile in tab_files_to_attache_to_mail:
+ msg.attach(myfile['attached_file'])
+
+ smtpserver.ehlo()
+ smtpserver.starttls()
+ smtpserver.login(email_queue_data['smtp_account_user'], email_queue_data['smtp_account_password'])
+ val = smtpserver.send_message(msg)
+ smtpserver.close()
+ print(" Email envoyé" + str(val))
+
+ """
+ On met à jour l'email avec le statut d'envoie de l'email
+ """
+ new_data = diction
+ new_data['date_update'] = str(datetime.now())
+ new_data['sent'] = str(datetime.now())
+ new_data['statut'] = "2"
+ new_data['sent_message'] = str(val)
+
+ result = MYSY_GV.dbname['mail_queue'].find_one_and_update(
+ {'_id':ObjectId(str(email_queue_data['_id']))},
+ {"$set": new_data},
+ upsert=False,
+ return_document=ReturnDocument.AFTER
+ )
+
+
+
+
+ return True, "L'emails envoyés "
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, " Impossible d'envoyer les emails "
diff --git a/Log/log_file.log b/Log/log_file.log
index d600540..d42eb99 100644
--- a/Log/log_file.log
+++ b/Log/log_file.log
@@ -145651,3 +145651,16392 @@ INFO:root:2025-07-06 12:15:11.632753 : ++ FLASK PORT 5001 ++
INFO:root:2025-07-06 12:15:11.632753 : ++ LMS_BAS_URL mysy-hosting.com/ ++
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-06 12:36:48.725561 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.784611 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.789977 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.791981 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.793983 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.797315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:48.801718 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:51.437194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:51] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.229398 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.235398 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.237455 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.246444 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.248883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.255855 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.259855 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.274439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.277422 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.288167 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.291150 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.301149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.312174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:36:52.508120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:36:52.514115 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:36:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:37:07.886466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:37:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:37:07.889467 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:37:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:37:09.555735 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:37:09.561748 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:37:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:37:09] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:37:15.045128 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:37:15] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.891007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.896007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.901009 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.906007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.916009 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.924007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.939014 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.949021 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.955530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.966537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.976535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:43.984537 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:43.990534 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:43] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:44] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:44.017537 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:44.022535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:44] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:44] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:57.586802 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.590826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.607804 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:57.638079 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:57.654515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.656520 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.659521 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.665558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:38:57.669520 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:57.678553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:38:59.056340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:38:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.029667 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.033666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.039665 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.043666 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.050668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.058667 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.065668 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.077706 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.092430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.103439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.110405 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.118405 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.125407 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:39:00.243145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:39:00.247145 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:39:00] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:41:53.629511 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:41:56.243605 : update_class - La formation a bin ete mise à jour =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 12:41:56.288694 : external_code = MYS_MASTER_M1_INFO ==> MySy Master Informatique M1
+INFO:root:2025-07-06 12:41:57.427941 : La formation indexée (champ title) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 12:41:57.427941 : 1 ont été indexes => title
+INFO:root:2025-07-06 12:41:57.429941 : external_code = MYS_MASTER_M1_INFO ==> licene_info
+INFO:root:2025-07-06 12:41:58.114059 : La formation indexée (champs objectif) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 12:41:58.114059 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:41:58] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:42:00.667943 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:42:05.924808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:05] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:42:10.582506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:42:10.586007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 12:42:10.591014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:10] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:10] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 12:42:10.631828 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 12:42:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:15:16.493399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:15:16.494430 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:15:16.505420 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:15:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:15:16] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:15:16] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:15:16.546932 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:15:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:16:20.743252 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:16:20.746252 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:16:20.750358 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:16:20.797268 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:16:33.340201 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:16:33.344703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:16:33.349704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:33] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:33] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:16:33.394886 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:16:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\GlobalVariable.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:2025-07-06 14:18:36.497452 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 14:18:36.498453 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 14:18:36.498453 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 14:18:36.498453 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 14:18:36.498453 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-06 14:18:48.828534 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:18:48.832538 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:18:48.835544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:18:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:18:48] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:18:48] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:18:48.888535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:18:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\GlobalVariable.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:2025-07-06 14:20:54.169434 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 14:20:54.170382 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 14:20:54.170382 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 14:20:54.170382 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 14:20:54.170382 : ++ 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\\GlobalVariable.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:2025-07-06 14:22:01.897432 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 14:22:01.897432 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 14:22:01.897432 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 14:22:01.897432 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 14:22:01.897432 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-06 14:22:50.028603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:54.654511 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:55.919041 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:56.853165 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.856337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.856337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.857337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.858337 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:56.863337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.865336 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.866337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.868336 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:56.871337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:56.874338 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:56.885344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:56.887343 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:56] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:22:57.660935 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:22:57.662935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:57] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:22:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:23:03.995916 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:23:04.443112 : update_class - La formation a bin ete mise à jour =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:23:04.447276 : external_code = MYS_MASTER_M1_INFO ==> MySy Master Informatique M1
+INFO:root:2025-07-06 14:23:05.301051 : La formation indexée (champ title) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:23:05.301051 : 1 ont été indexes => title
+INFO:root:2025-07-06 14:23:05.303791 : external_code = MYS_MASTER_M1_INFO ==> licene_info
+INFO:root:2025-07-06 14:23:05.947072 : La formation indexée (champs objectif) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:23:05.948072 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:05] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:23:11.026673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:23:11.028673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:23:11.029675 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:23:11.088194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:23:44.951098 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:23:44.953471 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:23:44.954472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:23:44.990544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:23:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:24:34.732831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:24:34.753338 : update_class - La formation a bin ete mise à jour =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:24:34.755844 : external_code = MYS_MASTER_M1_INFO ==> MySy Master Informatique M1
+INFO:root:2025-07-06 14:24:35.358577 : La formation indexée (champ title) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:24:35.358577 : 1 ont été indexes => title
+INFO:root:2025-07-06 14:24:35.360577 : external_code = MYS_MASTER_M1_INFO ==> licene_info
+INFO:root:2025-07-06 14:24:36.134914 : La formation indexée (champs objectif) =684557cc3faf55c59042fe67
+INFO:root:2025-07-06 14:24:36.134914 : 1 ont été indexes ==> keyword
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:24:36] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:24:51.474083 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:24:51.477080 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:24:51.479080 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:24:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:24:51] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:24:51] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:24:51.521081 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:24:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:25:28.141892 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:25:28.143895 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:25:28.144893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:25:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:25:28] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:25:28] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:25:28.178027 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:25:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:26:08.121979 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:26:08.123978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:26:08.124977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:08] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:08] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:26:08.145972 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:26:41.777006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:26:41.778006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:26:41.780009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:41] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:41] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:41] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:26:41.809054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:26:41] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:28:06.592426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:28:06.595428 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:28:06.597950 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:28:06] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:28:06] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:28:06] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:28:06.632914 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:28:06] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:32:57.695141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:32:57.698141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:32:57.703143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:32:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:32:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:32:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:32:57.758778 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:32:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 14:43:44.789121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 14:43:44.817125 : update_class : le champ 'Progamme' de La formation MYS_MASTER_M1_INFO a plus de 1200 caractères
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 14:43:44] "POST /myclass/api/update_class/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\survey_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:2025-07-06 14:54:10.887367 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 14:54:10.887367 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 14:54:10.887367 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 14:54:10.887367 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 14:54:10.887367 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-06 15:14:38.323601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.329602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.340689 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.346706 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.350692 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.357707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:38.442220 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:38.450200 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.455217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:38.462216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:38.478246 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:38.487658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:38.494658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:38] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:14:39.196424 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:14:39.201975 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:39] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:14:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.142598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:31.148103 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:31.154101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.167120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.182101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.195123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.204228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:31.211289 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.216263 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:31.221265 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.241018 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.251026 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.258507 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:31.304557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:31.308560 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:47.125160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:47.127160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:47.130664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:47.133688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:47.144269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:47.151231 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:47.171229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:47] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:49.578598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:49] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:50.387721 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.390722 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.395724 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.401729 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.404728 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.416743 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:50.426742 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:50.433936 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.438951 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:50.451513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:50.462538 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:50] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:18:52.382467 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:52.387480 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:18:52.393464 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:52] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:52] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:18:52] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:00.246463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:00] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:06.119708 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:06.170881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:06.390257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:06.540971 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:06.552973 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:07.134300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:07.159333 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:07.190850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:07] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:07.223689 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:07.235573 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:07.251576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:07.272851 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:07.295255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:07.313267 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.639684 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.662724 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.676408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.697406 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.710512 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.734940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:08.744928 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.756458 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:08.760953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.786250 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.802775 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.823361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.849386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:08.855388 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.865617 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.872159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.885152 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.896152 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.903146 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:08.911146 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:08.914131 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.418069 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.486651 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.489663 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.495666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.500655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.518667 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.546680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.548679 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.553194 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:09.557190 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.564701 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:09.575800 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:09] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:11.474540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.731185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.733691 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.737712 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.740714 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.746713 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.759748 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.773745 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:12.788297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.800300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.807301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.821861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.838952 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:12.852978 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:12] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:13.201584 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:13.204580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:13] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.417406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.420408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.422407 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.428406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.433920 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.441939 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.446919 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.466362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.469395 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.477360 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.483366 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.487370 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.496369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:32.533882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:32.536883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:47.027483 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:19:47.030490 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:47] "POST /myclass/api/Get_List_base_calcul_note_class_and_ue_With_Filter HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:47] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:50.034300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:50] "POST /myclass/api/Get_Entity_Question_List_With_Stat_For_Given_related_collection_id/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:51.132353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:51] "POST /myclass/api/Get_Financial_Caracteristique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:19:58.718312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:19:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:03.609109 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:03.611122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:03.616108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:03.619108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:03.623122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:03.637126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:03.643109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:06.904803 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:06] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:07.651992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.656510 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.661515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.667540 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.672625 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:07.681529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.686138 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:07.693040 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:07.701775 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:07.711798 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:07.723668 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:07] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:09.178211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:09.181117 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:09.185106 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:09] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:09] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:09] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:14.339856 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:14] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:19.829579 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:19.831139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:19.832652 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:19] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:19.834180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:19.835185 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:19] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:19] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:19] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.055617 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.060618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.064618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.069645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.074644 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.081645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.087218 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.091514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.097529 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.107533 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.110528 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.117531 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.120564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.124545 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.129530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.134529 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.137529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.142548 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.147528 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.150530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.153529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.157546 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.165529 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.170537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.173539 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.174560 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.176554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.181544 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:20.185056 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:20.192082 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:20] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.345195 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.387740 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:22.390774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:22.391758 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:22.401277 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.416269 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.422275 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.427288 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:22.429290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:22.434760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.442775 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:22.450765 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:24.044722 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:25.185287 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.087445 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.090447 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.092446 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.101976 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.111929 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.121952 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.125954 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.132991 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.143005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.152519 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.158553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.167519 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.178516 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 15:20:26.425816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 15:20:26.427817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 15:20:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ 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:2025-07-06 21:35:23.723903 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 21:35:23.723903 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 21:35:23.723903 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 21:35:23.723903 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 21:35:23.723903 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-06 21:35:36.422009 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-06 21:35:36.422009 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-06 21:35:36.422009 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-06 21:35:36.422009 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-06 21:35:36.422009 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-06 21:39:59.977398 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:39:59.984351 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:39:59.989357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:39:59.997355 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:00.151209 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:00.154214 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:00.158212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:00.191203 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:00.196211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:00.199213 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:00.237736 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:04.260552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:04.263559 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:04.266548 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:04.269552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:04.274555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:04.281555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:04.286573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:05.827802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:05] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:07.190601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.195605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.201603 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.202648 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.207448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.210470 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:07.218453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:07.224576 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:07.244551 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.248557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:07.253564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:07] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:09.928094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:09.931094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:09.934094 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:09.945144 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:10.596765 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:10.600768 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:10.605770 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:10.611767 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:40:10.619765 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:10.626774 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:40:10.634783 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:40:10] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.859160 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.880158 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:29.896162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.910166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.928676 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.945220 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:29.958216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:35.778713 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:35.851722 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:35.855719 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:35.858722 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:35.863724 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:35.865294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:35.872305 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:35.879329 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:35] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:45.890791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:45] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:47.756371 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.779605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.784104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.788479 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:47.795479 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.799479 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.804490 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:47.812489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:47.819489 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-06 21:41:47.822014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-06 21:41:47.829007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [06/Jul/2025 21:41:47] "POST /myclass/api/Get_Matrix_Acces_Right/ 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:2025-07-07 09:36:33.082916 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-07 09:36:33.082916 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-07 09:36:33.082916 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-07 09:36:33.082916 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-07 09:36:33.082916 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-07 09:36:39.446540 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-07 09:36:39.447539 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-07 09:36:39.447539 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-07 09:36:39.447539 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-07 09:36:39.447539 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-07 09:40:07.226228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:07.230229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:07.234228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:07.238234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:07.268231 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:07.270227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:07.274228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:07.302230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:07.309233 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:root:2025-07-07 09:40:07.310242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:07.319268 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:09.541629 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.546628 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.549629 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:09.561630 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:09.777005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.782020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.789019 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.795020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:40:09.804016 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:09.813020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:40:09.819711 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:40:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:41:34.041503 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:41:34.096798 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:41:34.099813 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:41:34.103819 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:41:34.108895 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:41:34.113957 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:41:34.121910 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:34] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:41:44.078796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:41:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:08.481545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:08.483545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:08.487547 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:08.493548 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:10.137368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:10] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:16.052335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:16.056345 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:16.060338 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:16.063335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:16.070353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:16.077335 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:16.084345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:16] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:26.638485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:26.643495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:26.644494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:26.644494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:26.648501 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:26] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:26] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:26] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:26] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-07 09:42:27.581055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.584055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.586055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.589055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.600054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.607100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.611099 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.615100 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.616099 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.618613 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.619613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.621614 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.623625 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.625613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.627951 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.630954 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.632961 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.633953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.636197 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.638198 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.639622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.641953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.645036 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.646042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.649042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.651042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.653042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.655043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:27.657165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:27.658984 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:27] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:50.297838 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:50] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:51.580085 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.586088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.589088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.592089 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.595087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.602091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:51.613154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:51.620086 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:42:51.622085 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:51.627089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:42:51.640086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:42:51] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:43:47.169771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:43:47.173758 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:43:47.177757 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:43:47.185771 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:43:47.192780 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:43:47.200757 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:43:47.213776 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:43:47] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:04.107605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:04.111608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:04.117176 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:04.121177 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:04.128180 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:04.146678 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:04.150675 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:04] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:08.550127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:08] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.604827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:09.609860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:09.613834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:09.619852 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:09.621851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.629316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.641313 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:09.644342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.654344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.660341 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:09.667362 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:09] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:30.256530 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:30.259537 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:30.265535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:30.270566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:30.275570 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:30.287090 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:30.291090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:30] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:31.633633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:31] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:32.428877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.432880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.436880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.440877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.445876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:32.453877 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:32.462909 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:32.470901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.472904 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:46:32.477944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:46:32.482916 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:46:32] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:16.116962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:16.120965 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:16.123962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:16.131355 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:16.139520 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:16.150491 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:16.156489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:16] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:41.232184 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:41.236180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:41.240195 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:41.246732 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:41.250707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:41.264709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:41.273732 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:41] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:43.593761 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:43] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.458887 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:44.463886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:44.468887 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:44.478902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:44.479884 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.487883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.501901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.504884 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.509886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:44.515886 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:44.524891 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:44] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:55.090215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.093219 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.096215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:55.105723 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:55.158285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.160252 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.162258 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.163253 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.169287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:55.176260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:55.189253 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:55] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:57.185941 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:57] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.056324 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:58.059333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:58.062329 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:58.064331 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:58.069330 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.078848 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.086865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.093850 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:47:58.098851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.110854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:47:58.120875 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:47:58] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:53:06.133043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:53:06.137559 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:53:06.143055 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:53:06.146056 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:53:06.153614 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:53:06.166573 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:53:06.177887 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:53:06] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:15.138604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:15] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.754838 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:16.758840 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:16.763839 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:16.785877 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.792881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:16.798877 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.806878 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:16.812883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.822884 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.830391 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:16.835392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:16] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:27.962860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:27.965860 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:27.971861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:27.983865 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:28.035864 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:28.039864 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:28.053573 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:28.062573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:28.072573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:28.082573 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:28.097573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:28] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:30.660758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:30] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:34.206526 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.211528 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.216542 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.222063 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.232079 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.242101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:34.262129 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:34.275673 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:34.283680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:54:34.292235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:54:34.296230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:54:34] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:13.944783 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:13.948784 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:13.955783 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:13.957783 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:13.967893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:13] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:13.979785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:13] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:13.988781 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:13] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:14] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:14] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:33.655733 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:33.660734 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:33.675738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:33.680779 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:33.687280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:55:33.694280 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:55:33.708281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:55:33] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:25.205018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:25.211033 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:25.216017 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:25.222020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:25.235018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:25.243016 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:25.252056 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:25] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.183097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.917050 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.919043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.924044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.929049 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.931564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.939565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.949589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.958588 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:27.964587 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.967594 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:27.973593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:27] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.822710 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:33.828677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.836679 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:33.843696 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:33.851702 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:33.857692 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:33.863691 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.871203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.884219 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.893763 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:33.905263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:33] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:40.904302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:40] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.778922 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:41.780887 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:41.782886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:41.785886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:41.787887 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.796885 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.802895 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.808894 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:56:41.811893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.819405 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:56:41.822404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:56:41] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:11.018563 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.020565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:11.026092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.036593 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:11.076605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:11.096654 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.099654 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.103658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.105655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:11.112674 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:11.116653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:11] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:12.160340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:12] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:46.179408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:46] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:47.509861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.512859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.514863 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.518862 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.525864 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.532866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:47.546890 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.552373 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:47.559925 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:47.564937 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:47.574936 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:47] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.577800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:57.581313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.594312 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:57.597822 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.631898 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:57.640903 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.649904 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.662136 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:58:57.668125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.676210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:58:57.686210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:58:57] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:01.323638 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:01] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:02.361774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.364777 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.367774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.370774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.372774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.378772 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.385773 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:02.394779 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:02.408786 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:02.416299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:02.424296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:02] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:21.454208 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:21.455193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:21.459193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:21.462195 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:21.466196 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 09:59:21.471194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 09:59:21.490195 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 09:59:21] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:33.495157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:33] "POST /myclass/api/DeleteImage_Stagiaire_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:33.678911 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:33] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:49.430048 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:49.434049 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:49.437554 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:49.444560 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:49] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:49] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:49] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:49] "POST /myclass/api/get_class_for_partner_catalog/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:49.537230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:49] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:51.163088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:51.168089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:51.174114 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:51.184802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:51] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:51] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:57.248565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:57.290242 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:57.293241 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:57.296272 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:13:57.303278 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:57.308274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:13:57.319451 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:13:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:05.534375 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:05] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:09.283684 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:09.286682 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:09.290682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:09] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:09] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:09.357722 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:15.985653 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:15.988655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:15.991664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:15.997671 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:16] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:16] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:24.954129 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:24.957171 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:24.959166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:24.971162 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.031206 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.033205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.036211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.039210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.047210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.056298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.064281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.070313 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.074281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.092828 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:25.101834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:25.108836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:25] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.174234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.177235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.180268 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.190235 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.248803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.251799 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.254799 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.256800 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.261798 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.265800 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.277800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.280800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.285801 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.290800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:14:42.294838 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:42.302804 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:42] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:14:50.474113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:14:50] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:00.820813 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:00.827323 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:00.829331 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:00.838842 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:00.842845 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:00.852357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:00.860374 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.432491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.434492 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.438486 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.447488 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.506016 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.509012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.511012 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.517011 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.520513 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.525920 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.533921 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.537921 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.546076 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.552077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.556075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:18.559121 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:18.610748 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:18] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:21.656826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:21.659824 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:21.662824 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:21] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:21] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:21] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:21.714343 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:21] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:34.556978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:34.558978 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:15:34.564999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:15:34.577549 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:34] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:34] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:15:34] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:17:08.423121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:17:08.426137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:17:08.432120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:17:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:17:08.438120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:17:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:17:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:17:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:20:18.326160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:20:18.332162 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:20:18.335161 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:18] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:18] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:18] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:20:18.689695 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:18] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:20:26.338316 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:20:26.343315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:20:26.344314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:20:26.351311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:26] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:26] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:20:26] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:20.576434 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:20.579432 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:20.583433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:20.682010 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:28.859604 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:28.860606 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:28.865605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:28] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:28.876636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:28] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:57.719507 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:57.723550 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:57.727507 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:57] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:57] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:57] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:57.855664 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:57] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:59.223368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:22:59.227364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:59.233364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:59] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:22:59.243364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:22:59] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:24:47.134519 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:24:47.139556 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:24:47.151555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:47] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:24:47.160574 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:47] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:24:48.445123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:48] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:24:53.503639 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:24:53.506643 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:24:53.508643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:53] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:24:53.624318 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:24:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:25:53.119164 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:25:53.123150 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:25:53.133425 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:25:53.142939 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:25:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:25:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:25:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:08.403158 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:08.411163 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:08.424145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:08.429198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:08.433327 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:08] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:08] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:08] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.346277 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.352279 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.357295 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.360304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.370865 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.373866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.377865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.390874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.403865 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.407865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.413865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.419865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.426865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.435865 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.439866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.446866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.454879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.461893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.462879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.468408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.479434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.484421 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.495421 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.498435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.505447 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.510452 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.518014 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 10:26:09.522004 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.533000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 10:26:09.539014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 10:26:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:19.360163 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:52:19.371162 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:52:19.373673 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:19.380675 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:19] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:19] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:19] "POST /myclass/api/get_class_for_partner_catalog/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:19.467215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:20.736270 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:52:20.738270 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:20.745272 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:20.756320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:20] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:35.925394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:52:35.927394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:52:35.930392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:52:35.934397 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:35] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:52:35] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:20.364580 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:20.366580 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:20.368582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:20.371580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:20] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:20] "POST /myclass/api/get_class_for_partner_catalog/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:20.727014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:22.162988 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:22.164993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:22.167994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:22] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:22.174995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:22] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:32.391864 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:32.393861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:32.396859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:32.403863 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:32] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:32] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:56.251475 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:56.252475 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:53:56.254474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:56] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:56.257474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:56] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:56] "POST /myclass/api/get_class_for_partner_catalog/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:56] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:53:56.304356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:53:56] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:55:14.965721 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:55:14.975782 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:55:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:56:25.555677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:56:25.563202 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:56:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:57:23.846076 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:23] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:57:38.607646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:57:38.611642 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:57:38.613676 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:57:38.616643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:38] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:38] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:57:51.555793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:57:51] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:58:38.868562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.873560 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.877560 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.884075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.890075 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:58:38.898075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.903076 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:58:38.908075 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:58:38.913076 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:58:38.916076 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:38] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:58:40.303649 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:58:40] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.630182 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:59:55.633181 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:59:55.636221 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:59:55.638228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 16:59:55.641226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.645229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.648226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.652258 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.655225 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:55.658226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:55] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 16:59:58.110046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 16:59:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.135386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:07.137387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:07.139394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:07.142386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:07.143386 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.148385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.151386 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.156386 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.158386 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:07.162387 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:10.952977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:10] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.462962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:54.466963 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:54.469963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.473961 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.476962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:54.477961 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:02:54.480964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.482962 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.487962 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:54.490963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:54] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:02:56.885776 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:02:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:03:49.817155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.820156 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.821155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.823155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.826162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:03:49.829427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.833427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:03:49.836427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:03:49.840427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:03:49.843932 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:49] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:03:51.971991 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:03:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:04:11.243484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:11.249705 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:11.251707 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:11.256705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:04:11.261706 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:04:11.266711 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:04:11.269715 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:04:12.986867 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:12.988868 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:12.993867 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:12.996869 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:04:12.999867 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:13] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:04:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:07:35.707755 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:07:35.710754 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:07:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:07:35.714761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:07:35.716755 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:07:35.717754 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:07:35] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:07:35] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:07:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:07:35] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:11:13.237415 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:11:13.238923 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:11:13.257931 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:11:13.258931 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:13] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:11:13.294931 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:14] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:11:18.542437 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:11:18.544437 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:11:18.547435 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:11:18.549438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:11:18.552434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:18] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:11:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:12:03.114073 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:03.115072 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:03.116075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:03.118077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:03.120077 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:03] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:03] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:03] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:03] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:12:21.489807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:21.492807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:21.493832 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:21.495808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:12:21.497807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:12:47.257037 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:47.258264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:47.260235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:47.263238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:12:47.267235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:47] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:47] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:12:47] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:13:23.913305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:23.914311 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:23.917806 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:23.918810 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:23.919815 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:23] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:23] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:13:53.657388 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:53.659382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:53.660381 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:53.663381 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:13:53.666381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:53] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:53] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:53] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:13:53] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:14:21.821141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:14:21.823140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:14:21.827141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:14:21.829145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:14:21.832400 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:14:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:14:21] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:14:21] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:14:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:14:22] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:15:08.067140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:08.068140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:08.071139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:08.072145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:08.074147 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:15:31.832212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:31.834215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:31.835212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:31] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:15:31.838213 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:15:31.840215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:31] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:31] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:31] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:15:31] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:17:15.917658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:17:15.920657 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:17:15.922658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:17:15.924660 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:17:15.928660 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:17:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:17:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:17:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:17:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:17:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:18:51.125808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:18:51.127812 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:18:51.131324 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:18:51.131324 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:18:51.133324 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:18:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:18:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:18:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:18:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:18:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:19:38.705125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:38.708108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:38.710107 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:38.710107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:19:38.714172 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:38] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:19:42.779559 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:42.781559 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:42.782558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:42.785566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:19:42.786563 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:19:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:20:14.550844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:20:14] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:20:14.591421 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:20:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:22:24.351444 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:22:24.352849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:22:24.353959 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:22:24.355989 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:22:24.357995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:22:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:22:24] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:22:24] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:22:24] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:22:24] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:24:25.085025 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:24:25.089031 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:24:25.090029 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:24:25.090029 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:24:25.093030 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:24:25] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:24:25] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:24:25] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:24:25] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:24:25] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.166510 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.169512 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.171528 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.190708 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.718198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.721735 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.726734 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.729731 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.733730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.736736 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.740735 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.745738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.748736 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.751246 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:25:18.755246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:25:18.761249 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:25:19] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:26:28.041959 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:28.043962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:28.046962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:28.048976 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:28.051963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:26:28.056958 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:26:28.061959 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:26:30.088600 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:30.089604 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:30.090606 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:30.092604 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:26:30.094605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:30] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:30] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:30] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:30] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:26:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:27:55.127386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:27:55.129387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:27:55.131386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:27:55.133901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:27:55.135174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:27:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:27:55] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:27:55] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:27:55] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:27:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.667122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.669127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.671127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.680128 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.751081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.753081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.755082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.758082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.761081 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.764082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.766082 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.769086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.773086 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.776085 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:02.780087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:02.783125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:03] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.355886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.357884 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.358885 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.360886 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.361885 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.363884 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.367884 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:07.373885 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.376891 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.380914 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.382890 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:07.386889 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:09.376560 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.377565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.379565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.381565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.383565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:09.387812 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:09.389816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.391817 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.393083 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:09.399087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:09.400088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:09.401089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:11.966567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:11.968564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:11.971564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:11.973566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:11.976570 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:11.978564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:11.984564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:14.536289 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:14.537289 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:14.538794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:14.539799 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:14.543799 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:14] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:14] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:14] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:19.309230 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:19.312230 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:19.314228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:19.317233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:19.320231 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:19.322234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:19.324237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:19] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:20.919393 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:20.921916 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:20.923300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:20.925300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:20.926300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:20] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:20] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:20] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:21] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:21] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:25.190068 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:25.193075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:25.196078 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:25.198079 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:25.205078 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:25.207605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:25.210622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:26.785552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:26.787580 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:26.788552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:26.790553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:28:26.792557 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:26] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:26] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:26] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:28:44.566639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:28:44] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:06.262300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:06] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:06.459995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:11.071557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:11.074562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:11.075562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:11.079562 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:11.084566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:11.086563 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:11.090145 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:13.102130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:13.104129 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:13.105129 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:13.107130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:13.124157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:13] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:13] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:13] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:28.365116 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:28.367117 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:28.370238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:28.375259 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:28.379237 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:28.381236 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:28.385749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:28.389750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:28] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:32.471347 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.473352 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.474352 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.476352 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.478354 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:32.483350 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.484350 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:32.488654 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:32.490658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.491659 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:32.494665 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:32.497176 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:32] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:36.331938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:36.332938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:36.333938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:36.334941 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:36.338939 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:36.339939 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:36.342937 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:37.982038 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:37.984034 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:37.986033 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:37.988035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:37.989035 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:37] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:38] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:38] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:38] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:49.959550 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:49.963549 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:49.964552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:49.968553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:49.972553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:49.975564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:49.980558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:29:51.562903 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:51.564899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:51.565899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:51.567902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:29:51.569901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:51] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:51] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:51] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:29:51] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:30:05.855326 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:06.566167 : Update_SessionFormation_Doc_Automatic_Setup - Cette session est complètement facturée. Modification impossible
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:06] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:30:17.063606 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:17.066609 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:17.069605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:17.072609 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:17.074604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:30:17.080607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:17.081608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-07 17:30:18.778513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:18.780513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:18.781515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:18.783514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-07 17:30:18.785611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:18] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:18] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:18] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [07/Jul/2025 17:30:18] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ 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_queu\\email_queu_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:2025-07-07 19:44:37.460418 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-07 19:44:37.460418 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-07 19:44:37.460418 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-07 19:44:37.460418 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-07 19:44:37.460418 : ++ 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_queu\\email_queu_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:2025-07-07 19:44:54.629321 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-07 19:44:54.629321 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-07 19:44:54.629321 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-07 19:44:54.629321 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-07 19:44:54.629321 : ++ 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_queu\\email_queu_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:2025-07-07 19:45:09.995500 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-07 19:45:09.995500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-07 19:45:09.995500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-07 19:45:09.995500 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-07 19:45:09.995500 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+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:2025-07-08 07:49:22.218831 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 07:49:22.219828 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 07:49:22.219828 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 07:49:22.219828 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 07:49:22.219828 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-08 07:49:31.566911 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 07:49:31.566911 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 07:49:31.566911 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 07:49:31.566911 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 07:49:31.566911 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 07:50:17.136493 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.143573 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.150577 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:50:17.224500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.232506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.238497 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.251499 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:50:17.286510 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:50:17.295508 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:50:17.303029 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:50:17] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:55:53.433972 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:55:53.436970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:55:53.448085 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:55:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1RD6XbAbmaEugrFTPoBGwg4u",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Cherif 0111",\n "phone": null,\n "tax_id": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2025,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1744473864,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_vaXkFdagOMe8ds message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:55:54] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:55:59.281388 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:55:59.284390 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:55:59.287389 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:55:59.295737 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:55:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:55:59] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 -
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1RD6XbAbmaEugrFTPoBGwg4u",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Cherif 0111",\n "phone": null,\n "tax_id": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2025,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1744473864,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_EWXogFggMfwGbQ message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:00] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:00.127399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:00.145684 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:11.341166 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:11.343885 : Security check : IP adresse '127.0.0.1' connected
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1OtUPMAbmaEugrFThoDKBIij response_code=404
+DEBUG:stripe:body='{\n "error": {\n "code": "resource_missing",\n "doc_url": "https://stripe.com/docs/error-codes/resource-missing",\n "message": "No such subscription: \'sub_1OtUPMAbmaEugrFThoDKBIij\'",\n "param": "id",\n "request_log_url": "https://dashboard.stripe.com/test/logs/req_Nj3Kwn3nMXI6RT?t=1751954171",\n "type": "invalid_request_error"\n }\n}\n' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_Nj3Kwn3nMXI6RT message='Dashboard link for request'
+INFO:stripe:error_code=resource_missing error_message="No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij'" error_param=id error_type=invalid_request_error message='Stripe API error received'
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_PiwFGatTspm9yu%27
+INFO:root:2025-07-08 07:56:13.978922 : strip_update_subscription_plan -Request req_Nj3Kwn3nMXI6RT: No such subscription: 'sub_1OtUPMAbmaEugrFThoDKBIij' - ERRORRRR AT Line : 1175
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:13] "POST /myclass/api/strip_update_subscription_plan/ HTTP/1.1" 200 -
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_PiwFGatTspm9yu%27 response_code=200
+DEBUG:stripe:body='{\n "object": "search_result",\n "data": [],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_Dxefy9mP75mgXC message='Dashboard link for request'
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '\n\n\n
\n\t\n\t\t

\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\tDev MySy Training
\n\t\t\t\t\t1 place du test
\n\t\t\t\t\t75009 Paris
\n\t\t\t\t\tFrance
\n\n\t\t\t\t
\n\n\n\t\t\t\t
\n\n\t\t\t\t\tFacture n° FACT_257000317\n\n\n\t\t\t\t
\n\t\t\t\t
\n\n\n\t\t\t\t
\n\n\t\t\t\t\t\n\t\t\t\t\t\tDate de facture: 08/07/2025 | \n\t\t\t\t\t\tDate échéance : 08/07/2025 | \n\t\t\t\t\t
\n\n\t\t\t\t
\n\n\t\t\t\t
\n\t\t\t\t\tOrigine : MySy_009LH-\n\t\t\t\t
\n\n\t\t\t\t
\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\tDescription | \n\t\t\t\t\t\t\tQuantité | \n\t\t\t\t\t\t\tPrix unitaire | \n\t\t\t\t\t\t\tMontant | \n\t\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tStandard | \n\t\t\t\t\t\t\t1 | \n\t\t\t\t\t\t\t299 | \n\t\t\t\t\t\t\t299.0 | \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\t\t\t\t\t
\n\t\t\t\t
\n\n\t\t\t\t
\n\n\t\t\t
\n\n\t\t\t
\n\t\t\t\t\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\tMontant HT: | \n\t\t\t\t\t\t299.0 | \n\t\t\t\t\t
\n\t\t\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\tTVA 20% : | \n\t\t\t\t\t59.800000000000004 | \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\tMontant TTC : | \n\t\t\t\t\t358.8 | \n\t\t\t\t
\n\t\t\t
\n\n\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\t\t\t
\n\n\n\n\t\t
\n\n\t
\n\t
\n\t\n\n\n'
+ dest = <_io.BufferedRandom name='./Invoices/invoice_FACT_257000317.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'https://img.mysy-training.com/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='https', netloc='img.mysy-training.com', path='/MYSY-LOGO-BLUE.png', params='', query='', fragment=''), 'https'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': 75.0, 'height': None, 'align': None, 'id': None}
+DEBUG:xhtml2pdf.files:Sending request for 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png' with httplib
+DEBUG:xhtml2pdf.files:Uri parsed: 'https://img.mysy-training.com/MYSY-LOGO-BLUE.png'
+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: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 0 has width 0.0
+DEBUG:xhtml2pdf.tables:None
+DEBUG:xhtml2pdf.tables:Col 1 has width 0.0
+DEBUG:xhtml2pdf.tables:None
+DEBUG:xhtml2pdf.tables:Col 2 has width 0.0
+DEBUG:xhtml2pdf.tables:None
+DEBUG:xhtml2pdf.tables:Col 3 has width 0.0
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'tEXt' 41 25
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 78 6645
+INFO:root:2025-07-08 07:56:16.349091 : convertHtmlToPdf On va deplacer de la facture vers /home/mysy_data/mysy_invoices_dev/
+DEBUG:paramiko.transport:starting thread (client mode): 0x48b4d550
+DEBUG:paramiko.transport:Local version/idstring: SSH-2.0-paramiko_3.1.0
+DEBUG:paramiko.transport:Remote version/idstring: SSH-2.0-OpenSSH_8.4p1 Debian-5+deb11u5
+INFO:paramiko.transport:Connected (version 2.0, client OpenSSH_8.4p1)
+DEBUG:paramiko.transport:=== Key exchange possibilities ===
+DEBUG:paramiko.transport:kex algos: curve25519-sha256, curve25519-sha256@libssh.org, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14-sha256, kex-strict-s-v00@openssh.com
+DEBUG:paramiko.transport:server key: rsa-sha2-512, rsa-sha2-256, ssh-rsa, ecdsa-sha2-nistp256, ssh-ed25519
+DEBUG:paramiko.transport:client encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com
+DEBUG:paramiko.transport:server encrypt: chacha20-poly1305@openssh.com, aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, aes256-gcm@openssh.com
+DEBUG:paramiko.transport:client mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1
+DEBUG:paramiko.transport:server mac: umac-64-etm@openssh.com, umac-128-etm@openssh.com, hmac-sha2-256-etm@openssh.com, hmac-sha2-512-etm@openssh.com, hmac-sha1-etm@openssh.com, umac-64@openssh.com, umac-128@openssh.com, hmac-sha2-256, hmac-sha2-512, hmac-sha1
+DEBUG:paramiko.transport:client compress: none, zlib@openssh.com
+DEBUG:paramiko.transport:server compress: none, zlib@openssh.com
+DEBUG:paramiko.transport:client lang:
+DEBUG:paramiko.transport:server lang:
+DEBUG:paramiko.transport:kex follows: False
+DEBUG:paramiko.transport:=== Key exchange agreements ===
+DEBUG:paramiko.transport:Kex: curve25519-sha256@libssh.org
+DEBUG:paramiko.transport:HostKey: ssh-ed25519
+DEBUG:paramiko.transport:Cipher: aes128-ctr
+DEBUG:paramiko.transport:MAC: hmac-sha2-256
+DEBUG:paramiko.transport:Compression: none
+DEBUG:paramiko.transport:=== End of kex handshake ===
+DEBUG:paramiko.transport:kex engine KexCurve25519 specified hash_algo
+DEBUG:paramiko.transport:Switch to new keys ...
+DEBUG:paramiko.transport:Attempting password auth...
+DEBUG:paramiko.transport:Got EXT_INFO: {'server-sig-algs': b'ssh-ed25519,sk-ssh-ed25519@openssh.com,ssh-rsa,rsa-sha2-256,rsa-sha2-512,ssh-dss,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,sk-ecdsa-sha2-nistp256@openssh.com,webauthn-sk-ecdsa-sha2-nistp256@openssh.com'}
+DEBUG:paramiko.transport:userauth is OK
+INFO:paramiko.transport:Authentication (password) successful!
+DEBUG:paramiko.transport:[chan 0] Max packet in: 32768 bytes
+DEBUG:paramiko.transport:Received global request "hostkeys-00@openssh.com"
+DEBUG:paramiko.transport:Rejecting "hostkeys-00@openssh.com" global request from server.
+DEBUG:paramiko.transport:[chan 0] Max packet out: 32768 bytes
+DEBUG:paramiko.transport:Secsh channel 0 opened.
+DEBUG:paramiko.transport:[chan 0] Sesch channel 0 request ok
+INFO:paramiko.transport.sftp:[chan 0] Opened sftp connection (server version 3)
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/home/mysy_data/mysy_invoices_dev/invoice_FACT_257000317.pdf', 'wb')
+DEBUG:paramiko.transport.sftp:[chan 0] open(b'/home/mysy_data/mysy_invoices_dev/invoice_FACT_257000317.pdf', 'wb') -> 00000000
+DEBUG:paramiko.transport.sftp:[chan 0] close(00000000)
+DEBUG:paramiko.transport.sftp:[chan 0] stat(b'/home/mysy_data/mysy_invoices_dev/invoice_FACT_257000317.pdf')
+INFO:root:2025-07-08 07:56:17.027260 : convertHtmlToPdf DEPLACEMENT DE ./Invoices/invoice_FACT_257000317.pdf VERS /home/mysy_data/mysy_invoices_dev/invoice_FACT_257000317.pdf EST OKKKK
+INFO:paramiko.transport.sftp:[chan 0] sftp session closed.
+DEBUG:paramiko.transport:[chan 0] EOF sent (0)
+INFO:root:2025-07-08 07:56:17.029298 : Impression facture N° FACT_257000317 OK
+DEBUG:paramiko.transport:EOF in transport thread
+INFO:root:2025-07-08 07:56:17.033256 : Impression de mettre à jour la date de la prochaine facturation de la commande : ° MySy_009LH-
+INFO:root:2025-07-08 07:56:17.162912 : UpdataPartnerRankingClass - Le RANKING de 16 ont été mise à jour avec la valeur {'display_rank': '20', 'date_update': '2025-07-08 07:56:17.043530'}
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:17] "POST /myclass/api/createOrder/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:17.170881 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:17] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:20.633066 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:20.709725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:20.752725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:20.761728 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 07:56:20.811135 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:20.859128 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 07:56:20.890509 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card
+DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card
+INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_PiwFGatTspm9yu/payment_methods?type=card response_code=200
+DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1RD6XbAbmaEugrFTPoBGwg4u",\n "object": "payment_method",\n "allow_redisplay": "unspecified",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "Cherif 0111",\n "phone": null,\n "tax_id": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "display_brand": "visa",\n "exp_month": 11,\n "exp_year": 2025,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "regulated_status": "unregulated",\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1744473864,\n "customer": "cus_PiwFGatTspm9yu",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_PiwFGatTspm9yu/payment_methods"\n}' message='API response body'
+DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_KeR8W1qXzSY7by message='Dashboard link for request'
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 07:56:25] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\lms_chamilo\\mysy_lms.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:2025-07-08 08:08:51.241509 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 08:08:51.241509 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 08:08:51.241509 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 08:08:51.242510 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 08:08:51.242510 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+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:2025-07-08 09:36:05.190224 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 09:36:05.191215 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 09:36:05.191215 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 09:36:05.192228 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 09:36:05.192228 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-08 09:37:35.440551 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 09:37:35.441551 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 09:37:35.442552 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 09:37:35.442552 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 09:37:35.443552 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 10:23:08.208811 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.213338 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.220470 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.259589 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.282608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.301608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:08.395279 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:08.402339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:08.427379 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.432260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:08.444264 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:14.071991 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.080981 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.089989 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:14.116976 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:14.639998 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.646018 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.657013 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.669097 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.681300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:14.688719 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:14.714925 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:14] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:19.510355 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:19.513362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:19.517363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:23:19.527938 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:19] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:19] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:21.103489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:21] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:45.633321 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:45] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:23:45.697298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:23:45] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:25:11.852064 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:25:11.859966 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:25:11.868966 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:25:11] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:25:11.917394 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:25:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:25:11] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:26:40.218918 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:26:40.228916 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:26:40.239898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:26:40] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:26:40.258935 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:26:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:26:40] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:26:55.820472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:26:55] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:07.978247 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:08.013816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:08.054035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:08.077152 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:08.130449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:08] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:08] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:08.926867 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:08.962964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:09.050025 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.076546 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.114578 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:09.211934 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:09.247995 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.330705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:09.386756 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:09.426646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.461424 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:09] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 10:27:09.490937 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.519746 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.529940 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:09.546835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.615336 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.635334 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.648340 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.662381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.678356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.693362 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.725902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.734902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.774003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.793916 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.827539 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.849547 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:27:10.877543 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.889656 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:27:10.893561 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:27:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:29:28.889081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:29:28.902211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:29:28.912953 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:29:28] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:29:28.935474 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:29:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:29:28] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:29:49.000217 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:29:49] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:29:49.037014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:29:49] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:02.774992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:02.784675 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:02.809218 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:02.810217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:02.828743 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:02] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:03] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:03] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 10:30:03.950463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:03.986535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:03.997042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.026070 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.048072 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.057454 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.087459 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.093455 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.161001 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.200001 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.223120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.249554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.271586 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.281588 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.296658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.306157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.323168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.335199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.349275 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.362262 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.379278 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.408266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.425279 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.443419 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.461833 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.488438 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.493389 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:04.500052 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.519896 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:04.557644 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.458010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.462212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.472461 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.473466 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.477990 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 10:30:15.860271 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.863078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.868521 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.877068 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.881070 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.898139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.907235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.919137 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.934142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.946144 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.953143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.970255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.975362 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.982589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:15.988590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:15.992589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.003591 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.012701 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.022605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.032702 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.043827 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.055003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.067022 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:16.080794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:16.088850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.102866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.117877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:30:16.123883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.141870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:30:16.156876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:30:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:33:56.332006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:33:56] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:33:56.363428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:33:56] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:03.724580 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:03.729697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:03.731698 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:03.737697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:03.742725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:03] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:03] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:03] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.620903 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.625903 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.633901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.644907 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.647908 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.657912 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.673486 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.683457 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.689457 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.694481 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.699494 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.705490 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.713498 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.719551 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.731517 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.736492 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.751502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.762491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.768499 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.773488 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.780495 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.786501 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.793001 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.798010 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.806007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.817008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.824014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.837241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:34:04.851255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:34:04.857257 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:34:04] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:36:25.158430 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:36:25.167426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:36:25.178334 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:36:25] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:36:25.209978 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:36:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:36:25] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:36:36.476079 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:36:36] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:36:36.513826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:36:36] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:23.763607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:23] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:23.805864 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:23] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:32.738762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:32.744148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:32.756144 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:32.759145 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:32.796727 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:32] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:32] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:32] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:32] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 10:37:33.155183 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.156183 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.160186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.169715 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.177739 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.181726 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.192246 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.203240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.227266 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.230788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.245323 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.264325 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.284337 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.291905 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.295915 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.319908 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.327014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.339914 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.351009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.360911 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.371929 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.377929 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.385460 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.419111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.430101 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.441208 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:37:33.450141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.462676 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.475759 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:37:33.490524 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:37:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:41:22.858853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:41:22.867860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:41:22.872863 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:41:22.943047 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:22] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:22] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:41:41.845695 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:41:41.852717 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:41:41.863729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:41] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:41:41.892721 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:41:41] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:43:09.579187 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:43:09.583199 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:43:09.587194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:09] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:43:09.599189 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:09] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:43:41.017046 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:43:41.022404 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:43:41.027404 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:43:41.041453 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:41] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:43:41] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:46:38.438987 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:46:38.442494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:46:38.455612 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:46:38] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:46:38.461618 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:46:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:46:38] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:46:43.747409 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:46:43] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:49:27.673324 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:49:27.677322 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:49:27.682420 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:49:27] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:49:27] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:49:27.727724 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:49:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:49:58.161478 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:49:58] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:51:34.921593 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:51:34.925608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:51:34.930603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:51:34] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:51:34.942129 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:51:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:51:34] "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\\base_partner_catalog_config.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:2025-07-08 10:53:31.641674 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 10:53:31.642769 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 10:53:31.642769 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 10:53:31.642769 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 10:53:31.642769 : ++ 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\\base_partner_catalog_config.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:2025-07-08 10:54:12.839018 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 10:54:12.840019 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 10:54:12.840019 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 10:54:12.840019 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 10:54:12.841017 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 10:56:37.369891 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:56:37.374424 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:56:37.378432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:56:37] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:56:37.417762 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:56:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:56:37] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:57:50.134133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:57:50.145137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:57:50.159138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:57:50] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:57:50.207202 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:57:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:57:50] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:57:55.089909 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:57:55] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:58:07.983781 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:58:07.987807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:58:07.991817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:58:08.006883 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:58:08.096441 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:58:08.100448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 10:58:08.110440 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 10:58:08.124447 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 10:58:08] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:17.246484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:17.248479 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:17.250480 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:17] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:17.258481 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:17] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:31.617359 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:31.619370 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:31.622369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:31.632369 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:31.748997 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:31.750995 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:31.753995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:31.761996 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:31] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:33.931705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:33] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:51.425623 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:51] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:51.488463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:51] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:57.942824 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:57.944374 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:57.946982 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:57.955968 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:58.069333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:58.071361 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:00:58.074335 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:58] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:00:58.084335 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:00:58] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:01:03.273955 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:01:03] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:09.062257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:03:09.064260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:03:09.066261 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:09] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:09.076278 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:09] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:12.440121 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:12] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:35.643295 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:35] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:35.682782 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:35] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:52.174666 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:52] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:03:52.214835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:03:52] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:18.636987 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:18.639999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:18.641060 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:18.643021 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:18.645000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:18] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:18] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:18] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.016274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.019274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.022273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.026276 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.028276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.032337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.034339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.037337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.038850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.043858 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.046858 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.048859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.054859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.057861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.060858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.064857 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.065858 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.068857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.070860 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.074870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.079874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.082860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.083858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.088860 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.092863 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:09:19.094857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.098859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.102862 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.106859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:09:19.110857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:09:19] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.153634 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.155635 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.158636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.160636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.163640 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.164653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.166640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.168642 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.170640 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.173640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.177166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.180161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.182162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.187169 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.188163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.194168 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.196162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.199173 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.201172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.204173 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.206173 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.207170 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.212172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.213172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:14:29.216499 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.220482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.223482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.227603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.230604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:14:29.233104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:14:29] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.592768 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.594763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.595763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.596765 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.605281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.861555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.863553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.864554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.868555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.870554 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.872554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.876068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.878068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.881068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.884106 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.887071 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.889080 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.892077 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.895078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.899077 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.901082 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.903345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.906345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.909340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.912340 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.914344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.917340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.919341 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.922341 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.926342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.929342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.932343 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.936347 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:11.939342 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:11.942340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.121758 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.123761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.125760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.128762 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.133761 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.137758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.139762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.146768 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.149761 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.153760 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.154763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.156758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.161763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.162762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.166770 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.169118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.173125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.178132 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.181229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.185224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.188223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.193224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.197229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.200222 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.202225 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.205223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.209223 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.210225 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:15:35.213224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:15:35.215223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:15:35] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:53.835529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:53.837536 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:53.838686 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:53.839836 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:53.841837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:53] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:53] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:53] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.081164 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.083163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.085164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.088164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.091164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.093166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.096677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.098680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.102679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.106680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.107677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.109677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.114679 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.116728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.118682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.120677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.122694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.124677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.126677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.128677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.131677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.132677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.136677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.139676 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.143678 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.145677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.149679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.151677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:20:54.153679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:20:54.156677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:20:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.821782 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.824293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.827294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.830294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.834292 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.835292 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.837292 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.839298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.841297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.842297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.843297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.846298 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.848296 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.849296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.852297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.853801 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.855807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.856807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.858805 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.860807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.863806 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.863806 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.864806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.866807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.869806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.872809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.873807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:21:32.874808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.876809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:21:32.878808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:21:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:25:52.444159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:25:52.446160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:25:52.448159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:25:52] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:25:52] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:25:52.465234 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:25:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:28:04.210360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:28:04.212358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:28:04.218357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:28:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:28:04.221369 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:28:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:28:04] "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\\base_partner_catalog_config.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:2025-07-08 11:29:05.113566 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:29:05.113566 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:29:05.113566 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:29:05.113566 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:29:05.113566 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 11:29:41.616147 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:29:41.621188 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:29:41.623189 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:29:41] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:29:41.664373 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:29:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:29:41] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:30:13.775092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:30:13.779120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:30:13.783121 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:30:13] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:30:13] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:30:13.824108 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:30:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:46:22.796019 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:46:22] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:46:34.520788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:46:36.514136 : Add_Update_Partner_Catalog_Pub_Config Le champ 'affiche_contact' n'est pas autorisé
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:46:36] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:47:04.707807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:47:04.710816 : Add_Update_Partner_Catalog_Pub_Config Le champ 'affiche_contact' n'est pas autorisé
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:47:04] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:48:04.549550 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:48:04.552549 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:48:04.556554 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:48:04.564551 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:04] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:04] "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\\base_partner_catalog_config.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:2025-07-08 11:48:18.031625 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:48:18.031625 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:48:18.031625 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:48:18.032624 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:48:18.032624 : ++ 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\\base_partner_catalog_config.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:2025-07-08 11:48:34.114412 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:48:34.114412 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:48:34.114412 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:48:34.114412 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:48:34.114412 : ++ 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\\base_partner_catalog_config.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:2025-07-08 11:48:45.926893 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:48:45.926893 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:48:45.926893 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:48:45.927893 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:48:45.927893 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 11:48:46.160869 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:46] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:48:50.697284 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:50] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:48:50.736950 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:48:50] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:02.770776 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:02.771775 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:02.773774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:02.778774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:02.778774 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:02] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:02] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:02] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 11:49:03.036640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.041182 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.047196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.054190 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.061700 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.069709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.075705 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.078708 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.084707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.091711 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.095708 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.102734 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.106718 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.110714 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.120233 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.123237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.137897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.138897 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.145893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.153141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.160136 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.167648 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.171653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.177649 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.181648 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.185652 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.189659 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.193648 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:49:03.196653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:49:03.200678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.515826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.517826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.519825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.521826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.523826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.525825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.527825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.529825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.530826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.533825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.535825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.538830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.539830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.541870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.543875 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.546874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.547875 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.549874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.553381 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.555781 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.557781 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:09.557781 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.562921 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.565947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.567947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.569947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.571947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.574449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.576471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:09.578448 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:09] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.645012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.646012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.646012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.648012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.648012 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.916112 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.918116 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.921113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.922113 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.923113 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.925113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.930112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.935115 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.936116 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.939114 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.942112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.945113 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.946112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.948119 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.951112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.953114 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.956113 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.958112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.961117 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.962118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.965118 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.966119 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.968122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.972120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.974624 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.975630 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.979629 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.981631 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:16.982628 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:16.983629 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:16] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.438984 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.443986 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.448984 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.457008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.460881 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.466394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.467944 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.469487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.470554 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.471586 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.472702 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.477087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.479154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.481813 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.485299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.487459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.489458 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.492460 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.495458 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.497457 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.499458 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.502457 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.505463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.506462 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.509465 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.510460 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.512487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:28.516461 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.517991 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:28.519007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:28] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.192316 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.194318 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.196316 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.197316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.199316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.450794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.453796 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.455793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.459793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.465796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.470794 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.473794 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.478794 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.481792 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.484796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.487793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.491792 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.493795 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.497794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.500796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.505802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.508246 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.510883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.513894 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.517678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.520691 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.524198 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.527664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.529680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.532183 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:33.535199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.537195 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.540191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.543468 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:33.545477 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:33] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.160899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.162898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.165898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.166898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.171898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.174898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.176898 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.180899 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.182899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.183897 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.186897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.186897 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.188901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.189900 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.192901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.193901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.194901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.196902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.198902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.200901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.201901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.205680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.208680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.209681 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.210680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.212680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.215680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.217187 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:50:51.218192 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:50:51.221194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:50:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:43.895055 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:43.898056 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:43.900055 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:43.901056 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:43.903056 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:43] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:43] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:43] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.275210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:44.276716 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.279723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.281726 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:44.283730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.287731 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.290727 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.293728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.296229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.298235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.300240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.302239 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.305244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.307244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.309240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.312243 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.314755 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.316761 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.320273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.324273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.327274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:44.329276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.331276 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:44.333280 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.336272 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.338279 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.342272 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:52:44.343274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.345271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:52:44.348271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:52:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\prj_common.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:2025-07-08 11:55:26.548943 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:55:26.548943 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:55:26.548943 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:55:26.548943 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:55:26.548943 : ++ 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\\prj_common.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:2025-07-08 11:55:52.144003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:55:52.145003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:55:52.145003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:55:52.145003 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:55:52.145003 : ++ 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\\prj_common.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:2025-07-08 11:56:08.951264 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-08 11:56:08.951264 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-08 11:56:08.951264 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-08 11:56:08.951264 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-08 11:56:08.951264 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-08 11:56:15.073290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:15.075291 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:15.080274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:15.086280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:15.094289 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-08 11:56:15.420782 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:15.423782 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.427783 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.430785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.434808 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.441788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.446789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.459056 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.465052 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.469053 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.475054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.483050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.491051 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.499051 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.509055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.516054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.527564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.540585 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.547079 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.554127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.570087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.590103 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.607102 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.618087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.629090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.637131 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.648195 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.654196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.666195 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:15.680194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.925042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:58.927047 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.931050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.945059 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.969232 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.978211 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:58.980214 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.986230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.989210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:58.997234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:58] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.004231 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.009211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.015211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.018214 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:59.021214 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.025215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.032211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.035220 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.040243 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.042216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.045219 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.047779 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:59.049820 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.051788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:59.053789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.054788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.057788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 11:56:59.057788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.060788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 11:56:59.062788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 11:56:59] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:36.563521 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:36] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:36.614164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:36] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.140442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.143450 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.144450 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.145450 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.147451 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.410227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.412228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.415233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.417228 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.419229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.423226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.425228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.428227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.430227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.433227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.434227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.437227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.439227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.444231 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.445230 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.446229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.449227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.452228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.454228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.457229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.459230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.462227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.466234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.470233 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.472234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.474234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.476235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.478742 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:06:47.481752 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:06:47.484748 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:06:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:07:10.937752 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:07:10.939752 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:07:10.940753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:07:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:07:10.943754 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:07:10] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:07:10] "POST /myclass/api/get_class_for_partner_catalog/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:07:10] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:07:10.983273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:07:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:25.162909 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:25] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:25.190915 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:25] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.023439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.025442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.026439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.027439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.029438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.268994 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.269998 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.272364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.273364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.275869 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.279877 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.282383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.282904 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.284910 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.287002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.292149 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.294155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.297154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.301156 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.302156 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.306155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.308662 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.312670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.315671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.317670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.322669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.325671 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.327669 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 12:08:31.330669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.332668 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.335669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.337669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.340668 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.342668 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 12:08:31.344670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 12:08:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.211690 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.213691 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.214690 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.216708 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.218707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.458837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.480160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.483165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.486686 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.490693 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.496114 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.499666 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.504663 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.507689 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.513134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.517662 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.519668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.523668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.527684 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.531693 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.533690 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.537846 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.543366 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.546430 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.550950 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.556460 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.559978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.562977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.563977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.567806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.569805 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:03:40.573322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.576340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.579854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:03:40.583856 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:03:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:02.315658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:02.379044 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.381810 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.385358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.389885 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:02.403921 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:02.470831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.473831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.476141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.480185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.485207 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:04:02.488730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:07.529979 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:04:44.821879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:04:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:24.348675 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:24.433866 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:24.436889 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:24.439409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:24.441419 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:24.446478 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:24.448443 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:26.642150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:26] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.811914 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.813911 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.816438 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.818957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.823960 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.829487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.836513 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.842596 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.850133 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.853142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.859663 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:27.861663 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:27.867698 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:27] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:28.177959 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:28.180967 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:28] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:28] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:48.463364 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.466532 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.470534 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.473049 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.477572 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:48.482571 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.484573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:48.491886 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:48.500789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.505293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:05:48.510326 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:05:48.513700 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:05:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:06:13.891647 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:13.894646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:13.898748 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:13.903258 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:06:13.909814 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:13.912811 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:13.918189 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:06:45.962515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:45.965513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:45.967566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:45.969564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:06:45.972563 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:45] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:45] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:06:45] "POST /myclass/api/Get_List_Groupe_Inscrit_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:07:05.518819 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:07:13.947881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:13.951895 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:13.953892 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:13.956414 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:13.960300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:13] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:07:20.759785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:07:48.778906 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:48.781909 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:48.783905 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:48.788958 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:07:48.790971 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:48] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:48] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:48] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:48] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:07:49] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:08:56.051893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:08:56] "POST /myclass/api/Update_SessionFormation_Doc_Automatic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:08:56.101992 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:08:56] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:17.131787 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:17.133789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:17] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:19.122945 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:19] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:23.517667 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:23] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:23.686431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:32.084717 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:32.086728 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:32.088736 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:32.092737 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:32.095242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:32] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:32] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:32] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:32] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:32] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:40.396508 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:56.750558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:56.755681 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:56.762030 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:56.764569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:09:56.766582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:56.770588 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 14:09:56.772583 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:09:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:10:01.361938 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:10:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 14:10:04.021163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 14:10:04] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:36.818417 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:36.822382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:36.824891 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:36.827894 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:36.831890 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:36.839893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:36.844894 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:40.031185 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:40] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:48.051098 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:48.055269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:48.062274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:48.064267 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:35:48.067263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:48.071787 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:48.076791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:35:49.887078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:35:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.245391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.247392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.248391 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.254391 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.348274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.350274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.352275 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.353273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.357274 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.359276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.365278 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.366275 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.369276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.374276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:18.377281 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:18.381282 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:23.483137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:23.485658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:23.488720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:23.492730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:23.495730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:23.498731 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:36:23.499730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:36:25.988323 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:36:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:37:56.349938 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:37:56.353942 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:37:56.356935 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:37:56.359941 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:37:56.362935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:37:56.371935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:37:56.375936 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:37:58.361672 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:37:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.229704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.235703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:40:03.237703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:40:03.239720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:40:03.241703 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.245704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.248702 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.251704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.255707 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.258709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:40:03.261709 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:40:03.263710 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:40:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.088859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:33.092871 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:33.094871 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:33.097873 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:33.099870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.104380 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.107391 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.114388 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.119389 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.123388 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:33.126396 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:33.130390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:49.798489 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:49.802485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:49.806487 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:49.807487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:49.811486 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:49.815490 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:49.818494 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:51.882954 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:58.293079 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:58.294591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:58.297591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:58.299593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:42:58.303595 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:58.305591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:42:58.310790 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:42:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:00.083086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:06.529790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:06.534789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:06.537788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:06.539789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:06.543789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:06.544788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:06.548788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:06] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:08.460222 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:08] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.310541 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.394646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.396647 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.397646 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.400648 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.401669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.406646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.411118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.414234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.416234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.420235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.423235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.424236 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.425236 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.430235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.434234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.437237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.439236 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.442234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.446241 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.449239 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.456241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:43:44.458759 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.460264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:43:44.462269 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:43:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.523348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.616378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.618376 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.620383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.622372 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.624378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.630378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.635379 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.644380 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.651384 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:43.652379 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.666382 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:43.672380 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.038543 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.142133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.144134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.146133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.149133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.151134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.154133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.155134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.159133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.160133 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.165133 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.169163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.174134 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.175133 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.177132 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.183134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.187144 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.189141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.190139 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.194139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.195140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.196141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.197140 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:44:46.369775 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:44:46.370772 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:44:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.418957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.421982 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.425958 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.429951 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.432959 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.446962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.449467 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.453986 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.475992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:07.477992 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.484509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:07.486510 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:43.322825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.323866 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.327876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:43.337088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.339088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:43.353089 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.356090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:43.367088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.369087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:46:43.379088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.381088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:46:43.383090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:46:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.409590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.412589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.422602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.425601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.427597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.430114 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.437117 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.442118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.449113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.455118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:47:47.461116 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:47:47.465117 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:47:47] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.956497 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.968010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.971036 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.973008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.976011 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.978008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.982008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.986009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.989008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:16.993015 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.995010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:16.998014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:41.360634 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.362634 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:41.370634 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.374709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:41.384641 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.393155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:41.396155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.402155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.403155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:48:41.406155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.408156 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:48:41.411157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:48:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.809765 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:49:12.814773 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:49:12.817774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:49:12.820777 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.825283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:49:12.829296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.834297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.839294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.847292 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.851292 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:49:12.856295 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:49:12.859294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:49:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.518790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.520791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.524793 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.527793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.530791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.532789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.537793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.545790 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.549791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.553789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:00.557788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:00.561818 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.832148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:27.836147 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:27.838147 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.841148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:27.843149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.846147 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:27.848150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.854148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:50:27.855148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.858149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.862150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:50:27.866148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:50:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:51:24.372882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.375391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.377393 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.378392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.380391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.384390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:51:24.391392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:51:24.396391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.398391 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.400390 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 17:51:24.402392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 17:51:24.404392 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 17:51:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:32.517335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:32.519333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:32.521335 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:32.529333 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:33.001271 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.004271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:33.007384 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.016477 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:33.329937 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.332935 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.335936 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.338935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:33.343943 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:01:33.346949 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:01:33.350945 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:01:33] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.272890 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.274928 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.276889 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.284890 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.368639 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.370640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.373640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.375651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.378641 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.380640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.382927 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.386939 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.390939 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.393939 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.396938 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.401448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.404972 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.408049 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.412050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.418051 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.421049 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.423054 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.425053 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.430054 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.433055 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.437558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:21.441590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:21.444596 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:21] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.895018 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.977360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:33.978360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:33.979502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:33.982503 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:33.983502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.988502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.992502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.993502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:33.996543 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-08 18:02:33.999540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:34.001562 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-08 18:02:34.004540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [08/Jul/2025 18:02:34] "POST /myclass/api/GetAllValideSessionPartner_List/ 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:2025-07-09 10:15:30.020092 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 10:15:30.020092 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 10:15:30.024728 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 10:15:30.024728 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 10:15:30.025776 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-09 10:16:54.366862 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 10:16:54.366862 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 10:16:54.369861 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 10:16:54.369861 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 10:16:54.370863 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 10:20:49.551969 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.560522 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.569058 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.582600 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:49.623654 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:49.653650 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.667670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:49.682220 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.695228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:49.710223 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:49.722223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:49] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:53.087708 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:53.090706 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:20:53.101719 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:53.130752 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:53] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:20:54.639986 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:20:54] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:14.814409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:14.821520 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:14.828517 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:14.831506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:14.838508 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:14] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:14] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-09 10:21:15.318380 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.327494 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.334493 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.350494 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.370627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.384601 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.392499 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.400604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.405509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.427070 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.444309 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.458307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.481319 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.493397 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.503419 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.513313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.527438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.538433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.553442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.565436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.580430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.594439 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:15.603431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.621951 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.640976 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.654544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.679060 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.703581 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.722103 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:15.737111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:44.321101 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:44.331042 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:44.338112 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:44.365001 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:45.124622 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:45.133722 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:45.142621 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:45.154638 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:45.172642 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 10:21:45.188374 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 10:21:45.204419 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 10:21:45] "POST /myclass/api/Get_List_Survey_with_filter/ 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:2025-07-09 12:40:13.406770 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:40:13.406770 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:40:13.406770 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:40:13.407773 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:40:13.407773 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-09 12:40:30.162287 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:40:30.163285 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:40:30.163285 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:40:30.163285 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:40:30.163285 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 12:48:46.889728 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:46.894727 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:46.907726 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:48:47.235371 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:48:47.679146 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:47.685152 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:47.691140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:47.701149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:48:47.720136 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:48:47.734147 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:48:47.742661 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:48:47] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:11.850182 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.861182 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.869190 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.878189 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.896712 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:11.939292 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.945340 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.953246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.957245 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:11.969365 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:11.990495 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:12] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:12] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:15.627786 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:15.677728 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:15.684713 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:15.693245 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:15.709235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:15.713243 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:15.717239 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:18.511156 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:18.571624 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:18.575726 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:18.582360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 12:50:18.592876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:18.611390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:18.632397 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:18] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:50:28.428571 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:50:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 12:52:08.834932 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 12:52:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 12:55:08.516367 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:55:08.516367 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:55:08.516367 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:55:08.516367 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:55:08.516367 : ++ 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\\partner_client.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:2025-07-09 12:55:43.856545 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:55:43.856545 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:55:43.856545 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:55:43.856545 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:55:43.856545 : ++ 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\\partner_client.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:2025-07-09 12:56:03.097122 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:56:03.097122 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:56:03.097122 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:56:03.097122 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:56:03.097122 : ++ 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\\partner_client.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:2025-07-09 12:56:36.067493 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:56:36.067493 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:56:36.067493 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:56:36.067493 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:56:36.067493 : ++ 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\\partner_client.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:2025-07-09 12:57:47.507250 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:57:47.507250 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:57:47.507250 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:57:47.507250 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:57:47.507250 : ++ 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\\partner_client.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:2025-07-09 12:58:28.958293 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:58:28.958293 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:58:28.958293 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:58:28.958293 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:58:28.958293 : ++ 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\\partner_client.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:2025-07-09 12:59:08.863562 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:59:08.863562 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:59:08.863562 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:59:08.863562 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:59:08.863562 : ++ 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\\partner_client.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:2025-07-09 12:59:43.124856 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 12:59:43.124856 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 12:59:43.124856 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 12:59:43.124856 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 12:59:43.124856 : ++ 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\\partner_client.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:2025-07-09 13:00:35.820662 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:00:35.820662 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:00:35.820662 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:00:35.820662 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:00:35.820662 : ++ 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\\partner_client.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:2025-07-09 13:01:44.937381 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:01:44.937381 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:01:44.938382 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:01:44.938382 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:01:44.938382 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 13:01:45.392816 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:01:45.402929 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:01:45.410567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:01:45.421694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:01:45.433687 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:01:45.438695 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:01:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:05:36.257274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:05:48.256261 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.258260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.261260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.263261 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.265269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.269261 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:48.273260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:05:48.278263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:48] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:05:54.438301 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:54.441301 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:54.444304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:54.446306 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:05:54.448299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:05:54.456316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:05:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:06:14.564272 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:06:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:06:21.250341 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:06:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:07:39.816775 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:07:39.820307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:07:39.840105 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:07:39.845116 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:07:39.850105 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:07:39.872123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:07:39] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:08:06.331737 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:08:06.335743 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:08:06.340252 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:08:06.345504 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:08:06.350500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:08:06.358505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:08:06] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:09:37.483447 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:37.488448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:37.491449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:09:37.516445 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:09:37.584602 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:09:41.650378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:41.653378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:41.655388 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:41.658385 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:09:41.662385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:09:41.671908 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:09:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:10:55.403517 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:10:55] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:10:55.638095 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:10:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:11:03.525218 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:11:03.528215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:11:03.538217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:11:03.544224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:11:03.550216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:11:03.558217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:11:03.564216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:11:03.573213 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:11:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:42.142775 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:42.147294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:42.151294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:42.160319 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:42.236852 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:46.958514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:46.961511 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:46.965028 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:46.968553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:46.972550 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:46.980566 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:46.987551 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 13:16:46.992571 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:46.996558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:46] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:47.000557 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:47] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 13:16:49.998753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 13:16:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 13:17:52.264005 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:17:52.264005 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:17:52.264005 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:17:52.264005 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:17:52.264005 : ++ 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\\partner_client.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:2025-07-09 13:18:12.429553 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:18:12.429553 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:18:12.429553 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:18:12.429553 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:18:12.429553 : ++ 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\\partner_client.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:2025-07-09 13:18:35.750492 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:18:35.750492 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:18:35.750492 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:18:35.750492 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:18:35.750492 : ++ 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\\partner_client.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:2025-07-09 13:19:05.895413 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:19:05.895413 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:19:05.896411 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:19:05.896411 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:19:05.896411 : ++ 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\\partner_client.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:2025-07-09 13:26:45.552497 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 13:26:45.552497 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 13:26:45.553491 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 13:26:45.553491 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 13:26:45.553491 : ++ 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\\partner_client.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:2025-07-09 15:12:26.473445 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:12:26.473445 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:12:26.473445 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:12:26.473445 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:12:26.473445 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-09 15:12:38.292764 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:12:38.293765 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:12:38.293765 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:12:38.293765 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:12:38.293765 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:13:07.331817 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.339823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.342536 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.350560 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:07.402399 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:07.452035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.458136 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.465043 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.469034 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:07.478130 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:07.488140 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:08.572059 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:08.574072 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:08.585242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:08.608654 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:09.010248 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:09.018132 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:09.021139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:09.029130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:13:09.035141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:09.054791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:09.073768 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:09] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:13:13.103107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:13:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:15:32.572791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:15:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:15:45.090633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:15:45] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:15:45.144233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:15:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:15:53.237932 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:16:05.730853 : Controle_Add_Partner_Client_massLigne 2 Il a déjà un client avec le même adresse email.
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:16:05] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:16:58.664946 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:16:58.664946 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:16:58.664946 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:16:58.666024 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:16:58.666024 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:17:53.344662 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:17:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:18:21.406111 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:18:21.406111 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:18:21.406111 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:18:21.406111 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:18:21.406111 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:19:25.580159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:19:27.278029 : Controle_Add_Partner_Client_massLe champ 'contact_civilite' pour la ligne 2 est invalide. Valeur acceptées :['m', 'mme', 'neutre', '']
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:19:27] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:20:12.719542 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:20:12.719542 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:20:12.719542 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:20:12.719542 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:20:12.719542 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:21:08.434849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:21:09.754938 : Controle_Add_Partner_Client_massLe champ 'client_type_code' pour la ligne 2 est invalide.
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:21:09] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:22:52.618098 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:22:52.618098 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:22:52.618098 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:22:52.618098 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:22:52.618098 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:23:03.928691 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:23:05.733917 : Controle_Add_Partner_Client_massLe champ 'client_type_code' pour la ligne 2 est invalide.
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:23:05] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:24:21.861713 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:24:21.861713 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:24:21.861713 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:24:21.862729 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:24:21.862729 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:24:23.161893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:24:24.943432 : Controle_Add_Partner_Client_massLe champ 'client_type_code' pour la ligne 2 est invalide.
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:24:24] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:25:26.882364 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:25:26.883374 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:25:26.883374 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:25:26.883374 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:25:26.884371 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:27:48.808203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:27:48] "POST /myclass/api/Add_Partner_Client_mass/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:27:48.920621 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:27:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:28:02.315457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.319453 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.322451 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.330558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:28:02.335453 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.339468 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.343453 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:28:02.347481 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:02] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:28:13.035565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:13] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:28:13.080428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:28:13] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-09 15:29:53.928233 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:29:53.928233 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:29:53.928233 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:29:53.928233 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:29:53.928233 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:30:46.863365 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:46.879914 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:46.891950 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:46.961384 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:47.113196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:53.903298 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:53.910321 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:53.920265 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:53.941101 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:54.382828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:54.388156 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:54.394192 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:54.401178 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:54.408179 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:30:54.416191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:30:54.439635 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:30:54] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:31:08.960244 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:31:08.964256 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:31:08.968893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:31:08.971801 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:31:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:31:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:31:08] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:31:10.800698 : Get_List_CRM_Opportunite_no_filter -'NoneType' object has no attribute 'keys' - Line : 931
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:31:10] "POST /myclass/api/Get_List_CRM_Opportunite_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\\crm_opportunite.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:2025-07-09 15:32:43.140234 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:32:43.140234 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:32:43.141226 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:32:43.141226 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:32:43.141226 : ++ 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\\crm_opportunite.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:2025-07-09 15:34:50.733042 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 15:34:50.733042 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 15:34:50.733042 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 15:34:50.733042 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 15:34:50.733042 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 15:34:55.087853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:34:55.090751 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:34:55.092750 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:34:55.096995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:34:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:34:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:34:55] "POST /myclass/api/Get_List_Jury/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:34:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:00.150823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:00.154821 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:00.158342 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:00.163343 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:00] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:00] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:02.511526 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:02] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:16.361250 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:16] "POST /myclass/api/Get_Given_CRM_Opportunite/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:26.895788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:30.145316 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:30.149270 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:30] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:43.059717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Add_CRM_Opportunite/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:50.433030 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:50.440250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:50.447399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:50.454410 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:50.463488 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:50] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:53.347407 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:55] "POST /myclass/api/Update_CRM_Opportunite/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:55.767415 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:55.772417 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:55.777411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:55] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:55] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:59.695260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.698701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.700359 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.704172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.707219 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:59.714170 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:59.719572 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.723590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:35:59.729586 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:35:59.737590 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:35:59] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:36:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:36:02.595640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:36:02.600353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:36:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:36:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:37:23.349272 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.356264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.364996 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.375941 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.386989 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:37:23.407991 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.418180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.430284 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:37:23.446966 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:37:23.454973 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:23] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:37:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:40.972951 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:40.978585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:40.983478 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:41.001072 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:41.072080 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.075803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.081787 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.083798 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.091797 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:41.100808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.109693 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:41.124024 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:40:41.131731 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:40:41.144740 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:40:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.350636 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:45:16.354582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:45:16.358157 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:45:16.361206 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:45:16.369567 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.379458 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.386456 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.393454 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.401558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:45:16.408462 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:45:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:48:00.149952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.158948 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.166962 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.173964 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.182981 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.191653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:48:00.214245 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:48:00.226241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:48:00.240229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:48:00.248233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:48:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:50:17.231506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:50:17.233509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:50:17] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:50:17] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:53:07.935015 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:53:07.941551 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:53:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:53:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:15.758692 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.764694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.768708 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.776653 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.781649 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:15.794713 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:15.809705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:15.810703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.817696 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:15.822703 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:15] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:49.266166 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.272215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.278045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.285749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.294046 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:49.308670 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.314679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:49.323003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:49.332239 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:49.339356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_List_Partner_Produit_Service/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:55:56.507366 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:55:56.512364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:56] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:55:56] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:07.507210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:11.749622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:11] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:14.800168 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:20.275678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:20] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:30.401873 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:30] "POST /myclass/api/Add_Update_Partner_Order_Line/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:30.658406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:56:30.661409 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:30] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:30] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:43.831786 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:43] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:56:47.303755 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:56:47] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:57:07.944879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:57:07.949881 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:57:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:57:08] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:57:09.546574 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 15:57:09.552575 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:57:09] "POST /myclass/api/Get_Given_Partner_Invoice/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:57:09] "POST /myclass/api/Get_Given_Partner_Invoice_Lines/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 15:57:13.492647 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 15:57:13] "POST /myclass/api/Get_Action_Historique_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:28:21.584705 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:28:21.595702 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:28:21.598703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:28:21.600697 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:28:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:28:21] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:28:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:28:21] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:29:08.236839 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:29:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:30:43.646870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:30:43] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:30:51.154873 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:30:51.159876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:30:51] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:30:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.224280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.228286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.232287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.238298 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.240294 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.511831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.516834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.518829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.522829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.529336 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.531337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.538344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.544350 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.552860 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.560015 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.563014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.567014 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.571019 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.575019 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.581015 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.585029 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.590028 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.595024 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.598979 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.603507 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.606331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.610331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.616332 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.619339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.623331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.628331 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.631331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.635479 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:54.639489 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:54.642491 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:54] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:58.301047 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:58.379909 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.383159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.387159 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.390159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:58.406289 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:58.454482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.458496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.462495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.466013 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:34:58.470006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:34:58.477009 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:34:58] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:10.126157 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:10.129491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:10.132502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:10.136502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:10.141501 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:10.150874 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:10.154196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:10] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:15.191833 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:15] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:16.269677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.275198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.281200 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.286727 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.290729 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.295724 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.301729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:16.307723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:16.312725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:35:16.321723 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:35:16.326835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:35:16] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:19.850574 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:19.857586 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:19.864587 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:19.901809 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:20.016002 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:20.023008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:20.027005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:20.032004 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:20.039006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:20.044002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:20.049005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:20] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:22.078106 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:22] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:23.264272 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.267241 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.270240 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.272287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.276783 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.283832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:23.290782 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:23.296640 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:36:23.304725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:23.313655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:36:23.316639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:36:23] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:16.420770 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:16] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:18.293770 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.302385 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.306378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.311903 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.317199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:18.323220 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.326209 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.332215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:18.337538 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:37:18.343565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:18.349563 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:18] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:37:23.471829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:37:23] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ressources_humaines.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:2025-07-09 16:39:42.804686 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 16:39:42.804686 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 16:39:42.804686 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 16:39:42.804686 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 16:39:42.804686 : ++ 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\\ressources_humaines.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:2025-07-09 16:41:35.225904 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 16:41:35.225904 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 16:41:35.225904 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 16:41:35.226905 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 16:41:35.226905 : ++ 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\\ressources_humaines.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
+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:2025-07-09 16:46:04.738408 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 16:46:04.738408 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 16:46:04.738408 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 16:46:04.738408 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 16:46:04.738408 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-09 16:46:17.347379 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 16:46:17.347379 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 16:46:17.347379 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 16:46:17.347379 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 16:46:17.347379 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 16:46:32.076335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:32.090330 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:32.099339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.182715 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.204708 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:32.215709 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:32.225716 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.248256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.265273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.280258 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:32.294780 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:32] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:41.453398 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:41] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:43.490082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.494509 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.499012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.505609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:43.514188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:43.518576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.522909 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:43.533915 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:46:43.540983 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.549998 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:46:43.557994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:46:43] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:03.730875 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.741873 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:03.754884 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.777227 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:03.808229 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.815238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.822237 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.831781 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:03.853859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:03.865376 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:47:03.875382 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:03] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:47:07.063558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:47:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\ressources_humaines.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:2025-07-09 16:48:54.251101 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 16:48:54.251101 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 16:48:54.251101 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 16:48:54.251101 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 16:48:54.251101 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 16:49:13.823819 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:13.863989 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:13.922042 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:13.943589 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:13.980589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:14.031256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:14.112694 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:14] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:15] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:24.755456 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:24] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:24.913045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:24.995265 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:25.133263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:25.193951 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:25.263319 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:25.271323 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:25.307176 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:25.360135 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:25.375815 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:25.402844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:25] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:49.664082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:49.669612 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:49.671647 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 16:49:49.683164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:49.704901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:49.724422 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 16:49:49.738977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 16:49:49] "POST /myclass/api/Get_List_Survey_with_filter/ 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:2025-07-09 20:42:44.328761 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 20:42:44.329762 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 20:42:44.329762 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 20:42:44.329762 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 20:42:44.329762 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-09 20:42:59.646596 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 20:42:59.646596 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 20:42:59.646596 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 20:42:59.646596 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 20:42:59.646596 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 20:46:35.354610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:35.356594 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:35.358594 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:35.384601 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:36.196491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:36.203465 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:36.205466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:36.213467 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:36.215466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:36.218472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:36.221469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:36] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:38.928929 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:38.933007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:38.937943 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:38.943534 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:38.952385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:38.958131 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:38] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:38] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:38.971171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:38] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:39] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:39] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:44.857249 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.863352 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.869266 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.876826 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:44.897826 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:44.986121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.988121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.990122 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.992120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.994121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:44.995120 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:45] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:54.724373 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:54.728366 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:54.731362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:54.734363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:46:54.739371 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:54.749417 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:46:54.754364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:46:54] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:04.382612 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:04] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.436894 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:07.447896 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.462914 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:07.469959 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:07.476091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.490989 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.500051 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:07.507518 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.515081 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.525049 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:07.534059 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:07] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:34.887992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:34.894416 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:47:34.901368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:34.910368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:34.917385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:34.925372 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:34] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:47:34.945380 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:47:35] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:12.004648 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:12] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:17.146543 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.151540 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.156541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.162557 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.171558 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:17.174088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.176089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:17.184099 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:17.196613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:17.203627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:17.210118 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:17] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:50.921562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:50.927570 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:50.932585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:50.938569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:50.952600 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:50.958134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:50] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:50] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:50.971180 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:50] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:50] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:51] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:53.313720 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:53] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:54.595050 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.600590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.605614 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.611618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.616620 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.624171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:54.635172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.643171 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:48:54.646165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:54.651172 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:48:54.661171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:48:54] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.008998 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.024537 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:49:33.029580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.041565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.050078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.062102 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:49:33.070646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:49:33] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:56:30.098914 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:56:30.116914 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:56:30.122938 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:56:30.136449 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:56:30.144472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:56:30.155472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:56:30.170492 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:56:30] "POST /myclass/api/Get_List_Survey_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\\ressources_humaines.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:2025-07-09 20:58:23.355883 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 20:58:23.355883 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 20:58:23.355883 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 20:58:23.355883 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 20:58:23.355883 : ++ 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\\ressources_humaines.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:2025-07-09 20:59:36.076487 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 20:59:36.076487 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 20:59:36.076487 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 20:59:36.076487 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 20:59:36.076487 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 20:59:48.097982 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:59:48.102984 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:59:48.105982 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:59:48.137501 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:59:48.190501 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:59:48.194506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:59:48.199502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 20:59:48.203503 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:59:48.210502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:59:48.218511 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 20:59:48.225512 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 20:59:48] "POST /myclass/api/Get_List_Survey_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\\ressources_humaines.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:2025-07-09 21:02:34.381312 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-09 21:02:34.381312 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-09 21:02:34.381312 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-09 21:02:34.381312 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-09 21:02:34.381312 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-09 21:04:26.914115 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:26.951626 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:26.955626 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:27.298497 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:27.354059 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:27.408619 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:27.427810 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:27.454799 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:27.466794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:27.469822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:27.484799 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:27] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:34.996326 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:35] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:36.718171 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.730167 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:36.738169 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.743412 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:36.757906 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.764934 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.772923 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.778255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:04:36.782262 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:36.807829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:04:36.829369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:04:36] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:01.689237 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:01.696238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:01.701233 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:01.709254 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:01.723238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:01.730223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:01.737238 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:01] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:21.066428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:21] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:28.268981 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:28] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.431717 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:29.433714 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:29.438746 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:29.443715 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:29.449711 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-09 21:07:29.458717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.468721 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.485749 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.490716 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.503715 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-09 21:07:29.511712 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [09/Jul/2025 21:07:29] "POST /myclass/api/Get_Matrix_Acces_Right/ 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:2025-07-10 13:33:26.977185 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 13:33:26.977185 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 13:33:26.977185 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 13:33:26.977185 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 13:33:26.977185 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-10 13:34:05.221181 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 13:34:05.222181 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 13:34:05.222181 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 13:34:05.222181 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 13:34:05.222181 : ++ 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\\apprenant_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:2025-07-10 14:08:39.203671 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 14:08:39.203671 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 14:08:39.203671 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 14:08:39.203671 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 14:08:39.203671 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-10 14:08:47.936940 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 14:08:47.936940 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 14:08:47.936940 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 14:08:47.936940 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 14:08:47.936940 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-10 14:09:24.489046 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.495040 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.499146 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:09:24.530134 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:09:24.806215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.808214 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.814227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.818215 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.825226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:09:24.830209 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:09:24.845229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:09:24] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:02.498984 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.504918 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.509912 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.516910 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:02.529909 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:02.570434 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.573434 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.578455 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:02.583438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:02.591434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:02.605652 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:09.074897 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:11.558243 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:11.561243 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:11.564242 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:11.569285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:10:11.572245 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:10:11.588265 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:10:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:11:02.518822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:11:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:16:07.713178 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:16:07.719177 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:16:07.722182 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:16:07.725205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:16:07.727214 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:16:07.731214 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:16:41.879285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:41] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:16:41.912730 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:16:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:04.932878 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:04] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:04.961191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:10.653539 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:17:10.656539 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:17:10.659533 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:17:10.666597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:17:10.668609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:10.677104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:28.943570 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:28] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:17:28.959570 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:17:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:18:36.111035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:18:36.115035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:18:36.118033 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:18:36.119031 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:18:36.124030 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:18:36.127031 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:18:48.001847 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:48] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:18:48.022698 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:18:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:19:27.239962 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:19:27] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:19:27.268649 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:19:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:20:24.672622 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:20:24.673623 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:20:24.676625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:20:24.679623 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:20:24.684622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:20:24.687622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:20:49.743952 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:49] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:20:49.771058 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:20:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:23:52.183593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:23:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:02.440941 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:09.685339 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:09.689339 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:09.694358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:09.699339 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:09.705348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:09.716359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:23.734335 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:23] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:23.759212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:38.667989 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.465372 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.468369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.472369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.476370 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.478370 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.482368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.488370 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.494378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.969758 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.971759 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.974759 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.978761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:25:50.982758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.988757 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.993764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:25:50.997767 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:50] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:51] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:51] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:25:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:05.231121 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:05] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:05.255480 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:05] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:25.554304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:25.556305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:25.558305 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:25.567304 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:25.634196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:25] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:29.006540 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:29.008527 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:29.010526 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:29.013529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:29.015528 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:29.022530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:29.027533 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:26:29.029528 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:41.287689 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:41] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:26:41.400573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:26:41] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:27:04.637706 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:27:04.640216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:27:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:27:04.644216 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:27:04.653219 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:27:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:27:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:27:04.713218 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:27:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:28:56.623138 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:28:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:01.662990 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:01.665989 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:01.668993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:01.671991 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:01.676994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:01.681390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:01.685636 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:01.690643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:01] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:09.441832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:09] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:09.609021 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:09.611020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:09] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:18.946276 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.949734 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.950884 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.951891 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.956311 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.960311 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:18.963311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:18.969731 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:18] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:37.374395 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:37] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:37.399720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:30:37.402719 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:37] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:50.955694 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:50] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:50.973204 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:54.350449 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:54] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:54.363448 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:58.165775 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:58] "POST /myclass/api/Delete_Given_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:30:58.186630 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:30:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:00.033283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:00.038294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:00.042295 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:00.045356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:00.051651 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:00.052649 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:00] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:41.852899 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:41] "POST /myclass/api/Add_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:41.876892 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:48.186167 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:48.191167 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:48.194162 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:48.198166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:48.204687 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:31:48.205685 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:48.208682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:31:48.212678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:31:48] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:32:25.375115 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:32:25] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:34:38.079652 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:34:38] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:35:30.920564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:35:30.926564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:35:30.931562 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:35:30.936080 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:35:30.937080 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:35:30.946084 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:35:30.951088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:35:30.956100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:35:30] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:00.231006 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:00] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.113083 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.121083 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:36:50.125082 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.128090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.136092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:36:50.139090 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.142600 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:36:50.151609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:36:50] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:37:43.828823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:37:43.833304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:37:43.839081 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:37:43.848255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:37:43.851430 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:37:43.855436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:37:43.863170 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:37:43.871304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:37:43] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:03.795459 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:03.800459 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:03.806995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:03.818049 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:03.823048 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:03.832593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:03.840592 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:03.855578 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:03] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:22.946224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:22.956203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:22] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:22.964210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:22.970215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:22] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:22.980217 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:22] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:22.992208 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:40:23.000219 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:40:23.006216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:23] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:23] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:23] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:40:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:06.357210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:06.359399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:06.360637 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:06.364639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:06.382187 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:06.390188 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:06.402180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:06.413173 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:06] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:14.914367 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:14.949428 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:14.963431 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:14.969453 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:15.041893 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:20.172319 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:20.180427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:20.183332 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:20.190867 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:20.203881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:20.212399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:20.217973 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:20.234975 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:20] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:53.164195 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:53.170198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:53.181623 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:53.186637 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:53.193625 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:53.206625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:41:53.210627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:41:53.234629 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:41:53] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:18.472502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:18.476502 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:18.480502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:18.489506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:18.494503 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:18.499290 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:18.510027 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:18.522049 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:18] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:26.192668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:26.196671 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:26.202666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:26.210670 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:26.295194 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:29.959627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:29.963628 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:29.971176 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:29] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:29.983164 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:29.981157 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:42:29.995162 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:30.002158 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:42:30.012157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:42:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:43:15.281794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:43:15.301347 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:43:15.315334 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:43:15.325318 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:43:15.330322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:43:15.344322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:43:15.350317 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:43:15.366338 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:43:15] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:07.646576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:07.655576 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:07.663576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:07.666571 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:07.675579 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:07.685605 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:07.696702 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:07.701695 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:22.704763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:22.705763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:22.714283 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:22.728797 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:22.789795 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:22] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:27.049660 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:27.052179 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:27.057674 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:27.061678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:27.073224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:27.082302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:27.089294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:44:27.092280 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:27] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:44:41.034998 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:44:41] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:17.110483 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:17.114013 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:17.120037 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:17.124072 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:17.134050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:17.145632 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:17.161275 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:17.170188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:17] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:38.776005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:38.803547 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:38.811066 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:38.830087 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:38.867103 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:44.062679 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:44.068676 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:44.077690 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:44.083693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:44.086223 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:45:44.097244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:44.114311 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:45:44.129316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:45:44] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:46:19.412841 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:46:19.427375 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:46:19.434362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:46:19.437368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:46:19.444365 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:46:19.456359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:46:19.467370 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:46:19.473359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:46:19] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:47:01.629390 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:47:01.633386 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:47:01.639396 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:47:01.646402 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:47:01.660394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:47:01.668387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 14:47:01.677404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 14:47:01.703404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 14:47:01] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ 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:2025-07-10 15:37:23.982806 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 15:37:23.982806 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 15:37:23.982806 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 15:37:23.982806 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 15:37:24.002813 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-10 15:38:25.979397 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 15:38:25.979397 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 15:38:25.980398 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 15:38:25.980398 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 15:38:25.980398 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-10 15:38:36.742362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:36.748351 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:36.761361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.770352 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.804353 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.866565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:36.873567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:36.884569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.895565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.907561 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:36.917571 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:36] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:40.555850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.833835 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:43.845356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.853469 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:38:43.873359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.896355 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.911361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.931362 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:38:43.944729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:38:43] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:18.771960 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:18.776955 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:18.784471 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:18.795489 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:19.219596 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:19.225585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:19.229585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:19.234587 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:19.242580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:19.252581 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:19.263584 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:19] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:45.277494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:45.282508 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:45.288496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:45.290502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:45.301502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:45.318531 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:39:45.323521 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:39:45.330074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:39:45] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:10.635457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:10.642445 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:10.648458 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:10.658447 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:10.664466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:10.676444 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:10.687444 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:10.699459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:10] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:23.447992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:23.452993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:23.456979 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:23.462445 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:23.470430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:23.481430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:23.493431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:23.502430 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:51.396731 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:51.399733 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:51.403745 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:51.413738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:51.418731 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:51.427771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:40:51.439772 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:40:51.453298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:40:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:25.357336 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:25.361333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:25.365339 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:25.368332 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:25.373341 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:25.380447 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:25.405349 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:25.407349 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:25] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:41.171288 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:41.175290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:41.179333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:41.184322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:41.199860 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:41:41.204391 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:41.215504 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:41.222530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:41] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:41:49.123486 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:41:49] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:41.572531 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.574530 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.577529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.579529 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.582534 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.592532 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:41.600544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:41] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:47.870244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:47] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:48.870694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.873684 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.877657 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.883666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.888686 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:48.897171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:48.907212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:48.919742 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:48.934297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.944812 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:48.949811 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:48] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:43:52.004569 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:52.007570 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:43:52.012569 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:52] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:52] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:43:52] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:45:40.014776 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:45:43.351893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:45:43.353893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:45:43.357915 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:45:43.362892 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:45:43.370925 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:45:43.372896 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:45:43.387897 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:45:43.391897 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:45:55.236834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:45:55] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:23.481733 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:24.618020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:24] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:26.076550 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:26] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:29.632760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:29] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:31.053489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:31] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:32.404942 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:32] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:33.659772 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:33] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:34.719026 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:34] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:55.339354 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:46:55.343368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:46:55.349356 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:46:55.356383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:46:55.358372 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:55.375630 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:46:55.384603 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:46:55.402611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:46:55] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:03.721551 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:03] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:05.366902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:05] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:09.995848 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:10] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:11.207149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:11] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:12.421507 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:12] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:13.735295 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:13] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:15.273433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:15] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:30.934328 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:47:30.939301 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:47:30.944300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:47:30.946303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:30.958847 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:30.974837 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:47:30.978834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:47:30.988822 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:31] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:47:31] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:07.734186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:07.739699 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:07.742703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:07.751801 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:07.771706 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:07.779710 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:07.791701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:07.803817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:07] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:33.739968 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:33.744984 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:33.749971 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:48:33.757482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:33.760485 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:33.776487 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:33.787519 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:33.794485 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:33] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:41.089817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:41] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:43.459438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:48:44.724613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:48:44] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:09.911620 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:09.914622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:09.928156 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:09.935141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:09.941149 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:09.948148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:09.953688 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:09.957689 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:09] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:23.296618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:37.525379 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:37.530374 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:37.534373 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:37.538476 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:37.550097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:37.564099 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:49:37.568122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:49:37.572101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:49:37] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:02.813965 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:02.817954 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:02.822954 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:02.830990 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:02.836973 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:02.843962 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:02.854110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:02.862109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:02] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:22.505542 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:22.511090 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:22.513104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:22.521107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:22.531094 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:22.540131 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:22.550118 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:22.554627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:22] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:45.746910 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:45.753644 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:45.762646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:45.775538 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:45.782536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:45.795536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-10 15:50:45.806541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-10 15:50:45.808537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [10/Jul/2025 15:50:45] "POST /myclass/api/Get_Given_Partner_Client_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\\email_queu\\email_queu_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:2025-07-10 16:28:54.771531 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:28:54.771531 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:28:54.772532 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:28:54.772532 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:28:54.772532 : ++ 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_queu\\email_queu_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:2025-07-10 16:33:48.154848 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:33:48.154848 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:33:48.154848 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:33:48.154848 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:33:48.154848 : ++ 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_queu\\email_queu_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:2025-07-10 16:34:39.419731 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:34:39.419731 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:34:39.419731 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:34:39.419731 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:34:39.419731 : ++ 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_queu\\email_queu_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:2025-07-10 16:35:38.354152 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:35:38.355061 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:35:38.355061 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:35:38.355061 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:35:38.355061 : ++ 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_queu\\email_queu_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:2025-07-10 16:41:16.857731 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:41:16.857731 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:41:16.858840 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:41:16.858840 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:41:16.858840 : ++ 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_queu\\email_queu_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:2025-07-10 16:42:44.823472 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:42:44.823472 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:42:44.823472 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:42:44.823472 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:42:44.823472 : ++ 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_queu\\email_queu_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:2025-07-10 16:44:48.360266 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:44:48.360266 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:44:48.360266 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:44:48.360266 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:44:48.360266 : ++ 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_queu\\email_queu_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:2025-07-10 16:48:49.224497 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:48:49.224497 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:48:49.224497 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:48:49.224497 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:48:49.224497 : ++ 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_queu\\email_queu_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:2025-07-10 16:49:13.459941 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:49:13.459941 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:49:13.459941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:49:13.459941 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:49:13.459941 : ++ 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_queu\\email_queu_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:2025-07-10 16:50:00.514565 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:50:00.514565 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:50:00.514565 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:50:00.514565 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:50:00.514565 : ++ 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_queu\\email_queu_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:2025-07-10 16:50:38.393266 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:50:38.394265 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:50:38.394265 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:50:38.394265 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:50:38.394265 : ++ 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_queu\\email_queu_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:2025-07-10 16:52:35.117881 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:52:35.117881 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:52:35.117881 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:52:35.117881 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:52:35.117881 : ++ 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_queu\\email_queu_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:2025-07-10 16:52:50.264959 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:52:50.264959 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:52:50.264959 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:52:50.264959 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:52:50.264959 : ++ 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:2025-07-10 16:53:58.882423 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-10 16:53:58.883425 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-10 16:53:58.883425 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-10 16:53:58.883425 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-10 16:53:58.883425 : ++ 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:2025-07-11 08:44:20.731757 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 08:44:20.732758 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 08:44:20.732758 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 08:44:20.732758 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 08:44:20.732758 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-11 08:44:29.386226 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 08:44:29.386226 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 08:44:29.386226 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 08:44:29.386226 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 08:44:29.386226 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 08:49:39.498720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.502230 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.503237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:39.516242 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:39.892680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.893706 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.895680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.897681 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:39.900679 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:39.903680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:39.906680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:39] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:41.898124 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.900125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.902125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.903125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:41.917127 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:41.957125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.958126 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.960126 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.962126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:49:41.964155 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:49:41.966155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:49:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:01.896910 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:04.334408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:52:04.336412 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:52:04.339408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:52:04.341420 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:04.344409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:52:04.346408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:04.348408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:04.351410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:04] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:17.629788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:17] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:20.883850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:20] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:52:49.803887 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:52:49] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.930992 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:02.938029 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.946990 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.951011 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.961012 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.972994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:02] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:02.991012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:02.994994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:03] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:03] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:16.491648 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:16.496645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:16.508212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:16.511212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:16.516212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:16.519215 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:16.524148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:16.564729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:16] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.083169 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:55:50.093748 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.106746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.115756 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.122756 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.132752 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.139310 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:55:50.148832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:55:50] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:56:04.052753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:56:04] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:56:13.795199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:56:13] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:56:18.117534 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:56:18] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:08.075415 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:08.085287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:57:08.091281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:08.098303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:08.105400 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:57:08.109286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 08:57:08.114285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:08.126293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 08:57:34.367453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 08:57:34] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.227091 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:03:04.233073 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.241075 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.245072 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.280643 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.287641 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:03:04.296647 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:03:04.304646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:03:04] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:04:12.219517 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:12] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:04:23.882611 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:04:23.891778 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:04:23.898752 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:04:23.905764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:04:23.912749 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:04:23.920771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:04:23.927757 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:04:23.932745 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:23] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:04:51.139074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:04:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:05:03.604407 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:05:03.606409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:05:03.609408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:05:03.615409 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:05:03.619410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:05:03.624409 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:05:03.627409 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:05:03.633408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:05:03] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:07:32.221543 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:07:32.229541 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:07:32.247545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:07:32.253545 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:07:32.258546 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:07:32.262547 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:07:32.268547 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:07:32.272545 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:07:32] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:06.016725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:06.018725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:06.021724 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:06.039725 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:06.110242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:08.499246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:08.502245 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:08.504246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:08.507464 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:08.511469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:08.517471 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:09:08.519469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:09:08.522469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:09:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:50.354834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:50.359831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:50.362829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:50] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:50] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:50.373342 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:50] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:50.454372 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:52.813553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:52.816563 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:52.820565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:52.825564 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:52.832566 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:52.837564 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:52.848671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:13:52.850665 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:52] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:13:59.553390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:13:59] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:14:26.917274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:14:26] "POST /myclass/api/Add_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:14:26.943556 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:14:26] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:14:29.848044 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:14:29] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:14:29.857463 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:14:29] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:16:12.464485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:16:12.468485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:16:12.470484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:16:12.472993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:16:12.475000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:16:12.478999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:16:12.480998 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:16:12.485000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:16:12] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:16.791636 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:16.798620 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:16.806618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:16.812619 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:16.814615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:16.819627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:16.827624 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:16.832655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:16] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:32.973502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:32] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:32.987502 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:32] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:51.228796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:51.234792 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:51.239792 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:51.243301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:51.247302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:51.259307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:17:51.265840 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:17:51.268814 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:17:51] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.071264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:19:02.076281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.083271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.091273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.100492 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:19:02.105491 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.112496 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:02.121496 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:02] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:20.385490 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:20] "POST /myclass/api/Get_Given_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:19:20.400199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:19:20] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.398304 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:21:12.410304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.412304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.423303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.431304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.437304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:21:12.447305 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:21:12.451338 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:21:12] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:22:53.407435 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:22:53.412438 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:22:53.419444 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:22:53.425454 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:22:53.435471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:22:53.456442 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:22:53.467445 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:22:53.480439 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:22:53] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:23:42.772197 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:23:42.778226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:23:42.785212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:23:42.788217 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:23:42.794236 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:23:42.801239 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:23:42.810298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:23:42.823820 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:23:42] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:25:57.682506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:25:57.686527 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:25:57.696561 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:25:57.702925 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:25:57.712521 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:25:57.718505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:25:57.733509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:25:57.742544 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:25:57] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:26:57.584448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:26:57.592456 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:26:57.600483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:26:57.608114 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:26:57.614639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:26:57.628152 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:26:57.639159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:26:57.646153 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:26:57] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:27:54.985185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:27:54.987184 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:27:54.990185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:27:54.992188 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:27:54.998186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:27:55.007186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:27:55.012186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:27:55.020184 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:27:55] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:06.485298 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:06.494313 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:06.505314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:06.513742 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:06.519729 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:06.528751 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:06.537751 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:06.549288 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:06] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:09.824004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:09.828009 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:09.831180 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:09.836181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:09.840180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:09.843180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:09.848181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:09.857201 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:09] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:16.794662 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:16.796686 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:16.799664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:16.804665 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:16.808669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:16.815664 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:29:16.818693 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:16.822661 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:29:24.750634 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:29:24] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:39:47.503684 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:39:47.506683 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:39:47.508715 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:39:47.512717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:39:47.522717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:39:47.528228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:39:47.536227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:39:47.538228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:39:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:11.626021 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:11.627023 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:11.630024 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:11.632022 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:11.642039 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:11.648038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:11.656040 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:11.662022 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:51.029919 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:51.034928 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:51.038920 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:51.045928 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:51.059934 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:51.062933 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:51.080968 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:51.083969 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:59.309881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:59.313864 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:59.317879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:59.322421 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:59.329435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:59.337498 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:40:59.344019 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:40:59.355024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:40:59] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:41:30.674260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:41:30.680261 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:41:30.684259 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:41:30.691264 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:41:30.699266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:41:30.706309 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:41:30.723159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:41:30.731474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:41:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:06.916536 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:06.921591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:06.927321 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:06.933053 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:06.940070 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:06.948067 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:06.958580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:06.969616 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:06] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:13.743407 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:13.745407 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:13.747632 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:13.751634 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:13.755631 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:13.759637 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:13.767676 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:13.770666 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:13] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:30.688077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.692061 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.697068 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.699078 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.705073 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:42:30.726104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.730105 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:42:30.734104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:42:30] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:43:19.052524 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:19] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:43:38.476392 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:43:38.482908 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:43:38.485906 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:43:38.489908 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:43:38.494922 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:43:38.501925 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:43:38.506922 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:43:38.515008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:43:38] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:16.250203 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:16.254203 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:16.260232 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:16.268234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:16.280216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:16.291202 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:16.297207 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:16.307201 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:16] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:21.078799 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:21.080881 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:21.084441 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:21.089488 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:21.096444 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:21.099443 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:21.103440 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:21.110447 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:21] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:35.323327 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:35.326326 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:35.329328 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:35.333834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:35.340834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:35.348835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:35.353836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:35.360835 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:35] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:42.260876 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:42.263878 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:42.266876 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:42.271877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:42.273878 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:42.275876 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:42.292298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:42.301286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:42] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:48.385041 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:48] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:44:48.409025 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:44:48.413028 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:44:48] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:08.591936 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:08.597978 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:08.609991 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:08.614148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:08.622206 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:08.631204 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:08.636213 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:08.647266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:08] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:14.581173 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:14.582198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:14.587173 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:14.590174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:14.595178 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:14.600176 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:14.609299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:14.614302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:14] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:34.026810 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:34.029825 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:34.034859 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:34.043817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:34.054956 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:34.059930 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:34.064924 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:34.066927 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:34] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:37.688730 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:37.689748 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:37.695744 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:37.698751 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:37.701749 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:37.709260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:37.715769 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:37.720770 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:37] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:45:47.826257 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:47.829823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:47.833805 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:47.837804 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:47.845809 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:45:47.847809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:45:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:46:24.898853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:46:24.902853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:46:24.907945 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:46:24.913943 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:46:24.925837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:46:24.932851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:46:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:01.013969 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:01.018967 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:01.021966 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:01.028005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:01.032970 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:01.038002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:07.370408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:07.374644 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:07.382210 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:07.392201 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:07.404210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:07.407193 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:10.893171 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:10.894169 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:10.900212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:10.903188 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:10.908481 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:10.914482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:10.921482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:10.929483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:10] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:23.850963 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:23.854983 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:23.862434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:23.878464 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:23.881463 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:23.886022 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:23.899107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:23.906068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:23] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:31.244291 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:31.250285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:31.259310 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:31.262291 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:47:31.266293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:47:31.276453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:47:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:21.729999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:21.734958 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:21.741964 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:21.744974 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:21.752957 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:21.759964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:21] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:31.301493 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:31.303493 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:31.307492 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:31.310494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:31.318495 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:31.330496 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:31.337498 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:31.341495 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:31] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:42.668567 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:42] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:48:42.690083 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:48:42.692072 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:48:42] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:49:06.522873 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:49:06.526858 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:49:06.530402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:49:06.536409 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:49:06.548062 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:49:06.559639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:49:06.569613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:49:06.583647 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:49:06] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:23.190467 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:23.193472 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:23.198475 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:23.201472 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:23.204473 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:23.208472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:23.214472 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:23] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:25.173604 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:25] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.312610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:26.317611 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:26.321614 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:26.325613 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:26.331609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.341618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.344613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.348639 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.356170 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.368171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:26.382200 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:26] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:28.085527 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:28.092033 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:28.098537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:28] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:28] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:28] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:38.308052 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:38] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:43.774253 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:43.776250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:43.783515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:43.795320 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:43.798319 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:43] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:43] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.089524 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.091520 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.099524 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.105525 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.108038 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.112038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.116038 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.120039 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.125075 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.129589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.133589 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.136593 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.146618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.152634 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.159192 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.162174 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.167298 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.171299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.175317 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.179832 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.182831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.188035 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.191036 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.194100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.199100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.202101 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.208102 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.220109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:44.226100 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:44.229116 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:44] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.491143 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.542899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.546912 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.551935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.558909 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.574221 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.580180 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.587180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.589179 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.595188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:46.602189 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:46.603188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:46] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:49.455003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:51.843026 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:51.844024 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:51.847047 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:51.853025 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:51.859029 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:51.864029 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:50:51.867027 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:51.873027 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:51] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:50:59.081437 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:50:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:10.544072 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:10.546074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:10.550074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:10.557073 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:10.559084 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_Groupe_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:10.565074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:10.566074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:10.576072 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_Type_Organisme_Financement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_Type_Pouvoir_Public/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:27.714744 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:27.716761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:27.721280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:27.726310 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:27.736789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:27.740790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:27.747790 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:27] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:29.850184 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:29] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:30.987187 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:30.991186 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:30.995189 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:30.999185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:31.005186 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:31.013293 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:31.019185 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:31.025188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:31.037213 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:31.038185 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:31.040185 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:31] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:34.618803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:34.622808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:51:34.627801 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:34] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:34] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:34] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:51:43.467240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:51:43] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:52:10.744226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:52:10.746224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:52:10.751734 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:52:10.753734 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:10] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:52:19.412590 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:19] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:52:23.571514 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:23] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:52:57.152006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:52:57.157004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:52:57.160007 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:52:57.166007 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:57] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:52:57] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:53:19.539248 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:53:19] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:53:51.291780 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:53:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:57:24.684871 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:57:24.690992 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:57:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:57:24.698991 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:57:24.710998 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:57:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:57:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:58:01.253780 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:58:01.255790 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:58:01.259788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:58:01.273299 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:58:07.515234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:58:07.518234 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:58:07.522247 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:58:07.537754 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:58:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:26.240480 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.247484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.251530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:26.270013 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:26.363366 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.367366 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.371366 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:26.380888 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:26.423912 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.428930 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.434983 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:26.440957 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:26] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.088081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:33.091078 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:33.092080 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.102079 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.182086 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:33.188220 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:33.195222 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.206205 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.414877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 09:59:33.425879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.436881 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 09:59:33.454912 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 09:59:33] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.591954 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:08.595465 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:08.597510 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.607464 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.664481 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:08.669481 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:08.675483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.682491 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.832096 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.850112 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:08.858097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:08.875097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.684766 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:42.688766 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.692285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:42.703283 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.771287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:42.778312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.794819 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.806816 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.901335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:42.910337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:00:42.918357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:00:42.929363 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:00:42] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:01:14.986131 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:14.988130 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:01:14.992130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:14.999645 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:01:15.092224 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.095740 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.099741 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.104739 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:01:15.219846 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.223845 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.227846 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:15.231846 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:15] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:01:46.382984 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:46.385493 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:46.387494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:01:46.393534 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:46] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:46] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:01:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:28.832273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:28.839271 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.842272 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.853271 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:28.888827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.893828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.899830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.905869 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:28.926827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.932829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.937828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:28.942830 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:28] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:44.583693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.586693 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.587692 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:44.605694 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:44.662702 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.666707 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.670204 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.674212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:44.698678 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.701680 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:02:44.705683 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:02:44.716682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:02:44] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.173457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:10.175457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:10.177457 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.193460 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.258993 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:10.265024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.270995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.279012 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.507119 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:10.516115 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.525111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:10.541110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:10] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:51.383506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.388506 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.390504 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:51.406149 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:51.448406 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.449402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.451401 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.455398 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:51.508108 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.512107 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.516107 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:51.522149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:51] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:59.188625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:59.190625 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:59.197626 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:59.201625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:59.204631 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:59.210625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:03:59.215627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:03:59.227640 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:03:59] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:04:01.198654 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:04:01.201667 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:04:01.205684 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:04:01] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:04:01.213657 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:04:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:04:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:04:01] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:06.970075 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:06.974077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:06.979117 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:06.984078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:06] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:07] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:28.895772 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:28.898772 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:28.902772 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:28.908775 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:28.988408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:28.990402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:28.993385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:29.000385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:05:29.095595 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:29.098624 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:29.102616 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:05:29.106624 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:05:29] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:22.755514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.757516 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.760513 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:22.774515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:22.839589 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.841591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.844592 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.847591 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:22.884591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.888590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.890591 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:22.895594 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:22] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:30.536808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.540809 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.545356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:30.558362 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:30.565363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.571361 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.576482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.582360 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:06:30.760970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.764970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.768970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:06:30.772970 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:06:30] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:07:20.905803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:20.909804 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:20.911805 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:07:20.926805 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:07:20.961803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:20.968982 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:20.974919 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:20.979943 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:20] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:07:21.012790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:21.017791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:21.024794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:07:21.030794 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:21] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:21] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:21] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:07:21] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:08:27.513907 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.515814 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.520817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:08:27.531814 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:08:27.560335 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.564387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.570367 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.575367 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:08:27.605369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.610367 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.613369 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:27.615371 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:27] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:08:40.628999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:40.634003 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:40.636006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:08:40.641003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:40] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:40] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:08:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:12.249605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.253605 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.256606 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:12.268608 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:12.319643 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.322642 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.324644 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.326645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:12.362158 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.365160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.367160 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:12.372159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:12] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.601315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.608314 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.612315 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.627314 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.630314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.638314 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.641314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.651350 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:24.708829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.712828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.716829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:24.722830 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:24] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:28.175003 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:28.181073 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:28.186084 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:28.194086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:28] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:41.735627 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.738629 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.739626 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:41.755627 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:41.815688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.818688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.821694 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.826689 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:41.855688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.859689 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.860687 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:41.869723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:41] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:09:52.423031 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:52.425034 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:52.431556 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:09:52.436551 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:52] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:09:52] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:10:15.105607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:10:15.110607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:10:15.116607 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:10:15.119607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:15] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:10:36.618821 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:10:36.625829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:36] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:10:36.631805 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:10:36.635840 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:36] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:36] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:10:36] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:13.814753 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:13.815752 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:13.817751 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:13.828256 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:13.904728 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:13.908735 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:13.912735 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:13.919742 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:13] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:14.034819 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:14.038401 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:14.042388 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:11:14.046390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:14] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:11:24.942387 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:11:24] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:38.695922 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.698921 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:38.703944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.712923 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:38.792977 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.794982 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.797983 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.799983 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:38.885838 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.889853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:38.892837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:38.902921 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:38] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:43.199453 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:43.201566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:43.204453 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:43.210961 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:43.211968 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:43.221968 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:43.230084 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:43] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:45.226390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:45] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:46.749718 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.754716 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.756720 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.762233 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.769232 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_Given_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:46.778234 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/getRecoded_Employee_Image_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:46.785231 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.789271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:46.794268 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:46.802230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_Ressource_Humaine_Affectation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:46.808230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_Partner_Group_Purchase_Price_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_Employee_Contrat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_List_Employee_Suivi_Pedagogique_No_Filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:46] "POST /myclass/api/Get_Matrix_Acces_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:12:48.892835 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:48.895827 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:12:48.899825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:48] "POST /myclass/api/Get_User_Access_Scope/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:48] "POST /myclass/api/get_partner_class_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:12:49] "POST /myclass/api/GetAllValideSessionPartner_List_Without_Scope_Action/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:13:45.501394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:13:45] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:13:45.513387 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:13:45.522383 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:13:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:13:45.529381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:13:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:13:45] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.318297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.320297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.323297 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.331297 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.441651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.456667 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.466658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.473658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:02.567691 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.576876 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.578873 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:02.585871 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:02] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:44.354235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:44.358127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:44.363129 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:44.367128 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:44] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:56.762788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:56.763789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:56.764793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:56.777794 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:56.874869 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:56.877869 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:56.881383 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:56.891383 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:56] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:14:57.029389 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:57.032394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:57.037423 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:14:57.042387 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:57] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:57] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:14:57] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:16:14.856482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:16:14.860482 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:16:14.867484 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:16:14.870482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:16:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:16:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:16:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:16:14] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:18:51.087400 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:18:51.095445 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:18:51.099408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:18:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:18:51.103412 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:18:51] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:18:51] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:18:51] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:19:08.492718 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:19:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:19:22.245161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:19:22.248264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:19:22.251161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:19:22.254210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:19:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:19:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:19:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:19:22] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:09.744096 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:09.749094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:09.753094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:09.759099 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:09] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.589073 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.590079 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.595123 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.603078 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.716446 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.721415 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.728416 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.735416 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:16.837017 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.840019 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.845020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:16.849055 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:16] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:45.324474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:45] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:50.923118 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:50.925128 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:50.926127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:50.930120 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:50.933147 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:50] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.169608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.170608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.174608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.179616 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.183612 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.188614 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.193124 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.196125 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.200124 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.204128 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.207124 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.211126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.217145 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.221128 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.228129 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.233130 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.238132 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.241135 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.249206 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.254203 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.256206 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.264200 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.268203 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.272202 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.277209 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.282212 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.285210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.291209 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:51.292277 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:51.296278 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:51] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.211620 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.325227 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:53.329226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:53.332226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.341330 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:53.353847 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.366849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:53.370846 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.375847 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:53.379850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.386850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:53.392850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:53] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:20:56.710001 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:56.713004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:56.716020 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:20:56.719003 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:56] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:56] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:56] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:20:56] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:13.947848 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:13.948849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:13.953396 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:13.961395 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:14.095948 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:14.104931 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:14.114440 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:14.122441 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:22:14.205505 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:14.208507 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:14.214651 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:22:14.219651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:22:14] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:23:10.069972 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:23:10.073974 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:23:10.080974 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:23:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:23:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:23:10.091974 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:23:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:23:10] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:23:22.788078 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:23:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:26:59.520368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:26:59.529255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:26:59.531254 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:26:59.538254 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:26:59] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:26:59] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:26:59] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:26:59] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:08.901553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:08.903553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:08.906555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:08.915556 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:09.050746 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:09.062744 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:09.067745 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:09.080763 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:09.183597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:09.187599 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:09.193599 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:09.197155 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:09] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:20.448854 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:27:20.455853 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:20] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:27:22.318147 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:27:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:28:04.175987 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:28:04] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:35:02.422577 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:02.425602 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:02.431578 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:02.434091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:02] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:02] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:02] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:02] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:35:21.909002 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:21.913002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:21] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:21] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:35:39.124205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:39.129204 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:39.138212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:39] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:35:39.147211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:39] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:35:50.365293 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:50.368293 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:50.372293 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:35:50.378296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:50] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:50] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:50] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:35:50] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:36:33.007455 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:36:33.011455 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:36:33.015455 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:36:33.017456 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:36:33] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:36:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:36:33] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:36:33] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:37:24.432831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:37:24.437831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:37:24.447831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:37:24.449831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:37:24] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:37:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:37:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:37:24] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:38:08.518660 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:38:08.523661 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:38:08.525701 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:38:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:38:08.535658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:38:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:38:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:38:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:39:11.989014 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:39:12] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:39:14.948247 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:39:14] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:39:14.980249 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:39:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:41:15.700496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:41:15.706495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:41:15.709495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:41:15.714010 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:15] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:15] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:15] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:41:23.020970 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:41:23.024970 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:23] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:23] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:41:33.520620 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:33] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:41:40.972238 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:41:40.976254 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:40] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:40] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:41:45.329390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:41:45] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:06.037416 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:06] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.617621 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.619610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.621633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.624595 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.626598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.927328 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.934342 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.937858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.948861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.952856 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.961860 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.968858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.973856 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.979869 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.987854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:10.993889 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:10.998873 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.000889 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.007858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.017861 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.021888 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.029428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.034427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.040456 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.044427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.050429 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.052426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.057445 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.066426 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.072426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.075427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.081426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.084426 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:11.088432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:11.093427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:11] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:13.387369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:13.497984 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.498985 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.501442 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.503457 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.514461 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:13.534490 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.538449 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.540450 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:13.547649 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.551610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:13.555615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:13] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:20.182466 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:20.185466 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:20.188469 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:20.190579 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:20] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:33.657085 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:42:33.660205 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:33] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:33] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:39.253469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:39] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:39.278471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:39] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:48.758805 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:48] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:48.788353 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:48] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:42:59.924505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:42:59] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.281135 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.282131 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.285109 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.285109 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.287108 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.480645 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.482644 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.485645 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.487674 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.493644 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.498650 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.504651 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.508650 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.516169 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.520192 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.524166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.529164 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.533165 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.537165 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.539166 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.543168 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.550211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.554210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.557226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.559210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.565763 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.569746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.574764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.578749 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.582747 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:03.585780 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.589750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.594750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.599746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:03.602749 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.634226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.677752 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.678755 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.682747 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.690745 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.696748 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.705749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.709749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.719081 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:05.722089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.729093 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:05.741237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:05] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:08.616598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:08.619558 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:08.624556 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:08.627555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:08] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:08] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:43:13.385493 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:43:13.389509 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:13] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:43:13] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:14.885550 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:14.889567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:14.893553 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:14.895553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:14] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:14] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:26.100084 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:26.104074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:26.107076 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:47:26.110972 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:26] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:26] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:26] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:47.580071 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:47] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:52.616052 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:52] "POST /myclass/api/Delete_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:52.644290 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:52] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:55.757659 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:55] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:47:55.793207 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:47:55] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:00.883045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:00.886020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:00] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:00] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:13.052539 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:13] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.040125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.042127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.045127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.046125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.048130 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.275608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.278611 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.281609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.285610 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.290607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.293609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.298607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.305633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.311632 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.318608 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.324609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.328608 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.330607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.339607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.343609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.348642 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.352642 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.355641 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.359641 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.363150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.369149 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.372150 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.376696 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.379720 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.389698 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.393697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.394697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:17.399726 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.405698 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:17.413726 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:17] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.387468 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.431584 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:19.434599 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:19.439611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.445585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:19.455589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.459583 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:root:2025-07-11 10:48:19.460589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.465589 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:19.470589 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.478113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:19.487114 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:19] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:22.413277 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:22.416281 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:22.420288 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:22.422290 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:22] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:22] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:22] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:22] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:26.278430 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:48:26.285432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:26] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:26] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:31.578325 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:31] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:31.635842 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:31] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:37.189961 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:37] "POST /myclass/api/Delete_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:37.238062 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:37] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:48:59.453595 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:48:59] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.079520 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.080495 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.082515 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.083514 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.085494 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.263511 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.268705 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.270705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.275733 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.278709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.282709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.287725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.291227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.298229 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.305757 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.311755 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.316755 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.318755 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.327778 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.331775 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.335774 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.340760 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.346810 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.351408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.355425 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:03.360410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.365402 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.369419 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.374705 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.380704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.383717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.388720 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.393738 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.397735 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:03.400758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.834510 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.873503 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:04.877016 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:04.880033 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:04.883033 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.900038 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.907045 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:04.909588 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.915596 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.918572 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:04.923573 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:04.933615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:09.185504 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:09.188498 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:09.192503 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:09.198500 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:09] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:09] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:09] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:13.450022 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:13.454575 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:13] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:13] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:14.506917 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:14] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:16.316136 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:16.320141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:16] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:16] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:25.546642 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:49:25.550646 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:25] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:25] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:49:50.568663 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:49:50] "POST /myclass/api/Add_Update_User_Access_Right/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.149384 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.151399 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.152383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.154383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.156423 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.371830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.376830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.382378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.386376 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.390417 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.396378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.404376 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.407379 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.412382 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.416383 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.419904 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.423926 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.431928 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.437995 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.442000 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.446026 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.451172 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.455205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.457190 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.461188 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.464694 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.469710 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.474709 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:13.478712 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.483726 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.487728 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.493724 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.497738 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.502753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:13.505753 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:13] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.234023 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.282567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.284566 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.287582 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.293567 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.302936 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.315225 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.316223 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.320223 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.325205 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:15.336206 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:15.339206 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:17.199918 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:17.200917 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:17.205904 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:17.208907 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:17] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:17] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:23.091853 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:23.092866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:23] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:23] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:24.966789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:24] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:24.987296 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:24] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:31.300047 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:31.303047 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:31] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:31] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:34.161806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:34] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:34.191110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:34] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:37.446323 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:37] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:39.787411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:39] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:47.155088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:47.158088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:47] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:47] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:54.492701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:50:54.496699 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:54] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:54] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:50:57.851988 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:50:57] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:04.107411 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:51:04.110404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:04] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:04] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:10.432451 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:51:10.434428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:10] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:14.807288 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:14] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:14.831816 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:17.899954 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:51:17.903968 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:17] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:17] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:20.019210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:20] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:42.532251 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:51:42.537254 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:42] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:42] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:48.651271 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:48] "POST /myclass/api/Add_Update_Agenda_Event/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:51:48.675785 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:51:48] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:04.772063 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:52:04.776060 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:04] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:04] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:08.771664 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:08] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:10.564131 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:52:10.567679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:10] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:10] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:17.660535 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:52:17.663532 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:17] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:17] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:27.404413 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:52:27.408408 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:27] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:27] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:52:29.545228 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:52:29] "POST /myclass/api/get_Agenda_Event_List_For_Many_Users/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 10:53:27.733626 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 10:53:27.737136 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:53:27] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 10:53:27] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\partner_client.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:2025-07-11 10:59:15.111936 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 10:59:15.111936 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 10:59:15.111936 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 10:59:15.111936 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 10:59:15.111936 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 11:05:55.794255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.795284 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.797255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.798255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.800256 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.802260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.803260 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.809260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:55.819797 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:55.835829 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:55.844218 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:55.854750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:59.846404 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:59.850404 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:59.854424 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:05:59.859422 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:59.864429 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:59.872427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:05:59.877431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:05:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:01.741096 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:11.859905 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:11.952524 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:12.033496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:12.095598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:12.098578 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.189546 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/CancelAttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.192541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:14.197541 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.204540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.209546 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.217541 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:14.224542 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.232682 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.289089 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:14.294089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.302104 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.309088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:14.733803 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:44.020399 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:44.078944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:44.081959 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:44.085945 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:44.092944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:44.095965 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:44.099944 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:44] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:47.219343 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:47] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.628125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.631126 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.634165 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.639126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.643127 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.648126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.655130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.659126 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.669143 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.673157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.684156 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.694273 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.706272 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:48.874381 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:48.878379 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.909394 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:53.911423 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:53.915434 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:53.919394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.931515 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.938093 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.949063 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:06:53.958069 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.963070 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.981579 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:53.989581 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:54.001588 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:54] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:54] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:06:59.348390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:06:59] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:07:25.550199 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:25] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:07:25.734680 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:07:29.413410 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:07:29.415412 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:07:29.418413 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:07:29.423444 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:07:29.428411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:07:29.438414 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:07:29.442411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:07:29] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:08:15.365432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:08:26.354481 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:28] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:08:28.866986 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:08:28.869987 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:08:28.871002 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:08:28.875985 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:28] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:08:28] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:09:58.168366 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:09:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:03.819733 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Refuse_List_AttendeeInscription_with_motif/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.039032 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.040021 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.510118 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.512641 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.516670 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.521669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.531672 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.532670 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.538669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.546655 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.551657 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:08.559654 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.564674 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:08.567669 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:14.990986 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:14.992149 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:14.999127 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:15.000129 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:15.009140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:15.013132 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:25.478902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:25] "POST /myclass/api/Delete_List_AttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:25.547530 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:36.359535 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:36] "POST /myclass/api/Delete_List_AttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:36.449599 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:37] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:39.747348 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.751222 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.755221 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.759224 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:39.765258 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:39.775249 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.777818 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:39.792834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.799831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:39.801833 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.811830 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:39.822834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:41.987721 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:41.993841 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:41.995836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:42.002836 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:42.006838 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:42.010836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:42.018836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:42] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:43.821434 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:44.355598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:47.666008 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:50] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:10:50.775009 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:50.778004 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:50.781005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:10:50.785005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:10:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:11:22.447937 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:11:26] "POST /myclass/api/Accept_List_AttendeeInscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:11:26.184150 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:11:26.187148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:11:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:11:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:11:30.656505 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:11:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.426630 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.431633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.434633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.436633 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.442633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.452633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.467637 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.470148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.473147 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.483148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:12:43.493148 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:12:43.499148 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:12:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:13:55.332672 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:13:58.914206 : Add_Partner_Client - Il existe déjà un client qui porte le même nom = part nom2
+INFO:root:2025-07-11 11:13:58.914206 : Facturation : Impossible de créer un client associé à l'adresse email : mysytraining+apprenant1@gmail.com
+INFO:root:2025-07-11 11:13:58.916721 : Invoice_Inscrption_With_Split_Session_By_Inscription_Id -'bool' object is not iterable - Line : 11092
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:13:58] "POST /myclass/api/Invoice_Inscrption_With_Split_Session_By_Inscription_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\\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:2025-07-11 11:20:26.773098 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:20:26.773098 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:20:26.773098 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:20:26.773098 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:20:26.773098 : ++ 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:2025-07-11 11:21:03.220611 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:21:03.220611 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:21:03.220611 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:21:03.221626 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:21:03.221626 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 11:21:05.881068 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:21:06.426447 : Add_Partner_Client - Il existe déjà un client qui porte le même nom = part nom2
+INFO:root:2025-07-11 11:21:06.427448 : Facturation : Impossible de créer un client associé à l'adresse email : mysytraining+apprenant1@gmail.com
+INFO:root:2025-07-11 11:21:06.427448 : Invoice_Inscrption_With_Split_Session_By_Inscription_Id -'bool' object is not iterable - Line : 11092
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:21:06] "POST /myclass/api/Invoice_Inscrption_With_Split_Session_By_Inscription_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\\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:2025-07-11 11:21:43.852046 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:21:43.852046 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:21:43.852046 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:21:43.852046 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:21:43.852046 : ++ 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:2025-07-11 11:26:04.957192 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:26:04.957192 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:26:04.957192 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:26:04.957192 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:26:04.957192 : ++ 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\\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:2025-07-11 11:29:34.897032 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:29:34.898033 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:29:34.898033 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:29:34.898033 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:29:34.898033 : ++ 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\\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:2025-07-11 11:30:17.472135 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:30:17.473136 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:30:17.473136 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:30:17.473136 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:30:17.473136 : ++ 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\\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:2025-07-11 11:31:58.237454 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:31:58.237454 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:31:58.237454 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:31:58.237454 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:31:58.237454 : ++ 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\\apprenant_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:2025-07-11 11:34:07.340232 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:34:07.340232 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:34:07.340232 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:34:07.340232 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:34:07.340232 : ++ 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\\attached_file_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:2025-07-11 11:34:56.148156 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:34:56.148156 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:34:56.148156 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:34:56.148156 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:34:56.148156 : ++ 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\\partner_order.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:2025-07-11 11:39:47.074350 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:39:47.074350 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:39:47.074350 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:39:47.074350 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:39:47.074350 : ++ 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\\partner_order.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:2025-07-11 11:40:27.947343 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:40:27.947343 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:40:27.947343 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:40:27.947343 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:40:27.947343 : ++ 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\\apprenant_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:2025-07-11 11:43:02.361167 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:43:02.361167 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:43:02.361167 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:43:02.361167 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:43:02.361167 : ++ 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:2025-07-11 11:46:15.984992 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:46:15.985993 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:46:15.985993 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:46:15.985993 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:46:15.985993 : ++ 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\\prj_common.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:2025-07-11 11:46:41.446418 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:46:41.446418 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:46:41.446418 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:46:41.446418 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:46:41.446418 : ++ 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\\tools_cherif\\tools_cherif.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:2025-07-11 11:47:48.250479 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 11:47:48.250479 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 11:47:48.250479 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 11:47:48.250479 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 11:47:48.250479 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 11:47:58.135836 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_637
\npart nom2
adresse01
code_postal01 - adresse01
pays01
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : 21J : Conditions de paiement : 21 jours
\nDate échéance : 01/08/2025
\n
\n11/07/2025 11:47:58
'
+ dest = <_io.BufferedRandom name='./temp_direct/Partner_Invoice_Invoice_637.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_637
\npart nom2
adresse01
code_postal01 - adresse01
pays01
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : 21J : Conditions de paiement : 21 jours
\nDate échéance : 01/08/2025
\n
\n11/07/2025 11:47:58
'
+ dest = <_io.BufferedRandom name='./temp_direct/Invoice_Signe_11_07_2025_19.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAR0AAAEdAQMAAAALpCE4AAAABlBMVEUAAIv///+fga7nAAADNElEQVR42u1aO46cUBBsTPBCjsBN4GIjDRIXY27CESYkQLTrM17vRnZk9VpDgEYDQdPUq66qR+SfjyPeN71v+tY3PSOiyzXbI3M/Zp46XGr5vOFK3PP4EX9x/OObWPg98/HsM2JY9/bAc7RrWHjtNupq2cJvwWZnbgNewfzsWT1qvlB4dNULxwkAWfe8hnM8AqfGX/ULJ8ZdM//bhjVjzuqFC+Oob86FbT8jZj/MWRzjZBWAWsj+eqrNKj5OAgRQ6V4A2XNDzebMuh1vWwAbQvuG/7A4iXHwyzENhQsH63EhqlwNIDJ6msxLFx7Ecy8mZKUAjX7FgEeYi7MKUUJWwdhBi9sV9x0vIMmJlaFi4vbs6YjsDsRIpgnzZFVWOdlnUPjMZcpKNY+wLpdRbS9Mh6h0iZc4AV4AGgEdGJ8q8/hKjPfkv7vU4dhE4XgLY+3FCSWocq8IVmr4GDSaQpULv0jhsA/7J3k+DZIuhTEu+0BZa7wEiRGylhq9tlaR9kazad3Ue879EayCuT/Vtm5kvV1G4hePr7u1SlebxznoRw8glJuq3hiP0lrFsltkbgdk1RK0zbWhAkUrkYX20/c0Pkyy5uIiy7ZehCKFYj0+YZC22jxuD+F4gg4oqVXU8bZV1ipYnMD43jgvdUir6GiP2vHEQZliOdh9hBKcR0dxkcXG7r/1OG0zHdAZ1QOhYxJAuDhnSavBAyjFNIW1igYkiXu0a7PxBKvUhspJl/9SWoonNI+MocpJFiwPc5XRxLg5o8BzbDZEhUc+VqM5cZAXkn3o1XEpxtKydqNNkzAko0tzmceLOyDMnsXpfsxOJnrhxeOzMI+r2aFgXynnxE2VK6I4j5OuKag0gMTowsvsoKIyj8MBKa2VWcbJyNn0MJWhsnyyQRhFmkJimnUvPTlRqRRtvjY2Q9tYaYwXj+Be/s3hipiwV2RbW4/b9wggyrRuTrK0L1Q+H38wj/jQ41K5hwx01s7HHS5/7HPSc+58C/E9dpZnb+PLc/JzBMCndpLlwkEtJO70XhsVI0V5aagong0bT6kq7xlO3kKsvrPMiUMen8zjklsAev2d5fcHSe+b/tObfgLLz3/xp715lgAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 820
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 820
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:47:58] "POST /myclass/api/Invoice_Inscrption_With_Split_Session_By_Inscription_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:47:58.544134 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:47:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:48:13.894702 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_638
\npart nom4_client
adresse03
code_postal03 - adresse03
pays03
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : 21J : Conditions de paiement : 21 jours
\nDate échéance : 01/08/2025
\n
\n11/07/2025 11:48:13
'
+ dest = <_io.BufferedRandom name='./temp_direct/Partner_Invoice_Invoice_638.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_638
\npart nom4_client
adresse03
code_postal03 - adresse03
pays03
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : 21J : Conditions de paiement : 21 jours
\nDate échéance : 01/08/2025
\n
\n11/07/2025 11:48:13
'
+ dest = <_io.BufferedRandom name='./temp_direct/Invoice_Signe_11_07_2025_75.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAR0AAAEdAQMAAAALpCE4AAAABlBMVEUAAIv///+fga7nAAADO0lEQVR42u1aMY6kQAw0N0GHPIGfMB9DAqk/Nvykn0BIsMJXVW5Wuug2OnlOQ4CYhsCY6nK5POZ/P077PPR56K0fOsxscG++43Q+sVr249GKHwvu2OrnL/vB8Y8fYuCr+37YdNpYG2I2Q/RfvLdMups28MXKzvS/RnyC5/FgxhHzhcBtyB444xu8Nr9G4MXGr6lcOOUPHNhQpCeWJuS+ugEvyQPvGEekmyHtgPezv0xyjJNVAGoh+89TblaJA6B+ESqDroCXc0bMwZl5M45IwSVCO2ImHXrDV3i0cx7zBg4uKc5IweOumGNzziPQnjlwELcJIFdECrywAGFz1oZtmnhzChFK9jaRx71ctpLMnZyYOONkEK/u4nEQd8MO3cQ05nvijBMWTDtgYVFD9R74CtuktKcNfCMJeishTviTGFfxtzm3OpS0wmmVOsQ2tUcTclJvTjEIgX4Z6z5lLdNufBl/5a6c5HGPbiKkC39fo6RLalZhlYSsJaMz43GiMMzdAdl0c6IT2dVDqzyd5dNSYxzVfiOh1HZKoQxRNHmVeXNuU/Eomqz2HTRgQmI8N49HYwyoMFKuhWrBFYt/Zh4PRUuZ4ux7sEweR8zJeZzdztpuLlnUv03xFTLzOJNNaimyJyJmOizMeKwl5nH19sEv1tkRO7RrrrwdkIu9Qw4O36bEIIloqemQ9kT3VciEaN3CgrPkhlAIqrvarzTjWIDiU2TvOR39m0nRruzkqMfBKqmh0lmFbVrYE8Hj0ioltZPFxtigvcNXGau0iovHLbOs9ds+oa+iQmq9wa8y+1NjXNiQMFS1l/Cip5W7chLPt7tvGkaorwhWyczjlT4htMpt7LMUqeRbbh6Xp09d0vW4mmU5E0p7ZtPT5V/J+RTJFPbJIsbUehztQ+zQ+R6l0HXmDvWWu3Jy6BOjwSXW6GQFq1jq1s3F3i38capDNctvoMetz4AoTlwjzq7Hl9wWXFhXVW19nwHtIQPWsLhyD2iX6XvOaRqO23CYvcFkmVsyuonq/e8InH1ml7V7OLNIe5+sbJoeWu5xYUyWLfxxDQ4hrdo9qsg+We65BzaW4HGjYLH8k+XPH5I+D/2nD/0GGgx4Doo3P24AAAAASUVORK5CYII=', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 827
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 827
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:48:14] "POST /myclass/api/Invoice_Inscrption_With_Split_Session_By_Inscription_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:48:14.155881 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:48:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:28.436333 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.438362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.440383 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.443382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.447369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:28.451369 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:28.454875 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.455882 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.457883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:28.464904 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.466884 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:28.467882 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:32.397790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:32.400794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:32.403791 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:32.406800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 11:53:32.408796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:32.412796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:32.415812 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:32] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:34.108858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:43.839828 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_639
\npart nom3_client
adresse02
code_postal02 - adresse02
pays02
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : :
\nDate échéance : 11/07/2025
\n
\n11/07/2025 11:53:43
'
+ dest = <_io.BufferedRandom name='./temp_direct/Partner_Invoice_Invoice_639.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
\n Facture n° Invoice_639
\npart nom3_client
adresse02
code_postal02 - adresse02
pays02
\n
\n
\n
\n
\n\nVous n\'avez pas de réduction sur cette facture.
\n
\nRappel Commande n° Code_Session_test_facturatop
\n \n\n\nDescription | \nQty | \nPrix Unit. | \nMontant | \n
\n\n | \n
\n\nCONDUIRE UN PROJET | \n1 | \n1500.0 | \n1500.0 | \n
\n\n | \n
\n\n
\n
\n
\n\n\n\n | \nTotaux | \n
\n\n | \nTotal Remise | \n( 0 ) | \n
\n\n | \nTotal HT | \n1500.0 € | \n
\n\n | \nTaxes | \n285.0 € - (19 % ) | \n
\n\n | \nTotal | \n1785.0 € | \n
\n\n
\n
\nCondition de règlement : :
\nDate échéance : 11/07/2025
\n
\n11/07/2025 11:53:43
'
+ dest = <_io.BufferedRandom name='./temp_direct/Invoice_Signe_11_07_2025_28.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = None
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAR0AAAEdAQMAAAALpCE4AAAABlBMVEUAAIv///+fga7nAAADRElEQVR42u1aMa7bUAxT6uGNOYJv8n0xA/mAL5bc5B3Bo4fAKkm9fLTT71SwRTwYhuNBlimKlBL5/XHE+6H3Q//0Q3tEXPJzzkdmPxaccGPqLfcVF3HL40f8wfGXH2Lgt8wHoj/iuvXGK7zRk7+ts361DXyN9kDG2/2KT7Ds64zoEfOJwOPiHvg+JfCy9TyRduT+ObcTJ//A84kUI9IDt+a8X7eMJd0DF8ZvrMvPOC6E9/L1MtYYJ6u8kP37yZtV6ngGAAKoKOMASM87Yi7O9M14Q5C90H4vjAPeyz714+OaxhknvEncKEk1oIMZR8yfEdaBowYJC/IfIwVozitonY0UaXemw7kIZWHfP5HidgI5IPMkJzpDBZIl1igeF0ogXcQ0QZ70DXyrugQsonooUAK0A+Oz0m4MFdJ1H+IEkFetEjQ9PpzV4SQuSRai1CHfY6qMWxdnSVg0mxMULrxImSvZohtjHlf0KElesWki8GxZ0iWti/MOywMamYiXAMaJF8bs7YCmZN+vjlM8zr4PjEPbOhcnZXeUvtrY7SN0VVrFWY+LUIBxWZ5DNALQoDihVax5fNh6th1GynulWnDF5u/sgBq5pBHe+RByYuhxb5GlRr8GuWQoFDAN6xI2yJnHadNILTWeuEjlglCSKKl7tjxedP3qoTEPXxH6FMasAtMgGyQ5yGFcDSXYjw5zkcVZULahx6dOz0knV7bZGePCcxUnaaQUAO2mGqkzVKrH40ROJGiox+ueMx1yYDV1caKmteU5F0lEaz1Ol/+aIpIJjyEM15KI1hivGe2WpcfvZfC3UubeQ8/S44geKCnbzK/QvB3QL9kNTljKc+JetU9nI/HQIEWDCmKD74EKDXMeH+q1GhDFrKZCGuwf1pMs0ghl7bDN2eWTAW+oL2eoIMjq+x+vVQpiLox3687JBqQ121hsRkgdilXC27qlOmfNx7/0uLq9tR7fB3k0zg6Ve2qVWgR5W7ebnCZn+tLjTxk2tSKOs9J8QRu1kZXLr7nKZXfncQVOOShGl9XXDogzUGtZOzKeIu6sXZt2QM/wXhe+/j2h+TjhLbmlqVDz3yyPPSfnV7O2bqjVrYf/Zvn9h6T3Q//pQz8BCo+H0CChvzsAAAAASUVORK5CYII=', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 836
+DEBUG:xhtml2pdf.files:FileObject 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAYwAAAB9CAMAAAHxWZTmAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACZUExURQAAAAAAAAAAAH9/f35+fvGCFQAAAPCDFX9/f/GDFfCCFH9/f/GCFfGCFPCBFvGDFe+DE/GCFe9/F/GCFQAAAAAAAPGCFH9/fwAAAH19ffCCFPGDFQAAAO+EFQAAAH9/fwAAAPKCFvCCFe+DF/KFEwAAAPCDFQAAAAAAAPGCFQAAAPCDFfGCFPGDFQAAAAAAAH5+fgAAAPKBFcnz200AAAAzdFJOUwDLuIjRv+6x/6V/amDPaONA8iDJdiJiolhDx5mWMC/oSlDXISjcjDz/vYVIcf9nqLkTO+P5O+gAAAAJcEhZcwAAFxEAABcRAcom8z8AABANSURBVHhe7V0NY5s4FiSxm2XX22u7Ter42ou73cuaza0T+/7/j7uZ9x4gQAKETWp6TBKQ0NcbjSSELZRkLLzhYS/OvpDYkq4vLHJcMYK3e8DcSZaZowSDBeLRK4UTKfj3tMuQMssecMAPguTXogBv35qDkCTZDudrJnKTlCmqjO6Rf54ky54kkcRHijLNeye5iyYpQOPuB6jzPq8NwfqAwyFNk2S7giNJVnASC/zl0SIKGJDE4r6XY09okphCELtCfCSwgAFNP8YujRtTiKYQ/lZQlt2pwwEbo/wWcNv9kYnwKwe2SRwV++S/epIscqfAYooTvzdysYgmcJyI/iVPYcVIUlqVfKZDfPE1FupZHljM/ZuyrpJtKn1jA5ddAbSbrOUo6N9+Ld+IBp9bpadekLhxfUpgnnNCMwbMPwLKrEcrxM14pEKsaRteoZDy9vPGLU27XTc0jR1xKvMoC3HvcG4hRRG46+7Y5Y9JdsurV9rt5fYKaLspj04W4iWcIiqFZNdylNykDLnEbPMyEly/yxno0R0CLX+iUsbenRBcZw9J8iVLHt0ynrOvCHrOjvBfg1uRu2QFz++WX1kYh6nSUynCC1rfC04RlUIqRWw5ESihvpQjHsa+EDAkKipFSCE+LA/pdp0etmmSbtJkuU4470iWW5Sz4YAqvynLUxdPW8xEUimnnuf+d3OcE9VCRimiWshIRbiFjFbEjwO53Qvswggosh6vjHLsq4znZ4WT8VhluMaPRaSS7auU0TmgD0JlzsBbi8GunAdObvu3BZFqGfJo0Am17TOPn8Vj1xFSEnHugxX5+QDRfG5pADkDnzUljm4hdnZpOFfJQk4vQoaUrvArDvo5XaDnpVHGR6eMnIh7O3eJlPWU3SfZF/qfbUICj5bBUK0e1hUKo+dnSSSgl3BpsMQcVgY/b5AZj5ovR8ldeSBFhcd+/00cNTg04CkKfEF6gHmGyhBnQw9xEMqBeF8R2nGz5sVWzVNyN68TVpQBfGLyd3kWpfiV6VW1O97LTDF7whzOKeNGp49fwOMBkjfKKPJ2s3WJONf9YEn94LThCpEKDS8iyrCzwCHSSaM/XBpKxNBJY415KKaBnDASnJ86D9+YpvIDK0HN3L33Ibh4kj9sbOaLaec6RSaYla6XLOZwQKR1ul3As1in6TY5LCxdlUZwvisTWJaVYsorvlSMxuw3RYY6B17gEvyYByNom6IMTdWzjNNQr6tRptSVQkahUSMy1rTdKWQkGhUi4z0aFIWMRoOF5JgfPwpYjZT4pwVMCo3hel+ZhU4EnpvOBHl4b52T4xGYAEyMR3AaMykeQRYMms549aY+gSrAkPIDH8PFEgvxMBbmM7Q1tDs81F4/m+dEWKUB9kAkwPPRx484f/hJvhGsws/Dy6KFhzzyEeY/DWo2UaNhLlCxmCV8PAIsQjy4HsCcxNNjhgd/YofzF/HcXWdXO15C1ONV9qi6Wbqdnu4fs6t7OsRkA2iYCwABnv7iA2sdTXuDLAI8qiwe4CXg5HoKF/LdcQ6E61FpgC7Bj3W0xtWAXA0hhrNzqgEW1xFi4edh1hS4RXXzU5O8mi1cLuVx5WweiXYLj2rYSkPwEz09EGTBrBrjVW6agOYIImnkKeFob1QffE1KlpbUwQSBzuwliNKlIr8WpqFltdK4yrIn8aCd2bUX/CEBelBH3/i72cXBovHE0sYjIJMu+gGOyVEdNzTNT0NB+80ncZ/Uzeqo0TBAAhzlIs5/iMPgY9HGo6Wx9QQsNdf54GcR5nE6izFohFiEeJyBxQgIsyh41GGhcah+Ea2QT8Tq8EXsRBsL49ETSx4OsGyRrtJlst2myWrDD/to7CGFdXCt+XX2GtfTrfjlU79Fukj4JXgeEUGMxfyQES4jcI3rB1zb0pMsFmsJyNHOIoqHFMty1qhlseWwIQ37iPVgdQ8fPKDJIJprH2VqkEREhRgNRkEIDYd/hZ/tZoUYi4XzyWuS/Lbf/8OcAQxtQ24p4wNqtK60GszildHOYyos2nlMh0UbjymxCPOYFosQj6mx8POYHgvh0YSFzfgOwMS1BguYFsx2B4EH2ItG4yniMh8rutD8OHqKcnjqfopy+L4bmJ4c3pqfnhz+L2qmJkeg3qcmR+hbs2nJEaz1ackR/gpzSnK01PmU5PhBaLQ0HTY3myiWsLCLQ7DOGYC/Gi62u4RMUzGq/f+C21nANBPDfDna5Hh+zLKXHqvje8CkBz66niT5Rb7e//iLxXPhN80nRpscxfeW5j8JajVRo1F8gdYk4jXNL0aIs666F5xFDrMVCNGofvMn8JnmFyMoxw4EZAnCedaMwExzAa4HNPhV8k/7/Tu94MBjWkgMP2f5Pu/BnMBXaHPNVzMZkNxdZVfwPOXf3YPwM8JVNmOP9DgeXxCH38920ahGyNE0LSRGQI47NSMHfIQ60fGBGznm34EL5H17l4Z9Jw3vMBoN08Ji+DhL/5YVKwY1J7sqnQXcS9fiKWnoVaMhQM8oPXSXjcq32sIiOgiJ4ZcDjchcJdQgHKEAGotxkiPbG9cAiMelQWJsnGaEl4aBvjpgWg1BMZhtQ446jQdcQGOCS401azWaWQ5qIFhT40Z7mBnRQoOePgiJ4ZXji1mjsMUWHTR0cYhL46skolQVO10PaLyLYYHEvhGJ8NCASWw0BrGGULde6kEjOcpAAB5tND4lv3t5kF0d/2ltVE2dzFrBgyzNYbfHMUyj2agIRIELFqiXcD3axTEh+csuFPB+L4CEITm8/Fg6B9Pk5pbVzHuCLMoJ07AxGn0IR85kIIYNx500eKm+aLKSRCHf3ITk8HcalG4ou4aayaOZntMwUDNzArLCigCvOg1DQeMP8biAyc2lChLLL0eInd3fOGaqOfJmZhsNjq7lMiyEFI5OGjxXZyMSWkeLHMER7Ijh6vFWnDtMP3awUFev8UqVxj0ctqiQC0If7y0a5iu6ILRilDAQlDS4Tu9vcSi8Ylg+PjnCPb83lNJ5IfY2EZQjfDvpjRFoBMQIynEGMcagERAjKMcZxBiBRlCMgBznEGMEBMUo5ajhdDHOjxYxCjlqsMBIeJYQblbmqMATsRutZokcfbHUdXUhONZt+f4w4sryu1WdSx7RuzxOA3W5n4NWMTpI1iAlcH3jNpW3qmFomiySFQ1O0uUh4YvXssxxmyabzZrLJ/mi9IoXF+tlGZEJlQZCNovU1keinvgaNVdR6iLKsgI67IyRQ6XgmklkT1tYnL0bDgu4fjLdyPvoUIPrJBkGM1cMzJdA0m00Un3rGzR5YvhiJYUwX/jz186BDjGi5NAabNAQ+4yGevCHWiUNJhIa4s4jGg34eNWhAUUYVNAo0Gnlr/v9v83ZCZTChpHTSBdckcurDDsc0BC2C7QIGgQT17Ld5VIb1YqWFhH5jr/QgOugNCR0TfJckCs0ZLdMRWejiekcVWgbeyV09432Rnch6JBjuBivjFZDpyJGhxyTEaPV1OmI0SrHhMRoMXZKYrTIMSkxguZOS4ygHBMTI2Dw1MQIyDE5MbwmT08MsdkDC5wQzPAKJifGjLHhb+4VzK3mldBDi7bnjBlnRC8tZjVeBapF6zCkUWY1RkcPLWY1Xgm9tJjVeBX01GJW4xXQW4tZjdERocWsxsiI0mJWY1REajGrMSKitZjVGA0DtJjVGAm/SbV27FvWxK+S7F/mm3EmDGrkeXfScxsiu9z/Owao0V+LeSyLRLQaMVrMakQiUo2qFm3jUGTGM4ioSuuvxUA1+OJlievzvzAzFEKmBnm787N5XMgO1fUA378CaCCi0mK0GKDGsaIEkb+A9f0hXGqIEwPw7d1QQ+9Ki9MiWg3b/jy7vufLl7vnxwvSQsUo92QvoXVuHhcaIC9JfvpT3iP2Z1BDz0qL1SJSDdtjwNlJ4ZIgTAaKIVA5zNOGXpUWr0WUGvr6q75CWoe9qSt41H0uAG7lcXPM+1OWXT3wLVTDi7zlDIjvOX/P1va7EIi3uCsxN31dNUm+ltHz3ilEThHj56q3BT0qbYgWEWro68WBcelZAgtYBWr1BWG6ms/Bje0mIx6PGHz9vIRtsyE8ThDjjw/0Nf8Ljg9aaZ2I1aK/GnrvDs2erm53bNC7W22yWpsmxiOq6+FF3fAckzvbiUirUd23GP2Ouydr8VqM4wRKMdQUZJQ8PD/m2zoIDQdy8ya0zksUgjliFPeMPhMqoJca8Vr0VkNrwDwtkHj2PrybRJtzPoRJpfO/utSrXKNxx4UuMW6L4UwgLBz0FcNFkaYTPdQYokVfNbQGqhVQ4l7v7jlk34SqGNWqldw0VuV6vn+X+EsXUeam+5MQj8+FQUJiwDBV4Fuf20UMhn3M2+tTXq0k/65a7v1bcIIYmqhVDLjPewP/Ji7nH5W3oPkuuhd8Qb3nmFNBz96k1MtaK6E1c30vYTJfGrdnCI73eRPQMU1IDL2B/ynOD83t4RroqYXughCvRt+RTSujMp96uJK7tlzPx4sTxdB/VefcM4q5tE6RzWPQmbIkFhZDxbC5VPcTeG8thqnRV4u8njDzfCL7B25HI7NQrXPunIfZjfYSrcwIMR75UH/cfbHhR2dj2vSZ8V1xT5KAe7NhpzHkMVRoDBZD9oYDvpkvANGixxYZEi9ejf5aAOXzW4FH9IjySa6AzJoixKggn61WnycUnut6HxMeYTGqEAWqYiSfxNtaFX21GKhGlBbAXaXi+QRBOB8gXh/16ZA1NEiMPE9BuZHVza3uVceru7I4XJeIZxAjv4+H/1Nlfy0GqRGrxRiQOs1FumTEaDFAjUvQYjJixGkRrcZFaDEVMWK1iFTjMrSYiBjxWkSpcSFaTEOMIVo01OjC99diEhimRaQasxa9MFSLKDUitVinKf+T8CAcvAnXsskZsJTN9Nxoq7S+X2AN9RxpXZ5dBw5ltE3q7AQXwHAtHDXOC+5YOBwBMbYHbkyH0K2z4duqV0kNMfoJEY9TtBhLjaK6uHPiEnW4Rds9cJc/tmp6Vmhlq3QD3VAv3BVTscalBbsUE6HKNoyigI/Zrpd6gghML2JskOECHj3LXoLNHMUm60K5GLRmeUA65qIpmXGC+NKekA2jbmEEo8rehXkksb6G07QYSQ0QNNh4wJqQemMblWqBoxAD8jCMjiJIsGI9kT3AWkkXoh3rRbAuxUAWgFWiJ0d1VMWQ0QoRmT7vzoUT/ZDJGFWsgVvEkEgCZljBqVqMpMaWbA9r7QhWf6UYICzDPEI3NnSjwcsJcbjJZbLFn4GbqQJWK9CPmeVDuQjKypQWDZgYzRyZYilVrXkB+U3AFYP/TF/MhgmMhai0dVMRw7mRuDi9Kk+XMxbSRn9InKrG62vxA4txohrfQYsfGqeoMWtxbgxXY9bi/BiqxqzFGBimxqzFOBiixqzFWIhXY9ZiPMSqMWsxJuLUmLUYFzFqzFqMjf5qzFqMj75qzFq8BqSW+2HWYnT0VmPW4hXQU43TtEiS/wHFpgfrbJaH1AAAAABJRU5ErkJggg==', Basepath: 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\__dummy__'
+DEBUG:xhtml2pdf.tags:Parsing img tag, src:
+DEBUG:xhtml2pdf.tags:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None}
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+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:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 41 6
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 59 836
+DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13
+DEBUG:PIL.PngImagePlugin:STREAM b'sRGB' 41 1
+DEBUG:PIL.PngImagePlugin:STREAM b'gAMA' 54 4
+DEBUG:PIL.PngImagePlugin:STREAM b'PLTE' 70 153
+DEBUG:PIL.PngImagePlugin:STREAM b'tRNS' 235 51
+DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 298 9
+DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 319 4109
+DEBUG:xhtml2pdf.xhtml2pdf_reportlab:can't concat int to bytes
+Traceback (most recent call last):
+ File "C:\Users\Cherif\Documents\myclass.com\Siteweb\Elyos_Ftion_Continue\Ela_back\Back_Office\venv\Lib\site-packages\xhtml2pdf\xhtml2pdf_reportlab.py", line 450, in getTransparent
+ return list(palette[transparency : transparency + 3])
+ ~~~~~~~~~~~~~^~~
+TypeError: can't concat int to bytes
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:44] "POST /myclass/api/Invoice_Inscrption_With_Split_Session_By_Inscription_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 11:53:44.152537 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 11:53:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.762809 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.900091 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.903095 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.907161 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.910685 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.916684 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.917685 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.920685 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.928715 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.933690 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.935693 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.940789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.944794 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.950791 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.955306 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.958312 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.963307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.968310 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.969312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.977318 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.982407 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.986408 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 12:00:45.990410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.996407 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:45] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 12:00:45.999468 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 12:00:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:40.970691 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:40] "POST /myclass/api/Update_Context_Partner_Account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:41.050774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.052774 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.056788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.058785 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.062783 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:41.066785 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.073304 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:41.078300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.082300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.085301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:41.088300 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:25:41.093299 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:47.924565 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:47] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:25:49.552965 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:25:49] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:08.632631 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:08.634630 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:08.635632 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:08.637630 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:08] "POST /myclass/api/Get_List_Jury/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:09.981849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:09.984849 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:09.986848 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:09] "POST /myclass/api/Get_Given_Jury_With_Members/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:10] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class_From_Session_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:10] "POST /myclass/api/Get_List_Jury_Soutenenace/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:15.804435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:19.190366 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:19.297448 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:19.300449 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:19.302446 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:19.305976 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:26:19.307977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/Get_List_Evaluation_Final_Note_Classement_Detail_With_Filter HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:26:19.310975 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/Get_List_Evaluation_Inscriptio_Note_Classement_With_Filter HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:26:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:28:05.828802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:28:05] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:28:07.120965 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:28:07] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:30:12.321205 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:30:12] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:30:22.214519 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:30:22] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:31:06.958097 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:31:06] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:31:28.113089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:31:28] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:32:24.113981 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:32:24] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:32:48.692393 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:32:48] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:33:43.441321 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:33:43] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:34:05.122109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:34:05] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:36:03.554345 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:36:03] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:37:09.446077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:37:09.451078 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:37:09.455079 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:37:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:37:09.474083 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:37:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:37:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:37:09.536654 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:37:09] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:37:11.959050 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:37:11] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:38:07.184256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:38:07] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:39:35.313864 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:39:35] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:39:42.539269 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:39:42] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:00.168758 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:00] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:25.719678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:25] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:37.128738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:40:37.133738 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:37.136738 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:40:37.142986 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:37.195415 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:37] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:40:38.529736 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:40:38] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:57:24.558187 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:57:24] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:58:16.164859 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:58:16] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:58:22.970300 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:58:22] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:58:44.760394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:58:44] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:58:55.556964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:58:55] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:59:45.703814 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:59:45] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:59:52.740651 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:59:52] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 15:59:52.863749 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 15:59:52.866754 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:59:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 15:59:52] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:00:29.561719 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:00:29] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:00:35.755405 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:00:35] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:00:35.846051 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:00:35.848048 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:00:35] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:00:35] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:00:59.503633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:00:59] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:10.733868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:10] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:10.862358 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:01:10.866359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:10] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:10] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:43.427844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:43] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:46.617058 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:46] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:53.408418 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:53] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:01:53.514963 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:01:53.515971 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:53] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:01:53] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:02:17.824260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:17] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:02:19.846233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:19] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:02:26.229650 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:26] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:02:26.360918 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:02:26.365917 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:26] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:26] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:02:48.002687 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:02:48] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:03:49.648263 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:03:49] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:03:50.558640 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:03:50] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:03:54.651302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:03:54] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:03:54.735756 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:03:54.738750 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:03:54] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:03:54] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:02.841466 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:02] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:18.027984 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:18] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:46.836795 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:46] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:49.046761 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:49] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:54.244700 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:54] "POST /myclass/api/Update_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:04:54.335394 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:04:54] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:07:03.226240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:07:03] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:07:37.414453 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:07:37] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:07:38.692501 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:07:38] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:08:09.148113 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:08:09] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:08:22.831946 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:08:22] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:08:26.231060 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:08:26] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:09:03.089410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:09:03] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:10:04.556519 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:10:04] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:10:24.481998 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:10:24] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:10:41.530498 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:10:41] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:11:15.366402 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:11:15] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:11:38.489555 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:11:38] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:07.714439 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:07] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:20.694908 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:20] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:25.149459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:25] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:38.996279 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:39] "POST /myclass/api/Add_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:39.061948 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:39] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:40.984968 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:40] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:44.154534 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:44] "POST /myclass/api/Delete_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 16:33:44.199085 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 16:33:44.202087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:44] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 16:33:44] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.594285 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:06.600794 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:06.607585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:06.611586 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.619615 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.631590 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:06.639098 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.650098 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.656098 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.661100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:06.677098 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:06.683100 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:15.108008 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:15.113006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:15.115154 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:15.120668 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:40:15.127667 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:15.136694 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:15.142696 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:17.755800 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:40:20.054471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:40:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:41:49.669447 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:41:49] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:42:25.837636 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n\n
\n
\n
\n Formation : CONDUIRE UN PROJET
Date\n : 11/07/2025
\n
\n
\n
\n \n \n \n \n \n \n \n Date | \n Nom | \n Prénom | \n Présent | \n Signature | \n
\n \n | \n
\n \n 22/09/2025 09:00 - 22/09/2025 12:00 | \n uuu | \n ppp | \n Non | \n \n | \n
\n \n | \n
\n \n 22/09/2025 09:00 - 22/09/2025 12:00 | \n sdsqdq | \n qsdqsdsq | \n Non | \n \n | \n
\n \n | \n
\n \n 22/09/2025 13:30 - 22/09/2025 17:00 | \n uuu | \n ppp | \n Non | \n \n | \n
\n \n | \n
\n \n 22/09/2025 13:30 - 22/09/2025 17:00 | \n sdsqdq | \n qsdqsdsq | \n Non | \n \n | \n
\n \n | \n
\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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, None]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:42:26] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a7ead07e7e503a02b509 HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\emargement.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:2025-07-11 17:45:22.713545 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:45:22.713545 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:45:22.714557 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:45:22.714557 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:45:22.714557 : ++ 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\\emargement.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:2025-07-11 17:46:20.960457 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:46:20.960457 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:46:20.960457 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:46:20.960457 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:46:20.960457 : ++ 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\\emargement.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:2025-07-11 17:47:00.396540 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:47:00.397542 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:47:00.397542 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:47:00.397542 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:47:00.397542 : ++ 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\\emargement.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:2025-07-11 17:49:22.166874 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:49:22.166874 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:49:22.166874 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:49:22.166874 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:49:22.166874 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-11 17:49:28.714910 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:49:28.714910 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:49:28.714910 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:49:28.714910 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:49:28.714910 : ++ 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:2025-07-11 17:52:51.843986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 17:52:51.843986 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 17:52:51.843986 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 17:52:51.843986 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 17:52:51.843986 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 17:52:51.951339 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:52:52] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:53:42.328828 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:53:42] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:12.958999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.961999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.964999 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.965998 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:12.969000 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.971001 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.973000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:12.980000 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.983002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:12.990002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:12] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:12.993005 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:12.996005 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:13] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:32.479789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.482788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.485805 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.486789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.490788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:32.496790 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.499792 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.503789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:32.511788 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:32.516789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.517789 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:54:32.522789 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:32] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:54:34.398918 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:54:34] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.797804 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.800807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.800807 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.804597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.804597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.805597 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.809109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.815110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.817111 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.820110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:01.823144 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 17:56:01.826110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 17:56:32.174924 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 17:56:32] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.930899 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:00:25.935898 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:00:25.941917 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.950905 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.955902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:00:25.957916 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.968899 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.976923 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:00:25.987419 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:25.995425 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:00:26.002427 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:00:26.009426 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:26] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:26] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:00:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.340699 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.344697 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.349702 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.364215 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.435512 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.437512 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.438544 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.443513 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.452844 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.453843 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.464357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.469868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.476873 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.482883 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:06.487883 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:06.492882 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:11.376890 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:11.379893 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:11.382934 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:11.389924 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:11.396927 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:01:11.397924 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:11.405438 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:11] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:14.635689 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:01:17.509154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:01:17] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:02:33.128483 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:02:33] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/- HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:02:41.437679 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:02:41] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:02:46.869709 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:02:47] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/- HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:02:55.289595 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:02:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:02:58.599908 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:02:58] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:03:07.680432 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:03:09] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/66e5621bdb3c4ad08f1b1968 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:2025-07-11 18:05:11.560311 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:05:11.561310 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:05:11.561310 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:05:11.561310 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:05:11.561310 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:05:26.615839 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:05:26] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:05:32.218647 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:05:32] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:06:06.307227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:06:06] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:06:11.630253 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:06:11] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8,66e5621bdb3c4ad08f1b1968 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:2025-07-11 18:07:13.824257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:07:13.824257 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:07:13.825257 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:07:13.825257 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:07:13.825257 : ++ 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:2025-07-11 18:08:03.517845 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:08:03.517845 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:08:03.517845 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:08:03.517845 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:08:03.517845 : ++ 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:2025-07-11 18:08:38.178315 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:08:38.179316 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:08:38.179316 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:08:38.179316 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:08:38.179316 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:08:38.445020 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:08:38] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:08:43.653968 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:08:44] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8,66e5621bdb3c4ad08f1b1968 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:09:32.837861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:09:32] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:09:37.676324 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:09:37] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\emargement.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:2025-07-11 18:11:00.581944 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:11:00.581944 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:11:00.581944 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:11:00.581944 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:11:00.581944 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:11:28.461751 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:11:28] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:11:33.899880 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:11:34] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\emargement.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:2025-07-11 18:13:20.199998 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:13:20.199998 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:13:20.199998 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:13:20.199998 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:13:20.199998 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:13:26.830088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:13:26] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:13:31.724640 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:13:31] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 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:2025-07-11 18:14:38.665854 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:14:38.665854 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:14:38.665854 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:14:38.665854 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:14:38.665854 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:14:39.151757 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:14:39] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:14:46.389076 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:14:46] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:00.269049 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:00] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:07.343287 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:07] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:15.947862 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:15] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:21.656033 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : CONDUIRE UN PROJET
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 09:00 - 22/09/2025 12:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nuuu | \nppp | \n Non | \n
\n\n | \n
\n\n22/09/2025 13:30 - 22/09/2025 17:00 | \nsdsqdq | \nqsdqsdsq | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:22] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66e561baf6d6f0c1ee9620d3/conduire-un-projet-af4/6605a823d07e7e503a02b50a/6860fda2e7c8d8e8ecf178d8,66e5621bdb3c4ad08f1b1968 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:26.531038 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:26] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.160086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.286684 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.541747 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.651291 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.714867 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:38.737957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:15:38.822623 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:39.039159 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:39.067242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:39.138778 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:39.293672 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:15:39.336483 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:48.844338 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:15:48.869459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:48.896110 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:48.915141 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:48.941230 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:48.977248 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:48] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:49.007232 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:54.390000 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:57.216385 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:15:59.416163 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:15:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:16:03.776880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:16:10.494648 : CreateTableauEmargement_From_Sequence - INFO : 0 Documents supprimés de la collection : emargement : session = 66cdeb5d7e8061b7b6f9b066
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:16:10] "POST /myclass/api/CreateTableauEmargement_From_Sequence/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:16:10.645256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:16:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:16:18.739496 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:16:18] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:16:41.363367 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:16:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:17:07.524503 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:17:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:17:09.242986 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:17:09] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:17:18.946952 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n\n
\n
\n
\n Formation : CONDUIRE UN PROJET
Date\n : 11/07/2025
\n
\n
\n
\n \n \n \n \n \n \n \n Date | \n Nom | \n Prénom | \n Présent | \n Signature | \n
\n \n | \n
\n \n 06/08/2024 09:00 - 06/08/2024 12:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 06/08/2024 09:00 - 06/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 06/08/2024 09:00 - 06/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 06/08/2024 13:30 - 06/08/2024 17:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 06/08/2024 13:30 - 06/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 06/08/2024 13:30 - 06/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 09:00 - 07/08/2024 12:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 09:00 - 07/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 09:00 - 07/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 13:30 - 07/08/2024 17:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 13:30 - 07/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 07/08/2024 13:30 - 07/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 09:00 - 08/08/2024 12:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 09:00 - 08/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 09:00 - 08/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 13:30 - 08/08/2024 17:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 13:30 - 08/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/08/2024 13:30 - 08/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 09:00 - 09/08/2024 12:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 09:00 - 09/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 09:00 - 09/08/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 13:30 - 09/08/2024 17:00 | \n part nom2 | \n part 2 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 13:30 - 09/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/08/2024 13:30 - 09/08/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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: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: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: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: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: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: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: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: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, None]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:17:19] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66cdeb5d7e8061b7b6f9b066/conduire-un-projet-af4/6605a7ead07e7e503a02b509/66d572611814d63cbc46a7ce,66d572701814d63cbc46a979,66d572721814d63cbc46a9bd HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:17:30.550019 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:17:30] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:18:49.387139 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:18:49.390137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:18:49.391138 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:18:49.393137 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:18:49.394140 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:18:49.397139 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:18:49.400139 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:18:51.210280 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:18:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:07.135911 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:07.137911 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:07.140967 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:07.142911 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:07.145912 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:07.147912 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:07.148911 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:08.797439 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:13.986625 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:13.989626 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:13.992132 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:13.994719 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:13.997717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:13] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:14.000717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:14.006723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:15.810154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:19.704146 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:19] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:24.172976 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:24] "POST /myclass/api/Get_List_Modele_Attestion_Formation_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:32.251351 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:32] "POST /myclass/api/Init_Attestation_Formation_With_Template_For_All_Inscription/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:32.303870 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:32] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:35.096513 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:35.098501 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:35] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:36.580177 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:36] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:39.084053 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:39.086499 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:39.088968 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:39.090963 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:19:39.092965 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:39] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:39] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:39] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:40.493759 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:40] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:42.748963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:45.690811 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:45] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:19:54.305445 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n
\n
Formation : TECHNICIEN VENDEUR CONSEIL
Date : 11/07/2025
\n
\n
\n\n\nDate | \nNom | \nPrénom | \nPrésent | \n
\n\n | \n
\n\n01/07/2024 09:00 - 01/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n01/07/2024 09:00 - 01/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n01/07/2024 13:30 - 01/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n01/07/2024 13:30 - 01/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n02/07/2024 09:00 - 02/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n02/07/2024 09:00 - 02/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n02/07/2024 13:30 - 02/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n02/07/2024 13:30 - 02/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n03/07/2024 09:00 - 03/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n03/07/2024 09:00 - 03/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n03/07/2024 13:30 - 03/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n03/07/2024 13:30 - 03/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n04/07/2024 09:00 - 04/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n04/07/2024 09:00 - 04/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n04/07/2024 13:30 - 04/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n04/07/2024 13:30 - 04/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n05/07/2024 09:00 - 05/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n05/07/2024 09:00 - 05/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n05/07/2024 13:30 - 05/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n05/07/2024 13:30 - 05/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n08/07/2024 09:00 - 08/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n08/07/2024 09:00 - 08/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n08/07/2024 13:30 - 08/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n08/07/2024 13:30 - 08/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n09/07/2024 09:00 - 09/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n09/07/2024 09:00 - 09/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n09/07/2024 13:30 - 09/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n09/07/2024 13:30 - 09/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n10/07/2024 09:00 - 10/07/2024 12:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n10/07/2024 09:00 - 10/07/2024 12:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n10/07/2024 13:30 - 10/07/2024 17:00 | \nDevis_116_Reservation_Nom_1 | \nDevis_116_Reservation_Prenom_1 | \n Non | \n
\n\n | \n
\n\n10/07/2024 13:30 - 10/07/2024 17:00 | \npart nom5_client | \npart 5 | \n Non | \n
\n\n | \n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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: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: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: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: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: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: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: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: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:None
+DEBUG:xhtml2pdf.tables:None
+DEBUG:xhtml2pdf.tables:None
+DEBUG:xhtml2pdf.tables:Col widths: [None, None, None, None]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:19:54] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66674f8ec5b050c7a203b359/technicien-vendeur-conseil-921/6605a823d07e7e503a02b50a/667c4f71b5b087d5bd38d1f2,667c4f7bb5b087d5bd38d2b0 HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:20:15.178766 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:20:15] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:20:19.506773 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n\n
\n
\n
\n Formation : TECHNICIEN VENDEUR CONSEIL
Date\n : 11/07/2025
\n
\n
\n
\n \n \n \n \n \n \n \n Date | \n Nom | \n Prénom | \n Présent | \n Signature | \n
\n \n | \n
\n \n 01/07/2024 09:00 - 01/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 09:00 - 01/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 09:00 - 01/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 13:30 - 01/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 13:30 - 01/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 13:30 - 01/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 09:00 - 02/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 09:00 - 02/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 09:00 - 02/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 13:30 - 02/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 13:30 - 02/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 13:30 - 02/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 09:00 - 03/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 09:00 - 03/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 09:00 - 03/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 13:30 - 03/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 13:30 - 03/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 13:30 - 03/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 09:00 - 04/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 09:00 - 04/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 09:00 - 04/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 13:30 - 04/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 13:30 - 04/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 13:30 - 04/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 09:00 - 05/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 09:00 - 05/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 09:00 - 05/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 13:30 - 05/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 13:30 - 05/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 13:30 - 05/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 09:00 - 08/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 09:00 - 08/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 09:00 - 08/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 13:30 - 08/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 13:30 - 08/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 13:30 - 08/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 09:00 - 09/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 09:00 - 09/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 09:00 - 09/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 13:30 - 09/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 13:30 - 09/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 13:30 - 09/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 09:00 - 10/07/2024 12:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 09:00 - 10/07/2024 12:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 09:00 - 10/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 13:30 - 10/07/2024 17:00 | \n part nom6_client | \n part 6 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 13:30 - 10/07/2024 17:00 | \n Devis_116_Reservation_Nom_1 | \n Devis_116_Reservation_Prenom_1 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 13:30 - 10/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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, None]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:20:19] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66674f8ec5b050c7a203b359/technicien-vendeur-conseil-921/6605a7ead07e7e503a02b509/- HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\emargement.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:2025-07-11 18:20:53.809758 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:20:53.809758 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:20:53.809758 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:20:53.810785 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:20:53.810785 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:25:04.445764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:25:04] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:25:12.235754 : Security check : IP adresse '127.0.0.1' connected
+DEBUG:xhtml2pdf.document:pisaDocument options:
+ src = '
\n
\n\n
\n
\n
\n Formation : TECHNICIEN VENDEUR CONSEIL
Date\n : 11/07/2025
\n
\n
\n
\n \n \n \n \n \n \n \n Date | \n Nom | \n Prénom | \n Présent | \n Signature | \n
\n \n | \n
\n \n 01/07/2024 09:00 - 01/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 01/07/2024 13:30 - 01/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 09:00 - 02/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 02/07/2024 13:30 - 02/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 09:00 - 03/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 03/07/2024 13:30 - 03/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 09:00 - 04/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 04/07/2024 13:30 - 04/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 09:00 - 05/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 05/07/2024 13:30 - 05/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 09:00 - 08/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 08/07/2024 13:30 - 08/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 09:00 - 09/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 09/07/2024 13:30 - 09/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 09:00 - 10/07/2024 12:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n 10/07/2024 13:30 - 10/07/2024 17:00 | \n part nom5_client | \n part 5 | \n Non | \n \n | \n
\n \n | \n
\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
Colas Rail
Téléphone : 07 69 20 39 45
Email : mysytraining+dev@gmail.com
Site : https://colasrail.com/
\n
'
+ dest = <_io.BufferedRandom name='./Emargement/Emargement.pdf'>
+ path = ''
+ link_callback = None
+ xhtml = False
+ context_meta = 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: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: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: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: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: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: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, None]
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:25:12] "GET /myclass/api/GerneratePDFEmargementList/TteGsqodChFin8kq69puVKnLCqsV3OBeQQ/66674f8ec5b050c7a203b359/technicien-vendeur-conseil-921/6605a7ead07e7e503a02b509/667c4f7bb5b087d5bd38d2b0 HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\emargement.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:2025-07-11 18:26:27.172897 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 18:26:27.173897 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 18:26:27.173897 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 18:26:27.173897 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 18:26:27.173897 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 18:26:27.551503 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:26:27] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:26:30.800400 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:26:30] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:26:34.614550 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:26:34] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:37.528585 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.539704 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:37.572236 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.578232 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:37.585233 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:37.588244 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:37.598797 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.602798 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.607803 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.611799 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.615796 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:37.619806 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.283414 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:40.289360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:40.295357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:40.302361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.313470 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:30:40.321474 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.330482 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.338602 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.346599 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.354607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.372598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:40] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:30:40.385597 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:30:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:57:54.778012 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:57:54] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:57:54.999880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:57:55.002951 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:57:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:57:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:58:04.736925 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:58:04.740927 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:58:04.749181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:58:04.755519 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:58:04.756517 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:58:04.767528 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:58:04.773527 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:58:04] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.211117 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.216112 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.221276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.226279 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.234277 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.241276 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.247283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.251285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.255295 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.258802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.263805 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.267802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.907092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.909101 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.914089 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.922088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.924087 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.928086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.935091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.938088 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.941086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.949283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:35.955191 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:35.961725 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:43.793273 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:43.798060 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:43.803143 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:43.806142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 18:59:43.811141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:43.812141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 18:59:43.816142 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 18:59:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.912891 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.917835 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.925834 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.931832 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.939858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.949857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.956362 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.967378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.972378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.981994 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:23.989204 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:23.997203 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.001714 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.014286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.025286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.030286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.032286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.043296 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.049288 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.058286 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.065283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.068283 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:24.075290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:24.077290 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:24] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:38.004278 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:38] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:38.230722 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:38.233723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.011046 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.017006 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.023002 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.042059 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.130644 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.134058 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.135070 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.139092 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.143103 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.147106 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.153101 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.159598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.161112 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.168122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:52.174121 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:52.179121 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:56.535695 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:56.542226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:56.545226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:56.548267 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:01:56.553264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:56.557269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:01:56.560266 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:01:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.105294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.110338 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.113295 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.116294 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.120431 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.127477 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.131433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.137432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.143429 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.158443 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.161435 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.169433 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.468337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.471341 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.476341 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.479441 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.486450 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.492334 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.495334 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.499340 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.504341 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.509346 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:02:42.515348 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:02:42.527405 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:42] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:02:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:22.240540 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:22.368833 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:22.376828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:22.381328 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:22.385344 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:22.393875 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:22.397942 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:22] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:28.055831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:28] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:48.429468 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:48.434468 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:48.439469 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:48] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:48] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:48] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:48.569539 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:48] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:52.408310 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:03:52.411309 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:52.418796 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:03:52.427854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:52] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:03:52] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:30.030056 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:30.048089 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:30.050087 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:30.061216 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:30] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:30] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:30] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:40.367929 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:40.370944 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:40.384471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:40] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:40] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:40.526086 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:40] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:43.653538 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:43.659598 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:43.662404 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:43.677378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:43] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:43] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:58.457411 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:58.460250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:58.469865 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:58.476226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:58.481377 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:10:58.487593 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:10:58.490412 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:10:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.356452 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.360936 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.373600 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.377618 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.385154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.397044 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.406281 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.415382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.421885 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.428888 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:07.440099 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:07.443105 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:15.224367 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:15.228368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:15.233368 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:15.238368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:15.250103 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:15.252710 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:15.258711 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:45.618793 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:45] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:13:45.840761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:13:45.844762 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:13:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:14:04.442631 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:14:04.451635 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:14:04.459154 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:04] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:04] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:04] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:14:04.561227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:04] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:14:08.158107 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:14:08.165125 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:14:08.177336 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:14:08.217723 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:08] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:14:08] "POST /myclass/api/GetListOpco/ 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:2025-07-11 19:30:24.345453 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 19:30:24.345453 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 19:30:24.345453 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 19:30:24.345453 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 19:30:24.345453 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 19:40:03.013554 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:40:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:40:03.018553 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:40:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:40:16.121732 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:40:16] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:40:18.616979 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:40:18.629059 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:40:18] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:40:18] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:20.327734 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:20] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:23.307274 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:23] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:31.518199 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:43:31.522205 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:43:31.527200 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:31.544207 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:31.610527 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:31] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:31.613868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:31] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:43.878237 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:43] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:50.088246 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:43:50.091242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 19:43:56.358297 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 19:43:56.361413 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:56] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 19:43:56] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ 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:2025-07-11 19:53:05.371747 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 19:53:05.372748 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 19:53:05.372748 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 19:53:05.372748 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 19:53:05.372748 : ++ 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\\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:2025-07-11 21:44:55.388336 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 21:44:55.388336 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 21:44:55.388336 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 21:44:55.388336 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 21:44:55.389350 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-11 21:45:02.048020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 21:45:02.048020 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 21:45:02.048020 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 21:45:02.048020 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 21:45:02.048020 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 21:45:02.136688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:02.137672 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:02.139671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:02.141672 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:02.142673 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:02.147673 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:02.154672 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:02.158672 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:02.160673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:02.161672 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:02] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:17.785307 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:17] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:20.354686 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:20.357685 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:20.362686 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:20] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:20] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:20] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:20.434702 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:20] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:22.407618 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:22.415621 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:22] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:22.426633 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:22] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:22.439622 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:22] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:45.778074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:45:45.780079 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:45.781609 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:45:45.785620 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:45:45] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:47:36.867761 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:47:36.872777 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:47:36.876759 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:47:36.878779 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:47:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:47:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:47:36] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:47:36] "POST /myclass/api/GetListOpco/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.547980 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.550978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.554978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.555978 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.557981 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.565212 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.574285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.584250 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.591251 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.597255 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:52.606255 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:52.611256 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:58.620902 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:58.624900 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:58.631900 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:58.635919 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:58.640901 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:53:58.649902 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:53:58.656901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:53:58] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:54:01.114259 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:54:55.183879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:54:55.187876 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:54:55.190877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:54:55.194877 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:54:55.198880 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:54:55.208879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:54:55.211879 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:55] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:54:57.593227 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:54:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:55:20.959477 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:55:22] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 21:55:22.895226 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:55:22.899196 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 21:55:22.903196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:55:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:55:22] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 21:55:22] "POST /myclass/api/GetTableauEmargement/ 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_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:2025-07-11 21:59:26.341641 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 21:59:26.341641 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 21:59:26.341641 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 21:59:26.341641 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 21:59:26.341641 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 22:01:17.523263 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.526265 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.528318 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.540319 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.616180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.618179 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.620180 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.622182 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.624178 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.625179 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.630303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.634302 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.638308 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.641310 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:17.643310 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:17.646312 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:34.104711 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:34.106717 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:34] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:50.389994 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:50] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:01:52.048616 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:01:52.050613 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:01:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:01.107400 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:01.112404 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:01.114400 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:01.114400 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:01.119983 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:01.124977 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:01.126974 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:03.583316 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:14.233489 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:15] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:03:15.295264 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:15.297262 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:03:15.298426 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:03:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:07:42.149359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:07:42.862473 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:07:42.863479 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:07:42.865478 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:07:42.867480 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:07:42.869481 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:07:43.858875 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:07:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:09:43.061122 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:09:44] "POST /myclass/api/SendInscriptionConfirmation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:11.131491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.132491 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.134496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.136494 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.137496 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.138496 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:11.147497 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.149641 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.151838 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.153837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:11.156837 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:11.161344 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:34.319990 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:34.324500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:34.327520 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:34.328500 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:11:34.330500 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:34.334512 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:34.338500 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:34] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:11:37.047067 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:11:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:12:38.526744 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.529235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.529235 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.532237 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.534235 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:12:38.538242 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:12:38.547249 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.548240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:12:38.552241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:12:38.557621 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.561624 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:12:38.563619 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:12:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:13:26.853393 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:13:29] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:13:29.370957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:13:29.371957 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:13:29.372957 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:13:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:13:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:13:29] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:14:40.688484 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:14:41] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:14:41.760480 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:14:41.761485 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:14:41.763485 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:14:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:14:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:14:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:21.228260 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:21] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:25.751171 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:25] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:33.387073 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:34.358151 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:35.434037 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:41.873726 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:25:41.882243 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:25:41.889240 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:25:41.892255 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:41.900239 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:25:41.907255 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:41.914241 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:41] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:44.054764 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:25:45.776932 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:25:45] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.784954 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.788953 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.794467 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.807465 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.864466 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.866472 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.870470 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.874471 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.881991 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.885986 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.891084 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.894083 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.902083 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.905107 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:10.911104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:10.917084 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:27.255703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:27.260701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:27.263701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:27.268701 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:27.275715 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:27.279699 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:27.292746 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:36.823082 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:36.828077 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:36.832091 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:36.835076 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:36.839076 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:36.854588 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:36.859635 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:36] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:39.546133 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:39] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:47.540555 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:47.544074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:47.547074 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:29:47.553092 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:47.563074 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:47.560109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:47.573091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:49.551157 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:29:53.891493 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:29:53] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:30:44.402831 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:30:44.409857 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:30:44.412828 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:30:44.415823 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:30:44.419827 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:30:44.430826 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:30:44.433834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:30:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:31:44.682527 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:31:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:31:47.167088 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:31:47] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.408141 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:32:46.412565 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:32:46.420576 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:32:46.426610 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.430586 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.440598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.453584 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.461583 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.473567 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:32:46.481615 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:32:46.485598 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:32:46.500664 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:32:46] "POST /myclass/api/GetAllValideSessionPartner_List/ 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:2025-07-11 22:34:30.043073 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 22:34:30.043073 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 22:34:30.043073 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 22:34:30.043073 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 22:34:30.043073 : ++ 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\\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:2025-07-11 22:34:57.551206 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-11 22:34:57.551206 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-11 22:34:57.551206 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-11 22:34:57.551206 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-11 22:34:57.551206 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-11 22:35:09.511947 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:12.403972 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:12] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.337269 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.341290 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.345309 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.362090 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.425800 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.433994 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.439091 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.442104 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.447802 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.459371 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.466363 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.471364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.479365 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.487364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:35:39.505177 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:35:39.514181 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:39] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:35:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:36:09.258130 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:36:09.261666 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:36:09.262671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:36:09.264193 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:36:09.266703 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:36:09.269767 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:36:09.272283 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:09] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:36:54.081361 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:36:56.852736 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:36:56] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:13.483653 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:15.657788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:15.659804 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:15.663787 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:15.664804 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:15.669804 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:15] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:15] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:15] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:15] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:25.193808 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:25.198710 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:25.203725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:25.205750 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:25.208707 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:37:25.213709 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:25.238706 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:27.075175 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:29.627536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:29] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:37:42.979536 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:37:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:38:01.477299 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:38:01.483674 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:38:01.489685 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:38:01.496696 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:38:01.501819 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:38:01.505817 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:38:01.510848 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:38:03.916854 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:38:05.819969 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:38:05] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.853376 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.855375 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.861378 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.865377 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.868373 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.871377 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.876380 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.881379 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.889375 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.894378 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:39:08.897377 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:39:08.900375 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:39:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.674843 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.685353 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:38.686351 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:38.688357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:38.690356 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.694357 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.699361 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:38.700362 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:38.702878 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.706884 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.711886 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:38.718390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:46.741295 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:46.747315 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:46.749302 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:46.752295 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:46.754301 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:46.755804 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:46.761816 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:46] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:48.695948 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:48] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:50.168105 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:50] "POST /myclass/api/Get_List_Emargement_With_Filter/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:59.500671 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:59.504675 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:59.509677 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:59.513686 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-11 22:43:59.514690 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:59.519935 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:43:59.528938 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:43:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:44:01.258196 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:44:01] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 -
+INFO:root:2025-07-11 22:44:02.731368 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [11/Jul/2025 22:44:02] "POST /myclass/api/Get_List_Emargement_With_Filter/ 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:2025-07-12 08:45:36.629350 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-12 08:45:36.630345 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-12 08:45:36.631341 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-12 08:45:36.631341 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-12 08:45:36.631341 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+INFO:werkzeug:[31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
+ * Running on http://localhost:5001
+INFO:werkzeug:[33mPress CTRL+C to quit[0m
+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:2025-07-12 08:46:51.969004 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-12 08:46:51.969004 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-12 08:46:51.969996 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-12 08:46:51.969996 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-12 08:46:51.969996 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-12 08:59:59.151472 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.162695 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.165111 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.170094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.173102 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.176094 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 08:59:59.178102 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 08:59:59] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:09.467820 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:09.469822 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:09.471832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:09] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:10.418569 : get_linked_customer_to_partner -list index out of range - ERRORRRR AT Line : 519
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:10] "POST /myclass/api/get_linked_customer_to_partner/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:14.817444 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:14] "POST /myclass/api/get_cust_specific_prices_by_partner/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:22.119131 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:22] "POST /myclass/api/update_business_price/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:22.169659 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:22.172678 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:22] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:22] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:36.200353 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:36.202675 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:36.205675 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:36.217210 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:36.281207 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:36.283209 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:00:36.286210 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/get_cust_prices_by_partner/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:00:36.294209 : get_linked_customer_to_partner -list index out of range - ERRORRRR AT Line : 519
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/get_linked_customer_to_partner/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:00:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:03.416201 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:03.478726 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:03.480725 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:03.481727 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:03.484360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:03.485888 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:03.492026 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:03] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:08.001432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:08] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:11.390771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:11.392771 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:11.395779 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:11] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:11] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:11.500480 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:11] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:25.317287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:25.318303 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:01:25.327303 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:25] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:25] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:01:25.568068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:01:25] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:06:33.502184 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:06:33.506286 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:06:33.509752 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:06:33] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:06:33] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:06:33] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:06:33.760488 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:06:33] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:08:14.733401 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:08:14.735402 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:08:14.738641 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:08:14.832302 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:08:14.834302 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:08:14.837427 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:08:14.869964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:14] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:08:15.002906 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:08:15] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:17.479036 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:17.481552 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:17.484548 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:17.518221 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:17.718200 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:17.719198 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:17.720204 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:17.963864 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:17] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:38.620334 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:38.624319 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:38.628322 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:38.646864 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:38.667946 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:38.963961 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:09:38.967068 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:38] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:09:39.311390 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:09:39] "POST /myclass/api/getRecodedClassImage_no_token/ 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:2025-07-12 09:10:09.274968 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-12 09:10:09.274968 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-12 09:10:09.274968 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-12 09:10:09.274968 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-12 09:10:09.274968 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-12 09:10:36.486010 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:10:36.490012 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:10:36.491901 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:10:36] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:10:36] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:10:36] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:10:36.736418 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:10:36] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_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:2025-07-12 09:11:26.903026 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-12 09:11:26.903026 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-12 09:11:26.903026 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-12 09:11:26.904024 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-12 09:11:26.904024 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-12 09:11:45.858941 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:11:45.860955 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:11:45.870607 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:11:45] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:11:45] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:11:45] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:11:46.118638 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:11:46] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\class_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:2025-07-12 09:30:04.712639 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
+INFO:root:2025-07-12 09:30:04.712639 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++
+INFO:root:2025-07-12 09:30:04.713647 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++
+INFO:root:2025-07-12 09:30:04.713647 : ++ FLASK PORT 5001 ++
+INFO:root:2025-07-12 09:30:04.713647 : ++ LMS_BAS_URL mysy-hosting.com/ ++
+WARNING:werkzeug: * Debugger is active!
+INFO:werkzeug: * Debugger PIN: 479-264-725
+INFO:root:2025-07-12 09:30:07.305788 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:30:07.315866 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:30:07.324432 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:07] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:07] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:07] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:30:07.567627 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:07] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:30:10.147416 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 09:30:10.166425 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:30:10.184428 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:10] "POST /myclass/api/get_class/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:10] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 09:30:10.312436 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 09:30:10] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:46:56.971154 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:56.988144 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:56.996249 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:46:57.006792 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:46:57.044765 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:46:57.066762 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:57.070769 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:57.075765 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:57.078766 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:46:57.086868 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:46:57.095767 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:46:57] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:47:03.893244 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:47:03.897807 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:47:03.902757 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:47:03.912758 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:47:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:47:03] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:47:03] "POST /myclass/api/Get_List_Theme_Catalog_Pub/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:47:06.067381 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:47:06] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:50:49.322851 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:50:49] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:50:49.395024 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:50:49] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:04.682360 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:04.689364 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:04.700370 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:04.706393 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:04.713374 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:04] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:04] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:04] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:04] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-12 10:51:05.266280 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.269283 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.279287 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.289283 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.304314 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.318836 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.331836 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.338833 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.348831 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.357832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.366832 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.374842 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.384834 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.398848 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.406282 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.414285 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.428813 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.430810 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.449829 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.457357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.466359 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.486357 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.494364 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.510374 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.522698 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.535688 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.545690 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.566236 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:51:05.577779 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:51:05.587580 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:51:05] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:01.443677 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:01] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:01.483957 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:01] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:07.684247 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:07.690402 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:07.692413 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:07.700412 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:07.701410 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:07] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:07] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:07] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-12 10:57:08.160582 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.165320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.171320 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.179331 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.188329 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.196963 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.209866 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.218857 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.231858 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.241861 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.251879 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.262411 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.275422 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.291931 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.301928 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.311964 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.322999 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.333600 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.344594 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.352701 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.365697 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.379624 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.391273 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.404373 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.419382 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.425337 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.439402 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.453173 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:57:08.465172 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:57:08.472825 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:57:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:24.880109 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:24] "POST /myclass/api/Add_Update_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:24.945990 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:25] "POST /myclass/api/Get_Partner_Catalog_Pub_Config/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:30.560504 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:30.566501 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:30.569490 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:30.573488 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:30.578600 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:30] "POST /myclass/api/Get_Partner_Data_From_Subdomain/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:30] "POST /myclass/api/get_all_class_Given_partner_owner_recid_No_Login/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:30] "[35m[1mPOST /myclass/api/get_List_domaine_metier/ HTTP/1.1[0m" 500 -
+INFO:root:2025-07-12 10:58:31.069658 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.075658 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.077659 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.086673 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.094778 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.103611 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.115211 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.126844 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.137850 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.141842 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.148845 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.163839 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.178880 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.187837 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.190845 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.202869 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.220240 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.213867 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.229226 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.240223 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.249952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.255948 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.270952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.276952 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.290960 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.311967 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.316066 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.332021 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 -
+INFO:root:2025-07-12 10:58:31.352463 : Security check : IP adresse '127.0.0.1' connected
+INFO:root:2025-07-12 10:58:31.362459 : Security check : IP adresse '127.0.0.1' connected
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 -
+INFO:werkzeug:127.0.0.1 - - [12/Jul/2025 10:58:31] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 -
diff --git a/Session_Formation.py b/Session_Formation.py
index 852b9cd..f2933e9 100644
--- a/Session_Formation.py
+++ b/Session_Formation.py
@@ -7210,7 +7210,7 @@ def Create_Convention_By_Client_PDF(diction):
# Verifier que le client est valide
client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['client_id'])), 'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if (client_data is None ):
mycommon.myprint(
@@ -9345,7 +9345,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email(tab_files, Folder, diction):
si non, créer le client
"""
is_inscription_no_client_exist = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email'])})
# S'il ya plusieurs clients avec la meme adresse email, alors il y a un bin's
@@ -9358,7 +9358,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email(tab_files, Folder, diction):
# Si le client existe, verifier qu'il est valide et pas locké
if (is_inscription_no_client_exist == 1):
is_inscription_no_client_valide_no_locked = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -9371,7 +9371,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email(tab_files, Folder, diction):
# Mise à jour de l'inscription avec l'_id du client
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -9475,7 +9475,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email(tab_files, Folder, diction):
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -9737,7 +9737,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email_SAVE_ORIG(tab_files, Folder,
si non, créer le client
"""
is_inscription_no_client_exist = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email'])})
# S'il ya plusieurs clients avec la meme adresse email, alors il y a un bin's
@@ -9750,7 +9750,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email_SAVE_ORIG(tab_files, Folder,
# Si le client existe, verifier qu'il est valide et pas locké
if (is_inscription_no_client_exist == 1):
is_inscription_no_client_valide_no_locked = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -9763,7 +9763,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email_SAVE_ORIG(tab_files, Folder,
# Mise à jour de l'inscription avec l'_id du client
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -9867,7 +9867,7 @@ def Prepare_and_Send_Facture_From_Session_By_Email_SAVE_ORIG(tab_files, Folder,
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -10123,7 +10123,7 @@ def Invoice_Partner_From_Session( diction):
{'_id': ObjectId(str(diction['partner_client_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
# Recuperation des données du stagiaire
@@ -10500,7 +10500,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path,
{'_id': ObjectId(str(diction['partner_client_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
# Traitement de l'eventuel fichier joint
@@ -10667,7 +10667,7 @@ def Sent_Facture_Stagiaire_By_Email_By_Partner_client(tab_files_name_full_path,
client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['partner_client_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid': str(my_partner['recid']),
+ 'partner_owner_recid': str(my_partner['recid']),
})
@@ -11380,7 +11380,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id(tab_files, Folder, d
si non, créer le client
"""
is_inscription_no_client_exist = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email'])})
# S'il ya plusieurs clients avec la meme adresse email, alors il y a un bin's
@@ -11393,7 +11393,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id(tab_files, Folder, d
# Si le client existe, verifier qu'il est valide et pas locké
if (is_inscription_no_client_exist == 1):
is_inscription_no_client_valide_no_locked = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -11406,7 +11406,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id(tab_files, Folder, d
# Mise à jour de l'inscription avec l'_id du client
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -11509,7 +11509,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id(tab_files, Folder, d
local_inscription_no_client['email']) + " ", False
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -11879,10 +11879,15 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id_SAVE_ORIG(tab_files,
- Verifier s'il y a un client avec la même adresse email,
si non, créer le client
"""
+
+
+
is_inscription_no_client_exist = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email'])})
+ print(" ### is_inscription_no_client_exist_count =", is_inscription_no_client_exist)
+
# S'il ya plusieurs clients avec la meme adresse email, alors il y a un bin's
if (is_inscription_no_client_exist > 1):
mycommon.myprint(" Facturation : L'adresse email : " + str(
@@ -11893,7 +11898,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id_SAVE_ORIG(tab_files,
# Si le client existe, verifier qu'il est valide et pas locké
if (is_inscription_no_client_exist == 1):
is_inscription_no_client_valide_no_locked = MYSY_GV.dbname['partner_client'].count_documents(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -11906,7 +11911,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id_SAVE_ORIG(tab_files,
# Mise à jour de l'inscription avec l'_id du nouveau client pour les champs : client_rattachement_id et facture_client_rattachement_id
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -12017,7 +12022,7 @@ def Prepare_and_Send_Facture_From_Session_By_Inscription_Id_SAVE_ORIG(tab_files,
local_inscription_no_client['email']) + " ", False
inscription_no_client_valide_no_locked_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(my_partner['recid']),
+ {'partner_owner_recid': str(my_partner['recid']),
'email': str(local_inscription_no_client['email']),
'valide': "1",
'locked': '0'})
@@ -12466,7 +12471,7 @@ def Invoice_Partner_From_Session_By_Inscription_Id( diction):
{'_id': ObjectId(str(diction['partner_client_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
@@ -13053,7 +13058,7 @@ def Invoice_Splited_Partner_From_Session_By_Inscription_Id( diction):
{'_id': ObjectId(str(one_tab_split['partner_client'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
tab_inscrit_partial_data = []
@@ -13645,7 +13650,7 @@ def Invoice_Create_Secure_E_Document(diction):
if ("order_header_client_id" in Order_header_data.keys()):
Order_header_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(Order_header_data['order_header_client_id'])),
- 'partner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
+ 'partner_owner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
if (Order_header_client_data is None):
mycommon.myprint(str(inspect.stack()[0][
@@ -14367,7 +14372,7 @@ def Prepare_request_For_Preinsciption_Creation_By_Customer(diction):
"""
Verifier la validité du client
"""
- is_client_valide_count = MYSY_GV.dbname['partner_client'].count_documents({'partner_recid':str(my_partner['recid']),
+ is_client_valide_count = MYSY_GV.dbname['partner_client'].count_documents({'partner_owner_recid':str(my_partner['recid']),
'valide':'1',
'locked':'0',
'_id':ObjectId(str(diction['client_id']))})
@@ -14475,7 +14480,7 @@ def Send_Email_request_presinscription_data_validation(diction):
# Recuperation des données du client
tab_client = []
for client_id_data in MYSY_GV.dbname['partner_client'].find(
- {'_id': ObjectId(str(diction['client_id'])), 'partner_recid': str(diction['partner_recid']),
+ {'_id': ObjectId(str(diction['client_id'])), 'partner_owner_recid': str(diction['partner_recid']),
'valide': '1', 'locked':'0'}):
if (client_id_data is None):
@@ -14652,7 +14657,7 @@ def Client_Update_Liste_Attendee_No_Token(diction):
is_client_valide_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['client_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(diction['partner_recid'])})
+ 'partner_owner_recid':str(diction['partner_recid'])})
if(is_client_valide_data is None ):
mycommon.myprint(str(
inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide")
@@ -14867,7 +14872,7 @@ def Client_Delete_One_Attendee_No_Token(diction):
is_client_valide_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(diction['client_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(diction['partner_recid'])})
+ 'partner_owner_recid':str(diction['partner_recid'])})
if(is_client_valide_data is None ):
mycommon.myprint(str(
inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide")
diff --git a/apprenant_mgt.py b/apprenant_mgt.py
index 5b305bb..687dbf4 100644
--- a/apprenant_mgt.py
+++ b/apprenant_mgt.py
@@ -156,7 +156,7 @@ def Add_Apprenant(diction):
is_client_rattachement_id_valide = MYSY_GV.dbname['partner_client'].count_documents({'_id':ObjectId(str(diction['client_rattachement_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if( is_client_rattachement_id_valide <= 0 ):
mycommon.myprint(
str(inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide")
@@ -349,7 +349,7 @@ def Update_Apprenant(diction):
{'_id': ObjectId(str(diction['client_rattachement_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if (is_client_rattachement_id_valide <= 0):
mycommon.myprint(
str(inspect.stack()[0][3]) + " L'identifiant du client n'est pas valide")
@@ -841,11 +841,15 @@ def Get_List_Partner_Apprenant(diction):
user['is_ent_compte'] = '0'
- if( 'civilite' in val.keys() ):
+ if( 'civilite' in val.keys() and val['civilite'] in MYSY_GV.CIVILITE):
user['civilite'] = str(val['civilite']).lower()
else:
user['civilite'] = ""
+ if( str(user['civilite']).strip() == ""):
+ user['civilite'] = "neutre"
+
+
if ("date_naissance" not in user.keys() or str(user['date_naissance']) == ""):
user['date_naissance'] = "01/01/1900"
@@ -937,11 +941,14 @@ def Get_Apprenant_List_Partner_with_filter(diction):
else:
val['is_ent_compte'] = '0'
- if ('civilite' in retVal.keys()):
+ if ('civilite' in retVal.keys() and retVal['civilite'] in MYSY_GV.CIVILITE):
val['civilite'] = str(retVal['civilite']).lower()
else:
val['civilite'] = ""
+ if (str(val['civilite']).strip() == ""):
+ val['civilite'] = "neutre"
+
if ("date_naissance" not in retVal.keys() or str(retVal['date_naissance']) == ""):
val['date_naissance'] = "01/01/1900"
@@ -1024,7 +1031,7 @@ def Apprenant_Inscrire_Session(diction):
client_rattachement_id = ""
if( "client_rattachement_id" in diction.keys() and diction['client_rattachement_id'] ) :
is_client_rattachement_id_exist = MYSY_GV.dbname['partner_client'].count_documents({'_id': ObjectId(diction['client_rattachement_id']),
- 'partner_recid': str(
+ 'partner_owner_recid': str(
my_partner['recid']),
'valide': '1',
'locked': '0'})
@@ -1089,6 +1096,10 @@ def Apprenant_Inscrire_Session(diction):
new_data['email'] = apprenant_data['email']
new_data['nom'] = apprenant_data['nom']
new_data['civilite'] = str(apprenant_data['civilite']).lower()
+ if( str(apprenant_data['civilite']).strip() == ""):
+ new_data['civilite'] = "neutre"
+
+
new_data['prenom'] = apprenant_data['prenom']
new_data['telephone'] = apprenant_data['telephone']
new_data['modefinancement'] = str(diction['modefinancement'])
@@ -1235,7 +1246,7 @@ def Apprenant_Inscrire_Session_List(diction):
if ("client_rattachement_id" in diction.keys() and diction['client_rattachement_id']):
is_client_rattachement_id_exist = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(diction['client_rattachement_id']),
- 'partner_recid': str(
+ 'partner_owner_recid': str(
my_partner['recid']),
'valide': '1',
'locked': '0'})
@@ -1427,7 +1438,7 @@ def Get_Apprenant_List_Inscription(diction):
{'_id': ObjectId(str(val['client_rattachement_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])},
+ 'partner_owner_recid': str(my_partner['recid'])},
{'nom': 1})
if (client_rattachement_id_data and "nom" in client_rattachement_id_data.keys()):
@@ -1866,6 +1877,10 @@ def Add_Apprenant_mass(file=None, Folder=None, diction=None):
civilite = str(df['civilite'].values[n]).lower()
mydata['civilite'] = civilite
+ if( str(civilite).strip() == ""):
+ mydata['civilite'] = "neutre"
+
+
telephone = ""
if ("telephone" in df.keys()):
if (str(df['telephone'].values[n])):
@@ -2030,7 +2045,7 @@ def Add_Apprenant_mass(file=None, Folder=None, diction=None):
client_rattachement_data = MYSY_GV.dbname['partner_client'].find_one({'email':str(client_rattachement_email),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])},
+ 'partner_owner_recid':str(my_partner['recid'])},
{'_id':1})
if( '_id' in client_rattachement_data.keys()):
@@ -2170,7 +2185,7 @@ def Controle_Add_Apprenant_mass(saved_file=None, Folder=None, diction=None):
{'email': str(client_rattachement_email),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if (client_rattachement_data_count < 0):
mycommon.myprint(
@@ -2444,7 +2459,7 @@ def Print_Apprenant_PDF(diction):
for val in MYSY_GV.dbname['partner_client'].find({'_id':ObjectId(str(appenant_data['client_rattachement_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid']) }, {'_id':1}):
+ 'partner_owner_recid':str(my_partner['recid']) }, {'_id':1}):
tab_client.append(val['_id'])
@@ -2653,7 +2668,7 @@ def Export_Apprenant_To_Excel_From_from_List_Id(diction):
}}]},
{'$eq': ["$valide", "1"]},
- {'$eq': ["$partner_recid", '$$partner_owner_recid']}
+ {'$eq': ["$partner_owner_recid", '$$partner_owner_recid']}
]
}
@@ -2892,6 +2907,9 @@ def ENT_Create_Apprenant_Account(diction):
new_account['nom'] = local_apprenant_data['nom']
new_account['prenom'] = local_apprenant_data['prenom']
new_account['civilite'] = local_apprenant_data['civilite']
+ if( str(local_apprenant_data['civilite']).strip() == ""):
+ new_account['civilite'] = "neutre"
+
new_account['email'] = local_apprenant_data['email']
new_account['mob_phone'] = local_apprenant_data['telephone']
@@ -2930,7 +2948,15 @@ def ENT_Create_Apprenant_Account(diction):
return_document=ReturnDocument.AFTER
)
- convention_dictionnary_data['civilite'] = local_apprenant_data['civilite']
+ civilite = "neutre"
+ if( "civilite" in local_apprenant_data.keys() and local_apprenant_data['civilite']):
+ civilite = local_apprenant_data['civilite']
+
+ if( str(civilite).strip() == ""):
+ civilite = "neutre"
+
+ convention_dictionnary_data['civilite'] = civilite
+
convention_dictionnary_data['nom'] = local_apprenant_data['nom']
convention_dictionnary_data['prenom'] = local_apprenant_data['prenom']
convention_dictionnary_data['email'] = local_apprenant_data['email']
diff --git a/attached_file_mgt.py b/attached_file_mgt.py
index e17d938..d49945f 100644
--- a/attached_file_mgt.py
+++ b/attached_file_mgt.py
@@ -1093,7 +1093,7 @@ def Get_List_object_owner_collection_Stored_Files_With_Filter(diction):
if ("filter_nom_client" in diction.keys() and diction['filter_nom_client']):
sub_filt_partner_client_nom = {
'nom': {'$regex': str(diction['filter_nom_client']), "$options": "i"},
- 'partner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'}
+ 'partner_owner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'}
# Recuperation des '_id' des session dont le nom match en regexp
diff --git a/base_partner_catalog_config.py b/base_partner_catalog_config.py
index 18f054a..46baac6 100644
--- a/base_partner_catalog_config.py
+++ b/base_partner_catalog_config.py
@@ -114,8 +114,9 @@ def Add_Update_Partner_Catalog_Pub_Config(diction):
'indicateur_3_txt', 'indicateur_3_taille', 'indicateur_3_color', 'indicateur_3_gras',
'indicateur_4_txt', 'indicateur_4_taille', 'indicateur_4_color', 'indicateur_4_gras',
'cgv_pdf', 'cgu_pdf', 'mention_legale_pdf', 'contact_public_email', 'contact_public_telephone',
- 'partner_catalog_pub_url', 'partner_intranet_pub_url', 'partner_ent_student_url'
- ]
+ 'partner_catalog_pub_url', 'partner_intranet_pub_url', 'partner_ent_student_url',
+ 'affiche_indicateur', 'affiche_raison_sociale', 'affiche_contact']
+
incom_keys = diction.keys()
for val in incom_keys:
diff --git a/crm_opportunite.py b/crm_opportunite.py
index cbfcceb..49daaf3 100644
--- a/crm_opportunite.py
+++ b/crm_opportunite.py
@@ -136,7 +136,7 @@ def Add_CRM_Opportunite(diction):
is_client_id_valide = MYSY_GV.dbname["partner_client"].count_documents({'_id':ObjectId(str(partner_client_id)),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if( is_client_id_valide != 1):
mycommon.myprint(
@@ -415,7 +415,7 @@ def Update_CRM_Opportunite(diction):
is_client_id_valide = MYSY_GV.dbname["partner_client"].count_documents({'_id':ObjectId(str(partner_client_id)),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if( is_client_id_valide != 1):
mycommon.myprint(
@@ -670,7 +670,7 @@ def Get_List_CRM_Opportunite_with_filter(diction):
if ("partner_client_nom" in diction.keys() and diction['partner_client_nom']):
qry_sub_filter_client = {'nom': {'$regex': str(diction['partner_client_nom']), "$options": "i"},
- 'partner_recid':my_partner['recid'], 'valide':'1', 'locked':'0'}
+ 'partner_owner_recid':my_partner['recid'], 'valide':'1', 'locked':'0'}
for tmp_val in MYSY_GV.dbname['partner_client'].find(qry_sub_filter_client):
list_client_id.append(str(tmp_val['_id']))
@@ -766,7 +766,7 @@ def Get_List_CRM_Opportunite_with_filter(diction):
if ("partner_client_id" in New_retVal.keys() and New_retVal['partner_client_id']):
partner_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(New_retVal['partner_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if ("nom" in partner_client_data.keys()):
client_nom = partner_client_data['nom']
@@ -926,9 +926,9 @@ def Get_List_CRM_Opportunite_no_filter(diction):
if ("partner_client_id" in New_retVal.keys() and New_retVal['partner_client_id']):
partner_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(New_retVal['partner_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
- if ("nom" in partner_client_data.keys()):
+ if ( partner_client_data and "nom" in partner_client_data.keys()):
client_nom = partner_client_data['nom']
user['client_nom'] = client_nom
@@ -1067,7 +1067,7 @@ def Get_Given_CRM_Opportunite(diction):
if ("partner_client_id" in New_retVal.keys() and New_retVal['partner_client_id']):
partner_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(New_retVal['partner_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if ("nom" in partner_client_data.keys()):
client_nom = partner_client_data['nom']
diff --git a/email_inscription_mgt.py b/email_inscription_mgt.py
index 10a8947..99612d7 100644
--- a/email_inscription_mgt.py
+++ b/email_inscription_mgt.py
@@ -470,12 +470,14 @@ def incription_training_refused_mail(diction):
dictionnary_data = local_retval
dictionnary_data['refus_data'] = refus_data
- print(" ### refus_data = ", refus_data)
+
body = {
"params": dictionnary_data,
}
+ print(" ### refus_data (dictionnary_data) = ", dictionnary_data)
+
# Traitement du sujet du mail
sujet_mail_Template = jinja2.Template(str(courrier_data_retval['sujet']))
sujetHtml = sujet_mail_Template.render(params=body["params"])
diff --git a/email_queu/email_queu_mgt.py b/email_queu/email_queu_mgt.py
new file mode 100644
index 0000000..5ceb097
--- /dev/null
+++ b/email_queu/email_queu_mgt.py
@@ -0,0 +1,380 @@
+"""
+Ce fichier permet de traiter la file de email.
+Concretement il met un message dans la file, gere son envoie et les messages d'erreur associé
+
+Les status des messages sont :
+0 - Init
+1 - envoyé
+2 - erreur
+"""
+import ast
+from calendar import monthrange
+from zipfile import ZipFile
+
+import bson
+import pymongo
+import xlsxwriter
+from pymongo import MongoClient
+import json
+from bson import ObjectId
+import re
+from datetime import datetime, date, timedelta
+
+import Session_Formation
+import module_editique
+import partner_base_setup
+import partner_client
+import partner_order
+import prj_common as mycommon
+import secrets
+import inspect
+import sys, os
+import csv
+import pandas as pd
+from pymongo import ReturnDocument
+import GlobalVariable as MYSY_GV
+from math import isnan
+import GlobalVariable as MYSY_GV
+import ela_index_bdd_classes as eibdd
+import email_mgt as email
+import jinja2
+from flask import send_file
+from xhtml2pdf import pisa
+from email.message import EmailMessage
+from email.mime.text import MIMEText
+from email import encoders
+import smtplib
+from email.mime.multipart import MIMEMultipart
+from email.mime.text import MIMEText
+from email.mime.base import MIMEBase
+from email import encoders
+import survey_mgt as survey_mgt
+import attached_file_mgt
+import Inscription_mgt as Inscription_mgt
+
+
+
+def Add_Message_To_Mail_Queue(tab_files, diction):
+ try:
+ diction = mycommon.strip_dictionary(diction)
+
+ """
+ Verification des input acceptés
+ """
+ field_list = ['token', 'from', 'cc', 'bcc', 'subject', 'to', 'message',
+ 'smtp_account_password', 'smtp_account_smtpsrv', 'smtp_account_user', 'smtp_account_From_User', 'smtp_account_port']
+
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list and val.startswith('my_') is False:
+ mycommon.myprint(str(
+ inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé")
+ return False, " Les informations fournies sont incorrectes"
+
+ """
+ Verification des champs obligatoires
+ """
+ field_list_obligatoire = ['token', 'from', 'cc', 'bcc', 'subject', 'to', 'message']
+
+ 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, " Les informations fournies sont incorrectes"
+
+ """
+ Verification de l'identité et autorisation de l'entité qui
+ appelle cette API
+ """
+ token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ token = diction['token']
+
+ local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction)
+ if (local_status is not True):
+ return local_status, my_partner
+
+ # Sauvegarde des fichiers joints depuis le front
+ if (len(tab_files) > MYSY_GV.EMAIL_MAX_PJ):
+ mycommon.myprint("Vous ne pouvez pas envoyer plus de " + str(MYSY_GV.EMAIL_MAX_PJ) + " pièces jointes.")
+ return False, "Vous ne pouvez pas envoyer plus de " + str(MYSY_GV.EMAIL_MAX_PJ) + " pièces jointes. "
+
+ tab_saved_file_full_path = []
+ for file in tab_files:
+ status, saved_file_full_path = mycommon.Upload_Save_PDF_IMG_File(file, MYSY_GV.TEMPORARY_DIRECTORY_V2)
+ if (status is False):
+ mycommon.myprint("Impossible de récupérer correctement le fichier à importer")
+ return False, "Impossible de récupérer correctement le fichier à importer"
+
+ tab_saved_file_full_path.append(saved_file_full_path)
+
+
+
+ new_data = diction
+ del diction['token']
+
+ # Initialisation des champs non envoyés à vide
+ for val in field_list:
+ if val not in diction.keys():
+ new_data[str(val)] = ""
+
+ new_data['valide'] = "1"
+ new_data['locked'] = "0"
+ new_data['statut'] = "0"
+ new_data['attached_files_path'] = tab_saved_file_full_path
+
+ new_data['creation_date'] = str(datetime.now())
+ new_data['creation_by'] = str(my_partner['_id'])
+
+ new_data['partner_owner_recid'] = str(my_partner['recid'])
+
+ inserted_id = MYSY_GV.dbname['mail_queue'].insert_one(new_data).inserted_id
+ if (not inserted_id):
+ mycommon.myprint(
+ " Impossible d'ajouter le message dans le file d'attente (2) ")
+ return False, " Impossible d'ajouter le message dans le file d'attente (2) "
+
+
+ message_id = ""
+ return True, str(message_id)
+
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, "Impossible d'ajouter le message dans le file d'attente "
+
+"""
+Mise à jour d'un message, par exemple les status
+"""
+
+def Update_Message_To_Mail_Queue(diction):
+ try:
+ diction = mycommon.strip_dictionary(diction)
+
+ """
+ Verification des input acceptés
+ """
+ field_list = ['token', 'from', 'cc', 'bcc', 'subject', 'to', 'message', 'status', 'message_id',
+ 'smtp_account_password', 'smtp_account_smtpsrv', 'smtp_account_user', 'smtp_account_From_User', 'smtp_account_port']
+
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list and val.startswith('my_') is False:
+ mycommon.myprint(str(
+ inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé")
+ return False, " Les informations fournies sont incorrectes"
+
+ """
+ Verification des champs obligatoires
+ """
+ field_list_obligatoire = ['token', 'status', 'message_id']
+
+ for val in field_list_obligatoire:
+ if val not in diction:
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ")
+ return False, " Les informations fournies sont incorrectes"
+
+ """
+ Verification de l'identité et autorisation de l'entité qui
+ appelle cette API
+ """
+ token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ token = diction['token']
+
+ local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction)
+ if (local_status is not True):
+ return local_status, my_partner
+
+ """
+ Verifier la validité du message
+ """
+ is_massage_valide = MYSY_GV.dbname['mail_queue'].count_documents({'_id':ObjectId(str(diction['message_id'])),
+ 'valide':'1',
+ 'locked':'0',
+ 'partner_owner_recid':str(my_partner['recid']),
+ 'statut':{'$ne':'1'}})
+
+ if( is_massage_valide != 1):
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " L'identifiant du message n'est pas valide ")
+ return False, " L'identifiant du message n'est pas valide "
+
+
+ local_id = str(diction['_id'])
+
+ del diction['token']
+ del diction['_id']
+
+ new_data = diction
+ new_data['date_update'] = str(datetime.now())
+ new_data['update_by'] = str(my_partner['_id'])
+
+ data_cle = {}
+ data_cle['mail_queue'] = str(my_partner['recid'])
+ data_cle['_id'] = ObjectId(local_id)
+ data_cle['partner_owner_recid'] = str(my_partner['recid'])
+ data_cle['statut'] = {'$ne': '1'}
+
+
+ result = MYSY_GV.dbname['mail_queue'].find_one_and_update(
+ data_cle,
+ {"$set": new_data},
+ upsert=False,
+ return_document=ReturnDocument.AFTER
+ )
+
+
+ return True, "Le message a été mis à jour"
+
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, "Impossible de mettre à jour le message "
+
+"""
+Supprimer un message donnée
+"""
+def Delete_Message_To_Mail_Queue(diction):
+ try:
+ diction = mycommon.strip_dictionary(diction)
+
+ """
+ Verification des input acceptés
+ """
+ field_list = ['token', 'tab_message_id',]
+
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list and val.startswith('my_') is False:
+ mycommon.myprint(str(
+ inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé")
+ return False, " Les informations fournies sont incorrectes"
+
+ """
+ Verification des champs obligatoires
+ """
+ field_list_obligatoire = ['token', 'tab_message_id',]
+
+ for val in field_list_obligatoire:
+ if val not in diction:
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ")
+ return False, " Les informations fournies sont incorrectes"
+
+ """
+ Verification de l'identité et autorisation de l'entité qui
+ appelle cette API
+ """
+ token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ token = diction['token']
+
+ local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction)
+ if (local_status is not True):
+ return local_status, my_partner
+
+ tab_message_id_work = str(diction['tab_message_id']).split(",")
+ tab_message_id_ObjectId = []
+ for tmp in tab_message_id_work:
+ if( tmp ):
+ tab_message_id_ObjectId.append(ObjectId(str(tmp)))
+
+
+
+ delete = MYSY_GV.dbname['mail_queue'].delete_many({'_id': {'$in':tab_message_id_ObjectId},
+ 'partner_owner_recid': str(my_partner['recid']),
+ }, )
+
+
+
+ return True, str(delete.deleted_count)+" message(s) supprimé(s) "
+
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, " Impossible de supprimer les messages "
+
+
+
+"""
+Recuperer la liste des message d'un partenaire
+"""
+def Get_List_Message_To_Mail_Queue(diction):
+ try:
+ diction = mycommon.strip_dictionary(diction)
+
+ """
+ Verification des input acceptés
+ """
+ field_list = ['token', ]
+
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list and val.startswith('my_') is False:
+ mycommon.myprint(str(
+ inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas")
+ return False, " Les informations fournies sont incorrectes",
+
+ """
+ Verification des champs obligatoires
+ """
+ field_list_obligatoire = ['token', ]
+ for val in field_list_obligatoire:
+ if val not in diction:
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans la liste des arguments ")
+ return False, " Les informations fournies sont incorrectes",
+
+ """
+ Verification de l'identité et autorisation de l'entité qui
+ appelle cette API
+ """
+ token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ token = diction['token']
+
+ local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction)
+ if (local_status is not True):
+ return local_status, my_partner
+
+ """
+ Clés de mise à jour
+ """
+ data_cle = {}
+ data_cle['partner_owner_recid'] = str(my_partner['recid'])
+ data_cle['valide'] = "1"
+ data_cle['locked'] = "0"
+
+
+ RetObject = []
+ val_tmp = 0
+
+ for retval in MYSY_GV.dbname['mail_queue'].find(data_cle).sort([("_id", pymongo.DESCENDING), ]):
+ user = retval
+ user['id'] = str(val_tmp)
+ val_tmp = val_tmp + 1
+ RetObject.append(mycommon.JSONEncoder().encode(user))
+
+ return True, RetObject
+
+
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, " Impossible de récupérer la liste des messages "
+
+
+
+
+"""
+Cette fonction envoie les emails d'un avec des filtrer données
+filt_type_session = {}
+ if ("type_session" in diction.keys()):
+ filt_type_session = {'type_session': str(diction['type_session']).strip()}
+"""
diff --git a/emargement.py b/emargement.py
index 77eba8b..0decfb6 100644
--- a/emargement.py
+++ b/emargement.py
@@ -873,7 +873,8 @@ Cette fonction genere un fichier pdf pour les liste d'emargement
def GerneratePDFEmargementList(diction):
try:
- field_list = ['session_id', 'email', 'date', 'token', 'class_internal_url', 'courrier_template_id']
+ field_list = ['session_id', 'email', 'date', 'token', 'class_internal_url', 'courrier_template_id',
+ 'tab_inscrit_ids']
incom_keys = diction.keys()
for val in incom_keys:
if val not in field_list and val.startswith('my_') is False:
@@ -909,6 +910,21 @@ def GerneratePDFEmargementList(diction):
mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible d'imprimer la liste d'emargement ")
return False, " Impossible d'imprimer la liste d'emargement"
+
+ tab_inscrit_ids = []
+ if ("tab_inscrit_ids" in diction.keys() and diction['tab_inscrit_ids']):
+ tab_inscrit_ids_work = str(diction['tab_inscrit_ids']).split(",")
+
+ for tmp in tab_inscrit_ids_work:
+ if(tmp):
+ tab_inscrit_ids.append(tmp)
+
+
+ filt_inscrit = {}
+ if(len(tab_inscrit_ids) > 0 ):
+ filt_inscrit = {'inscription_id':{'$in':tab_inscrit_ids}}
+
+
"""
28/03/2024 :
Verifier que le modele de courrier est valide
@@ -962,13 +978,9 @@ def GerneratePDFEmargementList(diction):
mydate = diction['date']
query_get_data['date'] = diction['date']
- ## Recuperation des données
- coll_emargement = MYSY_GV.dbname['emargement']
-
- print("### query_get_data = " + str(query_get_data))
tab_users = []
- for val_tmp in coll_emargement.find(query_get_data).sort([("date", pymongo.ASCENDING), ("sequence_start", pymongo.ASCENDING), ("sequence_end", pymongo.ASCENDING)]):
+ for val_tmp in MYSY_GV.dbname['emargement'].find({"$and":[query_get_data, filt_inscrit]}).sort([("date", pymongo.ASCENDING), ("sequence_start", pymongo.ASCENDING), ("sequence_end", pymongo.ASCENDING)]):
local_tmp = {}
local_tmp['email'] = val_tmp['email']
local_tmp['nom'] = val_tmp['nom']
diff --git a/lms_chamilo/mysy_lms.py b/lms_chamilo/mysy_lms.py
index 8a09d91..2954a29 100644
--- a/lms_chamilo/mysy_lms.py
+++ b/lms_chamilo/mysy_lms.py
@@ -2294,7 +2294,7 @@ def LMS_Create_VirtualHost(diction):
full_url = unidecode(full_url)
virtualHost_url = full_url
- my_query = " INSERT INTO access_url (url, description, active, creation_by, tms, url_type) "\
+ my_query = " INSERT INTO access_url (url, description, active, created_by, tms, url_type) "\
" VALUES('"+str(full_url)+"', 'Url pour "+str(part_nom)+"', '1', '1', '"+str(registration_date)+"', NULL);"
try:
diff --git a/main.py b/main.py
index 570109f..fb0c97e 100644
--- a/main.py
+++ b/main.py
@@ -102,6 +102,7 @@ import financial_caracteristique_mgt as financial_caracteristique_mgt
import reference_pedagogique_mgt as reference_pedagogique_mgt
import ent_student_common as ent_student_common
import groupe_client_mgt as groupe_client_mgt
+import email_queu.email_queu_mgt as email_queu_mgt
import base_document_automatic_setup as base_document_automatic_setup
@@ -2210,7 +2211,7 @@ API de recuperation de la liste de tous les stagaires d'une formation
def GetAllClassStagiaire():
# On recupere le corps (payload) de la requete
payload = mycommon.strip_dictionary (request.form.to_dict())
- print(" ### GetAllClassStagiaire : payload = ",payload)
+ print(" ### GetAllClassStagiaire ii : payload = ",payload)
localStatus, message= inscription.GetAllClassStagiaire(payload)
return jsonify(status=localStatus, message=message )
@@ -2720,9 +2721,9 @@ def Prepare_and_Send_Default_Convention_From_Session_By_PDF(token, session_id, c
"""
API de generation de liste PDF des liste d'emargement
"""
-@app.route('/myclass/api/GerneratePDFEmargementList////', methods=['POST','GET'])
+@app.route('/myclass/api/GerneratePDFEmargementList/////', methods=['POST','GET'])
@crossdomain(origin='*')
-def GerneratePDFEmargementList(token, session_id, internal_url, courrier_modele_id):
+def GerneratePDFEmargementList(token, session_id, internal_url, courrier_modele_id, tab_inscrit_ids):
# On recupere le corps (payload) de la requete
payload = mycommon.strip_dictionary (request.form.to_dict())
payload = {}
@@ -2731,6 +2732,12 @@ def GerneratePDFEmargementList(token, session_id, internal_url, courrier_modele_
payload['class_internal_url'] = str(internal_url)
payload['courrier_template_id'] = str(courrier_modele_id)
+ local_tab_inscrt = ""
+ if( tab_inscrit_ids and str(tab_inscrit_ids) != "-"):
+ local_tab_inscrt = str(tab_inscrit_ids)
+
+ payload['tab_inscrit_ids'] = str(local_tab_inscrt)
+
print(" ### GerneratePDFEmargementList : payload = ",str(payload))
localStatus, response= emargement.GerneratePDFEmargementList(payload)
@@ -13449,6 +13456,60 @@ def Get_Given_Groupe_Client():
return jsonify(status=status, message=retval)
+"""
+API pour ajouter un message dans la file d'attente des emails
+"""
+@app.route('/myclass/api/Add_Message_To_Mail_Queue/', methods=['POST','GET'])
+@crossdomain(origin='*')
+def Add_Message_To_Mail_Queue():
+ # On recupere le corps (payload) de la requete
+ payload = mycommon.strip_dictionary (request.form.to_dict())
+ print(" ### Add_Message_To_Mail_Queue payload = ",payload)
+ status, retval = email_queu_mgt.Add_Message_To_Mail_Queue(payload)
+ return jsonify(status=status, message=retval)
+
+
+
+"""
+API pour mettre à jour un message dans la file d'attente des emails
+"""
+@app.route('/myclass/api/Update_Message_To_Mail_Queue/', methods=['POST','GET'])
+@crossdomain(origin='*')
+def Update_Message_To_Mail_Queue():
+ # On recupere le corps (payload) de la requete
+ payload = mycommon.strip_dictionary (request.form.to_dict())
+ print(" ### Update_Message_To_Mail_Queue payload = ",payload)
+ status, retval = email_queu_mgt.Update_Message_To_Mail_Queue(payload)
+ return jsonify(status=status, message=retval)
+
+
+
+"""
+API pour supprimer une liste de messages dans la file d'attente des emails
+"""
+@app.route('/myclass/api/Delete_Message_To_Mail_Queue/', methods=['POST','GET'])
+@crossdomain(origin='*')
+def Delete_Message_To_Mail_Queue():
+ # On recupere le corps (payload) de la requete
+ payload = mycommon.strip_dictionary (request.form.to_dict())
+ print(" ### Delete_Message_To_Mail_Queue payload = ",payload)
+ status, retval = email_queu_mgt.Delete_Message_To_Mail_Queue(payload)
+ return jsonify(status=status, message=retval)
+
+
+"""
+API pour recuperer la liste des message d'un partenaire sans filter
+"""
+@app.route('/myclass/api/Get_List_Message_To_Mail_Queue/', methods=['POST','GET'])
+@crossdomain(origin='*')
+def Get_List_Message_To_Mail_Queue():
+ # On recupere le corps (payload) de la requete
+ payload = mycommon.strip_dictionary (request.form.to_dict())
+ print(" ### Get_List_Message_To_Mail_Queue payload = ",payload)
+ status, retval = email_queu_mgt.Get_List_Message_To_Mail_Queue(payload)
+ return jsonify(status=status, message=retval)
+
+
if __name__ == '__main__':
diff --git a/partner_client.py b/partner_client.py
index 474e4ce..4dea567 100644
--- a/partner_client.py
+++ b/partner_client.py
@@ -49,8 +49,15 @@ def Add_Partner_Client(diction):
'invoice_tva', 'invoice_condition_paiement_id', 'invoice_adresse', 'invoice_ville',
'invoice_code_postal', 'invoice_pays', "client_type_id",
'is_fournisseur', 'is_client', 'is_financeur', 'is_company', 'invoice_automatique',
- 'type_financeur_id', 'type_pouvoir_public_id', 'partner_groupe_client_id'
- ]
+ 'type_financeur_id', 'type_pouvoir_public_id', 'partner_groupe_client_id',
+
+ 'is_compagnie',
+ 'contact_civilite', 'contact_nom', 'contact_prenom', 'contact_email', 'is_contact_communication',
+ 'contact_fonction', 'contact_mobile', 'contact_phone', 'contact_adresse', 'contact_code_postal',
+ 'contact_ville',
+ 'contact_pays', 'contact_siret', 'contact_tva']
+
+
incom_keys = diction.keys()
for val in incom_keys:
@@ -98,7 +105,7 @@ def Add_Partner_Client(diction):
"""
- Verification s'il n'existe pas un cient du partenaire qui perte le meme
+ Verification s'il n'existe pas un client du partenaire qui porte le meme
nom, ou la meme adresse email
"""
@@ -424,6 +431,87 @@ def Add_Partner_Client(diction):
return False, " Impossible de créer le client "
+ """
+ Si l'ajout du client a réussi, alors on ajoute le contact s'il y a un contact fourni
+ """
+ if(inserted_id and "contact_email" in diction.keys() and diction['contact_email'] and
+ "contact_nom" in diction.keys() and diction['contact_nom'] ):
+
+ new_contact_diction = {}
+ new_contact_diction['email'] = diction['contact_email']
+ new_contact_diction['nom'] = diction['contact_nom']
+ new_contact_diction['token'] = diction['token']
+
+ new_contact_diction['related_collection'] = "partner_client"
+ new_contact_diction['related_collection_owner_id'] = str(inserted_id)
+
+
+ if( "contact_civilite" in diction.keys() ):
+ new_contact_diction['civilite'] = diction['contact_civilite']
+ else:
+ new_contact_diction['civilite'] = ""
+
+ if ("contact_prenom" in diction.keys()):
+ new_contact_diction['prenom'] = diction['contact_prenom']
+ else:
+ new_contact_diction['prenom'] = ""
+
+ if ("is_contact_communication" in diction.keys()):
+ new_contact_diction['include_com'] = diction['is_contact_communication']
+ else:
+ new_contact_diction['include_com'] = ""
+
+ if ("contact_fonction" in diction.keys()):
+ new_contact_diction['fonction'] = diction['contact_fonction']
+ else:
+ new_contact_diction['fonction'] = ""
+
+ if ("contact_mobile" in diction.keys()):
+ new_contact_diction['telephone_mobile'] = diction['contact_mobile']
+ else:
+ new_contact_diction['telephone_mobile'] = ""
+
+
+ if ("contact_phone" in diction.keys()):
+ new_contact_diction['telephone'] = diction['contact_phone']
+ else:
+ new_contact_diction['telephone'] = ""
+
+ if ("contact_code_postal" in diction.keys()):
+ new_contact_diction['adr_code_postal'] = diction['contact_code_postal']
+ else:
+ new_contact_diction['adr_code_postal'] = ""
+
+ if ("contact_ville" in diction.keys()):
+ new_contact_diction['adr_ville'] = diction['contact_ville']
+ else:
+ new_contact_diction['adr_ville'] = ""
+
+ if ("contact_pays" in diction.keys()):
+ new_contact_diction['adr_pays'] = diction['contact_pays']
+ else:
+ new_contact_diction['adr_pays'] = ""
+
+ if ("contact_siret" in diction.keys()):
+ new_contact_diction['siret'] = diction['contact_siret']
+ else:
+ new_contact_diction['siret'] = ""
+
+
+ if ("contact_tva" in diction.keys()):
+ new_contact_diction['tva'] = diction['contact_tva']
+ else:
+ new_contact_diction['tva'] = ""
+
+
+ local_add_contact_status, local_add_contact_retval = contact.Add_Contact(new_contact_diction)
+
+ if( local_add_contact_status is False ):
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " WARNING : Impossible d'ajouter le contact au nouveau client " + str(
+ inserted_id))
+
+
return True, " Le client a été correctement créé"
except Exception as e:
@@ -1802,6 +1890,12 @@ def Get_Given_Partner_Client_From_Id(diction):
""""
Cette fonction permet d'importer des clients de partner en masse avec un fichier excel
+
+
+IMPORTANT : Cette fonction n'accepte pas les mise à jour en masse.
+Donc s'il ya un client avec la meme adresse principale, le système va
+rejeter l'import
+
"""
def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
try:
@@ -1844,6 +1938,15 @@ def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
mycommon.myprint("Impossible de récupérer correctement le fichier à importer")
return False, "Impossible de récupérer correctement le fichier à importer"
+ local_controle_status, local_controle_message = Controle_Add_Partner_Client_mass(
+ saved_file,
+ Folder,
+ diction)
+
+ if (local_controle_status is False):
+ return local_controle_status, local_controle_message
+
+ print(" #### local_controle_message = ", local_controle_message)
df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore')
df = df.fillna('')
@@ -1853,7 +1956,14 @@ def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
# Verification que les noms des colonne sont bien corrects"
'''
field_list = ['nom', 'raison_sociale', 'email', 'adresse', 'code_postal', 'ville', 'pays', 'siret', 'telephone', 'tva', 'website', 'invoice_adresse',
- 'invoice_code_postal', 'invoice_email', 'invoice_nom', 'invoice_siret', 'invoice_tva', 'invoice_ville', 'invoice_pays']
+ 'invoice_code_postal', 'invoice_email', 'invoice_nom', 'invoice_siret', 'invoice_tva', 'invoice_ville',
+ 'invoice_pays', 'condition_paiement_code', 'is_compagnie', 'partner_groupe_client_code',
+ 'contact_civilite', 'contact_nom', 'contact_prenom', 'contact_email', 'is_contact_communication',
+ 'contact_fonction', 'contact_mobile', 'contact_phone', 'contact_adresse', 'contact_code_postal',
+ 'contact_ville',
+ 'contact_pays', 'contact_siret', 'contact_tva',
+ 'is_fournisseur', 'is_client', 'is_financeur', 'client_type_code']
+
# Controle du nombre de lignes dans le fichier.
total_rows = len(df)
@@ -1886,15 +1996,17 @@ def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
x = range(0, total_rows)
for n in x:
mydata = {}
- mydata['nom'] = str(df['nom'].values[n])
- mydata['email'] = str(df['email'].values[n])
- mydata['adr_adresse'] = str(df['adresse'].values[n])
- mydata['adr_code_postal'] = str(df['code_postal'].values[n])
- mydata['adr_ville'] = str(df['ville'].values[n])
- mydata['adr_pays'] = str(df['pays'].values[n])
- mydata['telephone'] = str(df['telephone'].values[n])
+ mydata['nom'] = str(df['nom'].values[n]).strip()
+ mydata['email'] = str(df['email'].values[n]).strip()
+ mydata['adr_adresse'] = str(df['adresse'].values[n]).strip()
+ mydata['adr_code_postal'] = str(df['code_postal'].values[n]).strip()
+ mydata['adr_ville'] = str(df['ville'].values[n]).strip()
+ mydata['adr_pays'] = str(df['pays'].values[n]).strip()
+ mydata['telephone'] = str(df['telephone'].values[n]).strip()
mydata['token'] = str(my_token)
+
+
raison_sociale = ""
if ("raison_sociale" in df.keys()):
if (str(df['raison_sociale'].values[n])):
@@ -1967,6 +2079,184 @@ def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
invoice_pays = str(df['invoice_pays'].values[n])
mydata['invoice_pays'] = invoice_pays
+ # Controle des conditions de paiement : condition_paiement_code
+ invoice_condition_paiement_id = ""
+ if ("condition_paiement_code" in df.keys()):
+ condition_paiement_code = str(df['condition_paiement_code'].values[n]).strip()
+
+ is_valide_cond_paiement_data = MYSY_GV.dbname['base_partner_paiement_condition'].find_one(
+ {'code': re.compile(condition_paiement_code,
+ re.IGNORECASE),
+ 'valide': '1',
+ 'locked': '0',
+ 'partner_owner_recid': my_partner['recid']})
+ if (is_valide_cond_paiement_data ):
+ invoice_condition_paiement_id = str(is_valide_cond_paiement_data['_id'])
+
+ mydata['invoice_condition_paiement_id'] = invoice_condition_paiement_id
+
+ # groupe de client : partner_groupe_client_code
+ partner_groupe_client_id = ""
+ if ("partner_groupe_client_code" in df.keys()):
+ condition_paiement_code = str(df['partner_groupe_client_code'].values[n]).strip()
+
+ is_valide_partner_groupe_client_data = MYSY_GV.dbname[
+ 'partner_groupe_client'].find_one(
+ {'code': re.compile(condition_paiement_code,
+ re.IGNORECASE),
+ 'valide': '1',
+ 'locked': '0',
+ 'partner_owner_recid': my_partner['recid']})
+
+ if (is_valide_partner_groupe_client_data ):
+ partner_groupe_client_id = str(is_valide_partner_groupe_client_data['_id'])
+ mydata['partner_groupe_client_id'] = partner_groupe_client_id
+
+ # type de client : client_type_code
+ client_type_id = ""
+ if ("client_type_code" in df.keys()):
+ client_type_code = str(df['client_type_code'].values[n]).strip()
+
+ is_valide_type_client_data = MYSY_GV.dbname[
+ 'partner_client_type'].find_one(
+ {'code': re.compile(client_type_code,
+ re.IGNORECASE),
+ 'valide': '1',
+ 'locked': '0',
+ 'partner_owner_recid': my_partner['recid']})
+
+ if (is_valide_type_client_data):
+ client_type_id = str(is_valide_type_client_data['_id'])
+ mydata['client_type_id'] = client_type_id
+
+ is_compagnie = ""
+ if ("is_compagnie" in df.keys()):
+ if (str(df['is_compagnie'].values[n])):
+ is_compagnie = str(df['is_compagnie'].values[n])
+ mydata['is_compagnie'] = is_compagnie
+
+ is_fournisseur = ""
+ if ("is_fournisseur" in df.keys()):
+ if (str(df['is_fournisseur'].values[n])):
+ is_fournisseur = str(df['is_fournisseur'].values[n])
+ mydata['is_fournisseur'] = is_fournisseur
+
+ is_client = ""
+ if ("is_client" in df.keys()):
+ if (str(df['is_client'].values[n])):
+ is_client = str(df['is_client'].values[n])
+ mydata['is_client'] = is_client
+
+ is_financeur = ""
+ if ("is_financeur" in df.keys()):
+ if (str(df['is_financeur'].values[n])):
+ is_financeur = str(df['is_financeur'].values[n])
+ mydata['is_financeur'] = is_financeur
+
+
+ contact_civilite = ""
+ if ("contact_civilite" in df.keys()):
+ if (str(df['contact_civilite'].values[n])):
+ contact_civilite = str(df['contact_civilite'].values[n])
+ mydata['contact_civilite'] = contact_civilite
+
+
+
+ contact_nom = ""
+ if ("contact_nom" in df.keys()):
+ if (str(df['contact_nom'].values[n])):
+ contact_nom = str(df['contact_nom'].values[n])
+ mydata['contact_nom'] = contact_nom
+
+
+
+ contact_email = ""
+ if ("contact_email" in df.keys()):
+ if (str(df['contact_email'].values[n])):
+ contact_email = str(df['contact_email'].values[n])
+ mydata['contact_email'] = contact_email
+
+
+
+ contact_prenom = ""
+ if ("contact_prenom" in df.keys()):
+ if (str(df['contact_prenom'].values[n])):
+ contact_prenom = str(df['contact_prenom'].values[n])
+ mydata['contact_prenom'] = contact_prenom
+
+
+ contact_email = ""
+ if ("contact_email" in df.keys()):
+ if (str(df['contact_email'].values[n])):
+ contact_email = str(df['contact_email'].values[n])
+ mydata['contact_email'] = contact_email
+
+
+ is_contact_communication = ""
+ if ("is_contact_communication" in df.keys()):
+ if (str(df['is_contact_communication'].values[n])):
+ is_contact_communication = str(df['is_contact_communication'].values[n])
+ mydata['is_contact_communication'] = is_contact_communication
+
+
+ contact_fonction = ""
+ if ("contact_fonction" in df.keys()):
+ if (str(df['contact_fonction'].values[n])):
+ contact_fonction = str(df['contact_fonction'].values[n])
+ mydata['contact_fonction'] = contact_fonction
+
+
+ contact_mobile = ""
+ if ("contact_mobile" in df.keys()):
+ if (str(df['contact_mobile'].values[n])):
+ contact_mobile = str(df['contact_mobile'].values[n])
+ mydata['contact_mobile'] = contact_mobile
+
+ contact_phone = ""
+ if ("contact_phone" in df.keys()):
+ if (str(df['contact_phone'].values[n])):
+ contact_phone = str(df['contact_phone'].values[n])
+ mydata['contact_phone'] = contact_phone
+
+ contact_adresse = ""
+ if ("contact_adresse" in df.keys()):
+ if (str(df['contact_adresse'].values[n])):
+ contact_adresse = str(df['contact_adresse'].values[n])
+ mydata['contact_adresse'] = contact_adresse
+
+
+ contact_code_postal = ""
+ if ("contact_code_postal" in df.keys()):
+ if (str(df['contact_code_postal'].values[n])):
+ contact_code_postal = str(df['contact_code_postal'].values[n])
+ mydata['contact_code_postal'] = contact_code_postal
+
+
+ contact_ville = ""
+ if ("contact_ville" in df.keys()):
+ if (str(df['contact_ville'].values[n])):
+ contact_ville = str(df['contact_ville'].values[n])
+ mydata['contact_ville'] = contact_ville
+
+ contact_pays = ""
+ if ("contact_pays" in df.keys()):
+ if (str(df['contact_pays'].values[n])):
+ contact_pays = str(df['contact_pays'].values[n])
+ mydata['contact_pays'] = contact_pays
+
+ contact_siret = ""
+ if ("contact_siret" in df.keys()):
+ if (str(df['contact_siret'].values[n])):
+ contact_siret = str(df['contact_siret'].values[n])
+ mydata['contact_siret'] = contact_siret
+
+ contact_tva = ""
+ if ("contact_tva" in df.keys()):
+ if (str(df['contact_tva'].values[n])):
+ contact_tva = str(df['contact_tva'].values[n])
+ mydata['contact_tva'] = contact_tva
+
+
clean_dict = {k: mydata[k] for k in mydata if (str(mydata[k]) != "nan")}
print("#### clean_dict ", clean_dict)
@@ -1990,6 +2280,256 @@ def Add_Partner_Client_mass(file=None, Folder=None, diction=None):
return False, " Impossible d'importer les client en masse "
+"""
+Cette fonction permet de controler le fichier excel avant l'import
+car si une seule ligne est incohérente, alors il faut annuler l'import
+"""
+def Controle_Add_Partner_Client_mass(saved_file=None, Folder=None, diction=None):
+ try:
+ diction = mycommon.strip_dictionary(diction)
+
+ """
+ Verification des input acceptés
+ """
+ field_list = ['token', ]
+ incom_keys = diction.keys()
+ for val in incom_keys:
+ if val not in field_list and val.startswith('my_') is False:
+ mycommon.myprint(str(
+ inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas, Creation participants annulée")
+ return False, " Verifier votre API"
+
+ '''
+ 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, " Verifier votre API, Toutes les informations techniques ne sont pas fournies"
+
+ my_token = ""
+ if ("token" in diction.keys()):
+ if diction['token']:
+ my_token = diction['token']
+
+ local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction)
+ if (local_status is not True):
+ return local_status, my_partner
+
+
+ df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore')
+ df = df.fillna('')
+ df = df.applymap(lambda x: x.strip() if isinstance(x, str) else x)
+ # Dictionnaire des champs utilisables
+ '''
+ # Verification que les noms des colonne sont bien corrects"
+ '''
+ field_list = ['nom', 'raison_sociale', 'email', 'adresse', 'code_postal', 'ville', 'pays', 'siret', 'telephone', 'tva', 'website', 'invoice_adresse',
+ 'invoice_code_postal', 'invoice_email', 'invoice_nom', 'invoice_siret', 'invoice_tva', 'invoice_ville', 'invoice_pays',
+ 'condition_paiement_code', 'is_compagnie', 'partner_groupe_client_code',
+ 'contact_civilite', 'contact_nom', 'contact_prenom', 'contact_email', 'is_contact_communication',
+ 'contact_fonction','contact_mobile', 'contact_phone', 'contact_adresse', 'contact_code_postal', 'contact_ville',
+ 'contact_pays', 'contact_siret', 'contact_tva',
+ 'is_fournisseur', 'is_client', 'is_financeur', 'client_type_code']
+
+
+ # Controle du nombre de lignes dans le fichier.
+ total_rows = len(df)
+ if (total_rows > MYSY_GV.MAX_PARTNER_CLIENT_BY_CSV):
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " Le fichier comporte plus de " + str(
+ MYSY_GV.MAX_PARTNER_CLIENT_BY_CSV) + " lignes.")
+ return False, " Le fichier comporte plus de " + str(MYSY_GV.MAX_PARTNER_CLIENT_BY_CSV) + " lignes."
+
+ for val in df.columns:
+ if str(val).lower() not in field_list:
+ mycommon.myprint(
+ str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée")
+ return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée"
+
+ # Verification des champs obligatoires dans le fichier
+ field_list_obligatoire_file = ['nom', 'email', 'adresse', 'code_postal', 'ville', 'pays', 'telephone', ]
+
+ for val in field_list_obligatoire_file:
+ if val not in df.columns:
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire")
+ return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire "
+
+ # Traitement des données du fichier
+
+ warning_msg = ""
+ nb_warning_msg = 0
+ x = range(0, total_rows)
+ for n in x:
+ mydata = {}
+ mydata['nom'] = str(df['nom'].values[n])
+ mydata['email'] = str(df['email'].values[n])
+
+ """
+ important : verifier s'il y a deja un client avec la meme adresse email
+ """
+ is_existe_client_count = MYSY_GV.dbname['partner_client'].count_documents(
+ {"email": str(str(df['email'].values[n]).strip()),
+ 'partner_owner_recid': str(my_partner['recid'])})
+
+ if (is_existe_client_count != 0):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + " Ligne " + str(n + 2) + " Il a déjà un client avec le même adresse email.")
+ return False, " Ligne " + str(n + 2) + " Il a déjà un client avec le même adresse email."
+
+
+ # Controler la civilité du contact principale
+ if( "contact_civilite" in df.keys()):
+ contact_civilite = str(df['contact_civilite'].values[n]).strip()
+ if( contact_civilite.lower() not in MYSY_GV.CIVILITE):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'contact_civilite' pour la ligne "+str( n + 2) +" est invalide. Valeur acceptées :"+str(MYSY_GV.CIVILITE))
+ return False, "Le champ 'contact_civilite' pour la ligne "+str( n + 2) +" est invalide. Valeur acceptées :"+str(MYSY_GV.CIVILITE)
+
+
+ # Contoler contact_email
+ if ("contact_email" in df.keys()):
+ contact_email = str(df['contact_email'].values[n]).strip()
+ if (mycommon.isEmailValide(contact_email) is False):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'contact_email' pour la ligne "+str( n + 2) +" est invalide.")
+ return False, "Le champ 'contact_email' pour la ligne "+str( n + 2) +" est invalide"
+
+ # Contoler is_contact_communication
+ if ("is_contact_communication" in df.keys()):
+ is_contact_communication = str(df['is_contact_communication'].values[n]).strip()
+ if (is_contact_communication not in ['0', '1', '']):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'is_contact_communication' pour la ligne "+str( n + 2) +" est invalide. Les valeurs acceptées '0', '1' ou '[vide]' ")
+ return False, "Le champ 'is_contact_communication' pour la ligne "+str( n + 2) +" est invalide. Les valeurs acceptées '0', '1' ou '[vide]'"
+
+
+ # Controle des conditions de paiement : condition_paiement_code
+ if ("condition_paiement_code" in df.keys()):
+ condition_paiement_code = str(df['condition_paiement_code'].values[n]).strip()
+
+ is_valide_cond_paiement_count = MYSY_GV.dbname['base_partner_paiement_condition'].count_documents({'code': re.compile(condition_paiement_code,
+ re.IGNORECASE),
+ 'valide':'1',
+ 'locked':'0',
+ 'partner_owner_recid':my_partner['recid']})
+ if( is_valide_cond_paiement_count <= 0 ):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'condition_paiement_code' pour la ligne " + str(
+ n + 2) + " est invalide. ")
+ return False, "Le champ 'condition_paiement_code' pour la ligne " + str(
+ n + 2) + " est invalide. "
+
+
+
+ # Controle du champ 'is_compagnie':
+ if ("is_compagnie" in df.keys()):
+ is_compagnie = str(df['is_compagnie'].values[n]).strip()
+ if (is_compagnie not in ['0', '1', '2', '']):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'is_compagnie' pour la ligne "+str( n + 2) +" est invalide. Les valeurs acceptées '0', '1', '2', ou '[vide]' ")
+ return False, "Le champ 'is_compagnie' pour la ligne "+str( n + 2) +" est invalide. Les valeurs acceptées '0', '1', '2', ou '[vide]'"
+
+ # Controle du champ 'is_fournisseur':
+ if ("is_fournisseur" in df.keys()):
+ is_fournisseur = str(df['is_fournisseur'].values[n]).strip()
+ if (is_fournisseur not in ['0', '1', '']):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'is_fournisseur' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]' ")
+ return False, "Le champ 'is_fournisseur' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]'"
+
+ # Controle du champ 'is_client':
+ if ("is_client" in df.keys()):
+ is_client = str(df['is_client'].values[n]).strip()
+ if (is_client not in ['0', '1', '']):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'is_client' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]' ")
+ return False, "Le champ 'is_client' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]'"
+
+
+ # Controle du champ 'is_financeur':
+ if ("is_financeur" in df.keys()):
+ is_financeur = str(df['is_financeur'].values[n]).strip()
+ if (is_financeur not in ['0', '1', '']):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'is_financeur' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]' ")
+ return False, "Le champ 'is_financeur' pour la ligne " + str(
+ n + 2) + " est invalide. Les valeurs acceptées '0', '1', ou '[vide]'"
+
+
+
+ # Controle des conditions de paiement : partner_groupe_client_code
+ if ("partner_groupe_client_code" in df.keys()):
+ condition_paiement_code = str(df['partner_groupe_client_code'].values[n]).strip()
+
+ is_valide_partner_groupe_client_code_count = MYSY_GV.dbname[
+ 'partner_groupe_client'].count_documents(
+ {'code': re.compile(condition_paiement_code,
+ re.IGNORECASE),
+ 'valide': '1',
+ 'locked': '0',
+ 'partner_owner_recid': my_partner['recid']})
+
+ if (is_valide_partner_groupe_client_code_count <= 0):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'partner_groupe_client_code' pour la ligne " + str(
+ n + 2) + " est invalide. ")
+ return False, "Le champ 'partner_groupe_client_code' pour la ligne " + str(
+ n + 2) + " est invalide. "
+
+ # Controle des conditions de paiement : client_type_code
+ if ("client_type_code" in df.keys()):
+ client_type_code = str(df['client_type_code'].values[n]).strip()
+
+
+ is_valide_client_type_code_count = MYSY_GV.dbname[
+ 'partner_client_type'].count_documents(
+ {'code': re.compile(client_type_code,
+ re.IGNORECASE),
+ 'valide': '1',
+ 'locked': '0',
+ 'partner_owner_recid': my_partner['recid']})
+
+ if (is_valide_client_type_code_count <= 0):
+ mycommon.myprint(
+ str(inspect.stack()[0][
+ 3]) + "Le champ 'client_type_code' pour la ligne " + str(
+ n + 2) + " est invalide. ")
+ return False, "Le champ 'client_type_code' pour la ligne " + str(
+ n + 2) + " est invalide. "
+
+
+
+
+ return True, str(total_rows)+" client(s) dans le fichier"
+ except Exception as e:
+ exc_type, exc_obj, exc_tb = sys.exc_info()
+ mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno))
+ return False, " Impossible d'importer les client en masse (controle de cohérence)"
+
+
+
"""
Cette fonction supprime un client.
Avant il faut verifier :
diff --git a/partner_order.py b/partner_order.py
index 6756405..b53e30e 100644
--- a/partner_order.py
+++ b/partner_order.py
@@ -124,7 +124,7 @@ def Add_Partner_Order(diction):
# Verifier que le client existe bien pour ce partner
is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents({'_id':ObjectId(str(order_header_client_id)), 'valide':'1',
- 'locked':'0', 'partner_recid':str(my_partner['recid'])})
+ 'locked':'0', 'partner_owner_recid':str(my_partner['recid'])})
if( is_client_exist_count <= 0):
mycommon.myprint(str(inspect.stack()[0][3]) + " - Le client est invalide ")
@@ -668,7 +668,7 @@ def Add_Partner_Quotation(diction):
# Verifier que le client existe bien pour ce partner
is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(str(order_header_client_id)), 'valide': '1',
- 'locked': '0', 'partner_recid': str(my_partner['recid'])})
+ 'locked': '0', 'partner_owner_recid': str(my_partner['recid'])})
if (is_client_exist_count <= 0):
mycommon.myprint(str(inspect.stack()[0][3]) + " - Le client est invalide ")
@@ -1238,7 +1238,7 @@ def Update_Partner_Order_Header(diction):
# Verifier que le client existe bien pour ce partner
is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(str(order_header_client_id)), 'valide': '1',
- 'locked': '0', 'partner_recid': str(my_partner['recid'])})
+ 'locked': '0', 'partner_owner_recid': str(my_partner['recid'])})
if (is_client_exist_count <= 0):
mycommon.myprint(str(inspect.stack()[0][3]) + " - Le client est invalide ")
@@ -1736,7 +1736,7 @@ def Update_Partner_Quotation_Header(diction):
# Verifier que le client existe bien pour ce partner
is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents(
{'_id': ObjectId(str(order_header_client_id)), 'valide': '1',
- 'locked': '0', 'partner_recid': str(my_partner['recid'])})
+ 'locked': '0', 'partner_owner_recid': str(my_partner['recid'])})
if (is_client_exist_count <= 0):
mycommon.myprint(str(inspect.stack()[0][3]) + " - Le client est invalide ")
@@ -3537,7 +3537,7 @@ def Get_Given_Partner_Order(diction):
if ('order_header_client_id' in retval.keys() and retval['order_header_client_id']):
Client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(retval['order_header_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if (Client_data and 'nom' in Client_data.keys()):
order_header_client_nom = str(Client_data['nom'])
@@ -4368,7 +4368,7 @@ def Get_Given_Partner_Order_From_Internal_ref(diction):
if ('order_header_client_id' in retval.keys() and retval['order_header_client_id']):
Client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(retval['order_header_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if (Client_data and 'nom' in Client_data.keys()):
order_header_client_nom = str(Client_data['nom'])
@@ -4510,7 +4510,7 @@ def Get_List_Partner_Order_no_filter(diction):
# Si le champ 'order_header_client_id' alors on va chercher le nom du client
if( 'order_header_client_id' in New_retVal.keys()):
Client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(New_retVal['order_header_client_id'])), 'valide':'1', 'locked':'0',
- 'partner_recid':str(my_partner['recid'])})
+ 'partner_owner_recid':str(my_partner['recid'])})
if( Client_data and 'nom' in Client_data.keys() ):
user['order_header_client_nom'] = str(Client_data['nom'])
@@ -4605,7 +4605,7 @@ def Get_List_Partner_Order_with_filter(diction):
sub_filt_client_nom = {}
Lists_partner_client_id = []
if ("client_nom" in diction.keys()):
- sub_filt_client_nom = {'nom': {'$regex': str(diction['client_nom']), "$options": "i"}, 'partner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0'}
+ sub_filt_client_nom = {'nom': {'$regex': str(diction['client_nom']), "$options": "i"}, 'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0'}
# Recuperation des '_id' des clients dont le nom match en regexp
#print(" ### sub_filt_client_nom = ", sub_filt_client_nom)
for List_Client_Data in MYSY_GV.dbname['partner_client'].find(sub_filt_client_nom, {'_id':1}):
@@ -4740,7 +4740,7 @@ def Get_List_Partner_Order_with_filter(diction):
if ('order_header_client_id' in New_retVal.keys()):
Client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(New_retVal['order_header_client_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
if (Client_data and 'nom' in Client_data.keys()):
user['order_header_client_nom'] = str(Client_data['nom'])
@@ -4749,7 +4749,7 @@ def Get_List_Partner_Order_with_filter(diction):
if ('order_header_vendeur_id' in New_retVal.keys()):
Employee_data = MYSY_GV.dbname['ressource_humaine'].find_one(
{'_id': ObjectId(str(New_retVal['order_header_vendeur_id'])), 'valide': '1', 'locked': '0',
- 'partner_recid': str(my_partner['recid'])})
+ 'partner_owner_recid': str(my_partner['recid'])})
order_header_vendeur_nom_prenom = ""
if (Employee_data and 'nom' in Employee_data.keys()):
@@ -5507,7 +5507,7 @@ def GerneratePDF_Partner_Order(diction):
if ("order_header_client_id" in Order_header_data.keys()):
Order_header_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(Order_header_data['order_header_client_id'])),
- 'partner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
+ 'partner_owner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
if (Order_header_client_data is None):
mycommon.myprint(str(inspect.stack()[0][
@@ -6015,7 +6015,7 @@ def Gernerate_Stock_PDF_Partner_Order(diction):
if ("order_header_client_id" in Order_header_data.keys()):
Order_header_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(Order_header_data['order_header_client_id'])),
- 'partner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
+ 'partner_owner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
if (Order_header_client_data is None):
mycommon.myprint(str(inspect.stack()[0][
@@ -6519,7 +6519,7 @@ def Send_Partner_Order_By_Email(tab_files, Folder, diction):
# Recuperation des données du client
if( "order_header_client_id" in Order_header_data.keys() ):
Order_header_client_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(Order_header_data['order_header_client_id'])),
- 'partner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0'})
+ 'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0'})
if( Order_header_client_data is None):
mycommon.myprint(str(inspect.stack()[0][
@@ -8465,7 +8465,7 @@ def Send_Quotation_Remind_Level1(diction):
if ("order_header_client_id" in Order_header_data.keys()):
Order_header_client_data = MYSY_GV.dbname['partner_client'].find_one(
{'_id': ObjectId(str(Order_header_data['order_header_client_id'])),
- 'partner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
+ 'partner_owner_recid': str(my_partner['recid']), 'valide': '1', 'locked': '0'})
if (Order_header_client_data is None):
mycommon.myprint(str(inspect.stack()[0][
@@ -9091,13 +9091,13 @@ def Create_Automatic_Quotation(diction):
client_connu = "0"
client_blocked = "0"
- is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents({'partner_recid':str(valide_lead_website_data['partner_owner_recid']),
+ is_client_exist_count = MYSY_GV.dbname['partner_client'].count_documents({'partner_owner_recid':str(valide_lead_website_data['partner_owner_recid']),
'siret':str(valide_lead_website_data['siret'])})
if( is_client_exist_count == 1 ):
is_client_exist_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(valide_lead_website_data['partner_owner_recid']),
+ {'partner_owner_recid': str(valide_lead_website_data['partner_owner_recid']),
'siret': str(valide_lead_website_data['siret'])})
@@ -9133,7 +9133,7 @@ def Create_Automatic_Quotation(diction):
return local_prospect_status, local_prospect_retval, False
is_client_exist_data = MYSY_GV.dbname['partner_client'].find_one(
- {'partner_recid': str(valide_lead_website_data['partner_owner_recid']),
+ {'partner_owner_recid': str(valide_lead_website_data['partner_owner_recid']),
'siret': str(valide_lead_website_data['siret'])})
"""
diff --git a/prj_common.py b/prj_common.py
index 27a9a3b..71e9045 100644
--- a/prj_common.py
+++ b/prj_common.py
@@ -4893,7 +4893,7 @@ def Get_Dictionnary_data_For_Template(diction):
client_rattachement_id_data = MYSY_GV.dbname['partner_client'].find_one({'_id':ObjectId(str(apprenant_data['client_rattachement_id'])),
'valide':'1',
'locked':'0',
- 'partner_recid':str(my_partner['recid'])},
+ 'partner_owner_recid':str(my_partner['recid'])},
{'nom':1})
if(client_rattachement_id_data and "nom" in client_rattachement_id_data.keys() ):
@@ -4917,7 +4917,7 @@ def Get_Dictionnary_data_For_Template(diction):
{'_id': ObjectId(str(apprenant_data['financeur_rattachement_id'])),
'valide': '1',
'locked': '0',
- 'partner_recid': str(my_partner['recid'])},
+ 'partner_owner_recid': str(my_partner['recid'])},
{'nom': 1})
if (client_rattachement_id_data and "nom" in client_rattachement_id_data.keys()):
@@ -5025,7 +5025,7 @@ def Get_Dictionnary_data_For_Template(diction):
for client_data in MYSY_GV.dbname['partner_client'].find({'_id': {'$in': tab_client_id, },
'valide': '1',
- 'partner_recid': str(my_partner['recid'])
+ 'partner_owner_recid': str(my_partner['recid'])
}):
new_client_data = {}
@@ -7189,6 +7189,18 @@ def Get_Partner_Data_From_Subdomain(diction):
if (config_partner_catalog_data and "contact_public_telephone" in config_partner_catalog_data.keys()):
user['catalog_pub_contact_public_telephone'] = config_partner_catalog_data['contact_public_telephone']
+ user['affiche_indicateur'] = ""
+ if (config_partner_catalog_data and "affiche_indicateur" in config_partner_catalog_data.keys()):
+ user['affiche_indicateur'] = config_partner_catalog_data['affiche_indicateur']
+
+ user['affiche_raison_sociale'] = ""
+ if (config_partner_catalog_data and "affiche_raison_sociale" in config_partner_catalog_data.keys()):
+ user['affiche_raison_sociale'] = config_partner_catalog_data['affiche_raison_sociale']
+
+ user['affiche_contact'] = ""
+ if (config_partner_catalog_data and "affiche_contact" in config_partner_catalog_data.keys()):
+ user['affiche_contact'] = config_partner_catalog_data['affiche_contact']
+
#-----------
diff --git a/ressources_humaines.py b/ressources_humaines.py
index 6bf401a..08cc2a8 100644
--- a/ressources_humaines.py
+++ b/ressources_humaines.py
@@ -1279,6 +1279,16 @@ def Get_List_Ressource_Humaine(diction):
user['id'] = str(val_tmp)
val_tmp = val_tmp + 1
+ if ("civilite" in retval.keys() and retval['civilite'] in MYSY_GV.CIVILITE):
+ user['civilite'] = str(retval['civilite']).lower()
+ elif ("civilite" in retval.keys() and str(retval['civilite']) not in MYSY_GV.CIVILITE):
+ user['civilite'] = "neutre"
+ else:
+ user['civilite'] = "neutre"
+
+ if( str(user['civilite']) == "" ):
+ user['civilite'] = "neutre"
+
"""
Si l'employé a un superieur_hierarchie_id, alors on va aller récupérer son nom et prenom.
ce superieur est une ressource humaime
@@ -1589,10 +1599,17 @@ def Get_List_Ressource_Humaine_with_filter(diction):
else:
user['prenom'] = ""
- if ("civilite" in New_retVal.keys()):
+ if ("civilite" in New_retVal.keys() and str(New_retVal['civilite']) in MYSY_GV.CIVILITE):
user['civilite'] = str(New_retVal['civilite']).lower()
+
+ elif ("civilite" in New_retVal.keys() and str(New_retVal['civilite']) not in MYSY_GV.CIVILITE):
+ user['civilite'] = "neutre"
else:
- user['civilite'] = ""
+ user['civilite'] = "neutre"
+
+ if (str(user['civilite']) == ""):
+ user['civilite'] = "neutre"
+
if( "telephone" in New_retVal.keys()):
user['telephone'] = New_retVal['telephone']
@@ -1701,10 +1718,16 @@ def Get_List_Ressource_Humaine_with_filter(diction):
else:
user['prenom'] = ""
- if ("civilite" in retval.keys()):
+ if ("civilite" in retval.keys() and retval['civilite'] in MYSY_GV.CIVILITE):
user['civilite'] = str(retval['civilite']).lower()
+
+ elif ("civilite" in retval.keys() and str(retval['civilite']) not in MYSY_GV.CIVILITE):
+ user['civilite'] = "neutre"
else:
- user['civilite'] = ""
+ user['civilite'] = "neutre"
+
+ if (str(user['civilite']) == ""):
+ user['civilite'] = "neutre"
if ("telephone" in retval.keys()):
user['telephone'] = retval['telephone']
@@ -1829,10 +1852,15 @@ def Get_List_Ressource_Humaine_no_filter(diction):
else:
user['prenom'] = ""
- if ("civilite" in retval.keys()):
+ if ("civilite" in retval.keys() and retval['civilite'] in MYSY_GV.CIVILITE):
user['civilite'] = str(retval['civilite']).lower()
+ elif ("civilite" in retval.keys() and str(retval['civilite']) not in MYSY_GV.CIVILITE):
+ user['civilite'] = "neutre"
else:
- user['civilite'] = ""
+ user['civilite'] = "neutre"
+
+ if (str(user['civilite']) == ""):
+ user['civilite'] = "neutre"
if ("telephone" in retval.keys()):
user['telephone'] = retval['telephone']
@@ -1964,11 +1992,18 @@ def Get_Given_Ressource_Humaine(diction):
user['id'] = str(val_tmp)
val_tmp = val_tmp + 1
- if ("civilite" not in retval.keys()):
- user['civilite'] = ""
+ if ("civilite" not in retval.keys() ):
+ user['civilite'] = "neutre"
+
elif (retval['civilite'] not in MYSY_GV.CIVILITE):
# la civilité n'est pas une de celle autorisée, alors je renvoie vide
- user['civilite'] = ""
+ user['civilite'] = "neutre"
+
+ if ("civilite" in retval.keys() and retval['civilite'] in MYSY_GV.CIVILITE ):
+ user['civilite'] = "neutre"
+
+ if (str(user['civilite']) == ""):
+ user['civilite'] = "neutre"
"""
@@ -2369,6 +2404,17 @@ def Get_List_Manager_Ressource_Humaine(diction):
user['id'] = str(val_tmp)
val_tmp = val_tmp + 1
+ if ("civilite" in retval.keys() and retval['civilite'] in MYSY_GV.CIVILITE):
+ user['civilite'] = str(retval['civilite']).lower()
+ elif ("civilite" in retval.keys() and str(retval['civilite']) not in MYSY_GV.CIVILITE):
+ user['civilite'] = "neutre"
+ else:
+ user['civilite'] = "neutre"
+
+ if (str(user['civilite']) == ""):
+ user['civilite'] = "neutre"
+
+
"""
Si l'employé a un superieur_hierarchie_id, alors on va aller récupérer son nom et prenom.
ce superieur est une ressource humaime
diff --git a/survey_mgt.py b/survey_mgt.py
index 01787e2..d6510fe 100644
--- a/survey_mgt.py
+++ b/survey_mgt.py
@@ -522,7 +522,7 @@ def Send_Survey_Alert_Notif(diction):
try:
field_list_obligatoire = [ 'user_question_reponse', 'partner_owner_recid']
- print(" ### Send_Survey_Alert_Notif diction = ", diction)
+ print(" ### Send_Survey_Alert_Notif diction (trop long) = ")
for val in field_list_obligatoire:
if val not in diction:
diff --git a/tools_cherif/tools_cherif.py b/tools_cherif/tools_cherif.py
index 2222056..c772562 100644
--- a/tools_cherif/tools_cherif.py
+++ b/tools_cherif/tools_cherif.py
@@ -1741,7 +1741,7 @@ def Delete_Nicole_Account(diction):
# f - Suppression des clients
delete_row = MYSY_GV.dbname['partner_client'].delete_many(
- {'partner_recid': str(partner_recid)})
+ {'partner_owner_recid': str(partner_recid)})
deleted_message = deleted_message + " -- " + str(
delete_row.deleted_count) + " Ressource_materielle_affectation(s) Supprimé(s)"