From 4fb7d85cbde768844370711c43039e253593d20e Mon Sep 17 00:00:00 2001 From: Cherif Date: Fri, 20 Jun 2025 19:54:25 +0200 Subject: [PATCH] 20/06/2025 -18h Signed-off-by: Cherif --- .idea/workspace.xml | 20 +- Job_Cron.py | 203 ++++- Job_Cron_Common.py | 6 +- Log/log_file.log | 1858 +++++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 3 +- main.py | 14 + partner_base_setup.py | 58 +- survey_mgt.py | 21 +- 8 files changed, 2140 insertions(+), 43 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 2d83b9a..8c3b2ea 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,19 +4,15 @@ - @@ -525,6 +520,7 @@ - \ No newline at end of file diff --git a/Job_Cron.py b/Job_Cron.py index d94af28..54e7b32 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -1840,4 +1840,205 @@ def Cron_Session_Convocation_Sending(diction): 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 convocations (CRON) " \ No newline at end of file + return False, " Impossible d'envoyer les convocations (CRON) " + + +""" +CRON : +Cette fonction permet de faire la relance des questionnaires de positionnement +""" + +def Cron_Survey_Questionnaires_Relance(): + try: + + print(" Cron : In function = Cron_Survey_Q_Position_Relance") + todays_date = str(date.today().strftime("%d/%m/%Y")) + todays_date_ISODATE = datetime.strptime(str(todays_date), '%d/%m/%Y') + + + + + for relance_setp in MYSY_GV.dbname['base_partner_setup'].find({'valide': '1', + 'locked': '0', + 'config_name': 'relance_auto', + 'config_value': '1', + 'related_collection': 'survey', + 'partner_owner_recid': {'$ne': 'default'}, + + }): + nb_limite_relance = 0 + nb_relance_data = MYSY_GV.dbname['base_partner_setup'].find_one({'valide': '1', + 'locked': '0', + 'config_name': 'nb_relance_auto', + 'related_collection': 'survey', + 'partner_owner_recid': str(relance_setp['partner_owner_recid']), + }) + + if("config_value" in nb_relance_data.keys() and nb_relance_data['config_value']): + nb_limite_relance = mycommon.tryInt(str(nb_relance_data['config_value'])) + + frequence_relance_auto = 0 + frequence_relance_data = MYSY_GV.dbname['base_partner_setup'].find_one({'valide': '1', + 'locked': '0', + 'config_name': 'frequence_relance_auto', + 'related_collection': 'survey', + 'partner_owner_recid': str( + relance_setp['partner_owner_recid']), + }) + + if ("config_value" in frequence_relance_data.keys() and frequence_relance_data['config_value']): + frequence_relance_auto = mycommon.tryInt(str(frequence_relance_data['config_value'])) + + + + + + + + if ("partner_owner_recid" in relance_setp.keys() and relance_setp['partner_owner_recid']): + local_partner_owner_recid = str(relance_setp['partner_owner_recid']) + + # Aller chercher tous les questionnaires à relancer + devis_qery_match = {'$and': [{'partner_owner_recid': str(local_partner_owner_recid), + 'valide': '1', + 'locked': '0', 'statut': '1', 'type': '1', + }, + ]} + + pipe_qry = ([ + + {'$match': devis_qery_match}, + ]) + + print(" ## pipe_qry Cron_Survey_Questionnaires_Relance = ", pipe_qry) + for local_questionnaire in MYSY_GV.dbname['survey'].aggregate(pipe_qry): + + print("### local_questionnaire a traiter = ", local_questionnaire) + + relance_done = 0 + + if ("nb_relance" in local_questionnaire.keys() and local_questionnaire['nb_relance']): + relance_done = mycommon.tryInt(str(local_questionnaire['nb_relance'])) + + + date_derniere_relance_auto = "01/12/2099" + if ("date_dernier_relance_auto" in local_questionnaire.keys() and local_questionnaire['date_dernier_relance_auto']): + date_derniere_relance_auto = str(local_questionnaire['date_dernier_relance_auto'])[0:10] + + date_derniere_relance_auto_ISODATE = datetime.strptime(str(date_derniere_relance_auto), '%d/%m/%Y') + + new_relance_date_ISODATE = date_derniere_relance_auto_ISODATE + timedelta( + days=frequence_relance_auto) + + + print(" ### LA frequence_relance_auto ", frequence_relance_auto) + + print(" ### LA dernière relance date de ", date_derniere_relance_auto) + + print(" ### LA PROCHAINE RELANCE EST ", new_relance_date_ISODATE) + + + new_relance_date_no_ISODATE = str(new_relance_date_ISODATE.strftime("%d/%m/%Y")) + # print(" ### LA PROCHAINE RELANCE EST (new_relance_date_no_ISODATE) ", new_relance_date_no_ISODATE) + + datetime.strptime(str(todays_date), '%d/%m/%Y') + + + print(" ### relance_done = ",relance_done) + print(" ### nb_limite_relance = ", nb_limite_relance) + + print(" ### datetime.strptime( str(todays_date), '%d/%m/%Y') = ", datetime.strptime( + str(todays_date), '%d/%m/%Y')) + + print(" ### datetime.strptime(str(new_relance_date_no_ISODATE).strip(), '%d/%m/%Y') = ", datetime.strptime(str(new_relance_date_no_ISODATE).strip(), + '%d/%m/%Y')) + + if ( relance_done <= nb_limite_relance and datetime.strptime( + str(todays_date), '%d/%m/%Y') >= datetime.strptime(str(new_relance_date_no_ISODATE).strip(), + '%d/%m/%Y')): + + """ + On fait le traitement, on envoie le mail + 1 - recuperation des data + """ + + local_status, my_partner = mycommon.Get_Connected_User_Partner_Data_From_RecID( + str(local_questionnaire['partner_owner_recid'])) + if (local_status is not True): + return local_status, my_partner + + local_dicton = {} + local_dicton['partner_owner_recid'] = str(local_questionnaire['partner_owner_recid']) + local_dicton['tab_ids'] = str(local_questionnaire['_id']) + + print(" ### local_dicton = ", local_dicton) + + """ + ICICI : comme j'ai supprimé de formation et des session, m'assurer d'avoir de bonnes date + """ + local_status, local_retval = survey_mgt.Automatic_Send_Survey_TabIds(local_dicton) + + print(" relance return local_send_remind_status = ", local_status) + + if (local_status is True): + + print(" RELANCE FAIT ET OK ") + """ + Une fois la relance faite, on met à jour le devis avec les infos suivant : + - liste_relance + + """ + + frequence_relance_auto_reached = "0" + + if ("list_relance" in local_questionnaire.keys() and local_questionnaire['list_relance']): + local_node = {} + local_node['date_relance'] = str(date.today()) + local_node['mesg_relance'] = str(local_retval) + local_questionnaire['list_relance'].append(local_node) + + else: + + local_node = {} + local_node['date_relance'] = str(date.today()) + local_questionnaire['list_relance'] = [] + local_questionnaire['list_relance'].append(local_node) + local_node['mesg_relance'] = str(local_retval) + + nb_relance = str(len(local_questionnaire['list_relance'])) + + local_data_update = local_questionnaire + + id_to_update = str(local_data_update['_id']) + + del local_data_update['_id'] + + local_data_update['nb_relance'] = str(nb_relance) + local_data_update['date_dernier_relance_auto'] = str(todays_date) + + result = MYSY_GV.dbname['survey'].find_one_and_update( + {'_id': ObjectId(str(id_to_update)), + + 'valide': '1', + 'locked': '0'}, + {"$set": local_data_update}, + upsert=False, + return_document=ReturnDocument.AFTER + ) + + + else: + print(" ### NoNNNNNNNNNN on NEEEE fait la relanceeeeeeeeeeeee") + print(" limite relance atteint : ") + print(" limite relance_done : ", relance_done) + print(" limite nb_limite_relance : ", nb_limite_relance) + + + return True, "Relance Questionnaires OK" + + + 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, str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno) + diff --git a/Job_Cron_Common.py b/Job_Cron_Common.py index 61a8c73..e3d6897 100644 --- a/Job_Cron_Common.py +++ b/Job_Cron_Common.py @@ -1361,11 +1361,11 @@ def Cron_Create_One_Survey_To_Inscrit(diction): new_survey_data['statut'] = "0" new_survey_data['type'] = "1" - new_survey_data['date_update'] = str(datetime.now()) + new_survey_data['creation_date'] = str(datetime.now()) new_survey_data['update_by'] = str(my_partner['_id']) new_survey_data['creation_by'] = str(my_partner['_id']) + new_survey_data['date_dernier_relance_auto'] = str(datetime.now().strftime("%d/%m/%Y")) - print(" ~~~~ A inserer = new_survey_data = ", new_survey_data) inserted_id = MYSY_GV.dbname['survey'].insert_one(new_survey_data).inserted_id if (not inserted_id): @@ -3002,3 +3002,5 @@ def Cron_Send_Emargement_By_Date_By_Email_for_not_sent(Folder, diction): 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 demandes d'émargement ", "0" + + diff --git a/Log/log_file.log b/Log/log_file.log index 6c2dcf3..b2bd2c9 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -36784,3 +36784,1861 @@ INFO:werkzeug:127.0.0.1 - - [19/Jun/2025 18:08:29] "POST /myclass/api/Get_List_E INFO:werkzeug:127.0.0.1 - - [19/Jun/2025 18:08:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [19/Jun/2025 18:08:29] "POST /myclass/api/Get_List_Evaluation_UE_Note_Classement_With_Filter HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [19/Jun/2025 18:08:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:39:19.140782 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 11:39:19.141782 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 11:39:19.141782 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 11:39:19.141782 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 11:39:19.141782 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 11:39:25.655932 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 11:39:25.655932 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 11:39:25.655932 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 11:39:25.655932 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 11:39:25.655932 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 11:41:29.965324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.255913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.590193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:41:30.593226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:41:30.594193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.610195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:41:30.612196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:41:30.612196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.632547 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.919493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:41:30.937390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:41:30.939387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:41:30] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:05.018780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.019795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.020795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.021781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.032787 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.045987 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:05.374717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.376733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.381729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.383724 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:05.392731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:05.401727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:11.904903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:11.909899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:11.915010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:11.922903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:11.929908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:11.943438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:11] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:12.234005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:14.068481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:16.279144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:16] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:16.594186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:16.597281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:16.601289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:42:16.603284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:16] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:16] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:16] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:42:19.461843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:42:19] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:44:08.652366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:44:08.657453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:44:08.662451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:44:08.668458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:44:08.671340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:44:08] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:44:08] "POST /myclass/api/Get_Given_SessionFormation_List_Automatic_Traitement_From/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:44:08] "POST /myclass/api/Get_Given_SessionFormation_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:44:08] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:44:08] "POST /myclass/api/Audit_Session_Action_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:29.482568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:29] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:31.562956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:31] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:37.010532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:37] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:37.275498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:37] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:49.067991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:50] "POST /myclass/api/Send_Survey_TabIds/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:45:50.522099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:45:50] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:48:52.664913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:48:52] "POST /myclass/api/Get_Given_Survey_Data_No_Token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:48:52.911591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:48:52] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:48:53.068923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 11:48:53.069924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:48:53] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:48:53] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:48:53.084924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:48:53] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 11:49:32.092626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 11:49:32] "POST /myclass/api/Record_Survey_Data_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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 11:52:29.082720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 11:52:29.082720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 11:52:29.082720 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 11:52:29.082720 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 11:52:29.082720 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 11:52:43.465963 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 11:52:43.465963 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 11:52:43.465963 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 11:52:43.465963 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 11:52:43.465963 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 11:54:43.193412 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 11:54:43.194410 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 11:54:43.194410 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 11:54:43.194410 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 11:54:43.194410 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:13:17.025022 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:13:17.025022 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:13:17.025022 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:13:17.025022 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:13:17.026021 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:19:43.428466 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:19:43.429475 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:19:43.429475 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:19:43.429475 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:19:43.429475 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:22:03.830361 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:22:03.830361 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:22:03.830361 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:22:03.830361 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:22:03.830361 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 12:22:04.041639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.045641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.055641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.060091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.063087 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.067114 : La session de connexion n'est pas valide +INFO:root:2025-06-20 12:22:04.068090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.079114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.079114 : La session de connexion n'est pas valide +INFO:root:2025-06-20 12:22:04.084115 : La session de connexion n'est pas valide +INFO:root:2025-06-20 12:22:04.084115 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.092654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.099639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.102630 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.104635 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.110738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.113690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:04.121753 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:04.124631 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:04] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:05.820446 : getRecodedImage - Impossible de récupérer le recid du user +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:05.824324 : get_partner_account - La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.366303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.366303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.368303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.371308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.372308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.620112 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.622114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.626114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.631174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.636153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.645155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.649155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.656157 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.663156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.666154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.669153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.674152 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.680155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.682153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.685156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.694158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.697156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.699682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.701685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.710210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.714205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.720204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.724210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.733223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.738216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.745205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.749223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.756210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:08.758221 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:08.764208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:08] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.319664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.410421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:11.435990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:11.455992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.478986 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.482014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.516126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.548127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:11.579123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:11.585114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:11.602170 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:11.606155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:11] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:29.318506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:29.319507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:29] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:29] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:32.803696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.807694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.808694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.814696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.818696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.824698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:22:32.837701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:32.845706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:32.854695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:32] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:34.703656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:34] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:22:47.682057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:22:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:23:59.424304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:23:59] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:24:01.864934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:24:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:25:12.585672 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:25:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:29:50.142721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:29:50.142721 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:29:50.142721 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:29:50.142721 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:29:50.142721 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:31:33.766416 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:31:33.767416 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:31:33.767416 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:31:33.767416 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:31:33.767416 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:33:54.626935 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:33:54.626935 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:33:54.626935 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:33:54.626935 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:33:54.626935 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 12:34:09.954915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:34:10.248540 : Get_List_Partner_Basic_Setup Le champ 'related_collection' n'existe pas +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:34:10] "POST /myclass/api/Get_List_Partner_Basic_Setup/ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:34:57.087106 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:34:57.087106 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:34:57.088108 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:34:57.088108 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:34:57.088108 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 12:35:55.342390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.343388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.345474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.348515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.349516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.351517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:35:55.370515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:35:55.375515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:35:55.381635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:35:55] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:36:00.358779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:36:00] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:36:01.503716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:36:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:36:04.157693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:36:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 12:37:20.551819 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 12:37:20.551819 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 12:37:20.551819 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 12:37:20.551819 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 12:37:20.551819 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 12:37:31.565256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:37:31.569256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:37:31.574562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:37:31.578588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:37:31.580566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:37:31.585586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:37:31.604588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:37:31.615584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:37:31.627571 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:37:37.983472 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:37:37] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:40:01.267982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:40:01.269980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:40:01.270978 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:40:01.274006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:40:01.274006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:40:01.275980 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:40:01.281481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:40:01.284482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:40:01.287481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:40:01] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:41:47.751818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:41:47.757818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:41:47.758818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:41:47.761819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:41:47.764336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:41:47.766337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:41:47.771846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:41:47.775846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:41:47.777844 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:41:47] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:03.383029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.384538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.385539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.387537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.389539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.392537 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:03.400923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.404927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:03.405938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:10.882623 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:10] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:32.255030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:32.258031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:32.260032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:32.261031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:32.265029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:32.269030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:32.272029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:32.277029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:32.281028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:32] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.804481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.807481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.810487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.819489 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.864009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.865010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.867011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.870011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.873040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.876011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:38.879010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.880011 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:44:38.883012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:38] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:44:55.145866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:44:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.576869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.578868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.580868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.588869 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.611433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.613434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.614435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.616435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.619435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.620434 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.624435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:46:57.627434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 12:46:57.631436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:46:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 12:47:00.188268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 12:47:00] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:29:48.643665 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 16:29:48.649766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 16:29:48.649766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 16:29:48.654723 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 16:29:48.654723 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 16:30:50.123437 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 16:30:50.124444 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 16:30:50.124444 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 16:30:50.125434 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 16:30:50.125434 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 16:36:27.596229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 16:36:27.612217 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 16:36:27.612217 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 16:36:27.612217 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 16:36:27.612217 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 16:36:51.162166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.165174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.168169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.169170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:51.203702 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:51.230694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.233695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.236695 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.240762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:51.246836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/Get_Ref_Pedagogique_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:51.253841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:51] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:56.703158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:56.706158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:56.709159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:56.715160 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:57.445804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:57.448818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:57.452804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:57.459800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:57.462801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:36:57.467801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:57.477809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_Competence_Level/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:57] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:59.667185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:59] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:36:59.670201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:36:59] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:02.183326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:37:02.186341 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:37:02.191362 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:02.201901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:02.205898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:02.210883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:37:02.214898 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:37:02.218883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:02.223882 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:37:04.147154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:37:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:41:32.949325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:41:32.953421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:41:32.957337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:41:32.961329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:41:32.964351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:41:32.968338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:41:32.977339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:41:32.977339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:41:32.981855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:41:49.305732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:41:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:42:49.600022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:42:49.603021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:42:49.605022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:42:49.607022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:42:49.613562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:42:49.614570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:42:49.617082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:42:49.620085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:42:49.624634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:49] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:42:51.472029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:42:51] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:13.711593 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:44:13.715620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:44:13.716620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:44:13.718619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:13.722621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:13.725620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:13.728123 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:44:13.730130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:13.736511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:13] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:44:19.689272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:44:19] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:05.091081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:46:05.092081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:46:05.096080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:46:05.097079 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:46:05.102081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:05.110079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:05.113081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:05.118082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:46:05.123082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:18.122410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:46:25.154773 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:46:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:30.231602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:47:30.233600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:47:30.234600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:47:30.236602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:47:30.238601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:30.242602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:30.245606 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:30.248607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:47:30.249607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:30] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:39.786336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:39] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:43.731156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:43] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:47:47.666041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:47:47] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:50:39.899228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:50:39] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:50:40.498368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:50:40] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:35.374780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:52:35.376824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:52:35.378780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:35.381782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:52:35.384273 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:52:35.386304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:52:35.389281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:35.394285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:35.399285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:35] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:38.101005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:38] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:55.011233 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:55] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:52:55.047228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:52:55] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.249741 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.252737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.254740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.266740 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.315258 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.316255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.318254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.321291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.323256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.326255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.330256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:05.332254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 16:53:05.335255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:05] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:08.909435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:25.195787 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:25] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 16:53:25.239936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 16:53:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 16:54:31.936179 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 16:54:31.937178 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 16:54:31.937178 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 16:54:31.937178 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 16:54:31.937178 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:01:31.681936 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:01:31.681936 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:01:31.682938 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:01:31.682938 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:01:31.682938 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:01:38.446822 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:01:38.446822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:01:38.447822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:01:38.447822 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:01:38.447822 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:01:52.030594 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:01:52.030594 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:01:52.031573 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:01:52.031573 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:01:52.031573 : ++ 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_base_setup.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:02:10.392072 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:02:10.392072 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:02:10.392072 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:02:10.392072 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:02:10.392072 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 17:04:07.375840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:07] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:04:25.885626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:04:25.892664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:04:25.896652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:04:25.900665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:04:25.906266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:04:25.910159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:04:25.918168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:04:25.931711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:04:25.961820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:04:25] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:36.074046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:36.078048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:36.082048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:36.087049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:36.096047 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:36.106046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:36.110046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:36.115046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:36.125077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:36] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.586089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:57.588825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.603393 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:57.608408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.615403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.624372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:05:57.629372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.636375 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:05:57.645374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:05:57] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:06:09.531184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:06:09] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:06:21.288660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:06:21] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:06:21.317660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:06:21] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:06:31.555395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:06:31] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:06:31.590468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:06:31] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.529679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.536682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.541682 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.547682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:14.551193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.558193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.569193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.573193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:14.580197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:26.536660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:26.538658 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:26.540657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:26.543665 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:26.546665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:26.548663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:08:26.551666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:26.556664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:26.560184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:26] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:08:28.417535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:08:28] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:10:38.748628 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:10:38.748628 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:10:38.748628 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:10:38.748628 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:10:38.748628 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:11:31.567555 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:11:31.567555 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:11:31.567555 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:11:31.568559 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:11:31.568559 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 17:12:02.514955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.516955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.517954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.529956 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.573955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.574955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.576954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.577954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.579962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.583962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.587962 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.587962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.590961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.877985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.878985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.880985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.881985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.883989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.888995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.895992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:02.895992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:02.899505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:02] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.028145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.030145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.031180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.033145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.035145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.038149 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.045148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.047145 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.051148 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.172918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.173925 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.176116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.177103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.183102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.186106 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:03.191286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.195282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:03.198282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:03] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:04.280779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.282780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.284780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.285779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.287781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.288802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:04.290786 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:04.293953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:04.298959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:04.300958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.302461 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:04.305469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:07.877689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:07.879690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:07.882691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:07.886688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:07.887689 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:07.894690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:07.899696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:09.707764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:09] "POST /myclass/api/Get_Attestion_By_Session/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:10.512012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:10] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:31.610715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 17:12:32.150194 : Send_Survey_TabIds L'identifiant de l'enquete 68552dc117dc7dbad8d4d37b invalide +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:32] "POST /myclass/api/Send_Survey_TabIds/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:42.930811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:42] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:47.851808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:47] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:12:47.902170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:12:47] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:13:00.898394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:13:01] "POST /myclass/api/Send_Survey_TabIds/ HTTP/1.1" 200 - +INFO:root:2025-06-20 17:13:01.913332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 17:13:01] "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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:13:46.695903 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:13:46.695903 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:13:46.695903 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:13:46.695903 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:13:46.695903 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:15:09.476013 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:15:09.476013 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:15:09.476013 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:15:09.476013 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:15:09.476013 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:17:28.472968 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:17:28.472968 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:17:28.472968 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:17:28.472968 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:17:28.473965 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 17:21:53.880823 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 17:21:53.880823 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 17:21:53.880823 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 17:21:53.880823 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 17:21:53.880823 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:38:33.744327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:38:33] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:38:37.821850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:38:37] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:38:37.864390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:38:37] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:39:04.365572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:39:06] "POST /myclass/api/Send_Survey_TabIds/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:39:06.821427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:39:06] "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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:44:48.243172 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:44:48.243172 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:44:48.243172 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:44:48.243172 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:44:48.243172 : ++ 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 +INFO:root:2025-06-20 18:48:55.218801 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:48:55.219799 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:48:55.219799 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:48:55.219799 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:48:55.219799 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:49:46.442782 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:49:46.443783 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:49:46.443783 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:49:46.443783 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:49:46.443783 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:50:57.483309 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:50:57.484319 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:50:57.484319 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:50:57.484319 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:50:57.484319 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:50:57.534643 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:50:57] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 404 - +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 +INFO:root:2025-06-20 18:51:28.084435 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:51:28.084435 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:51:28.084435 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:51:28.084435 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:51:28.084435 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:51:52.674572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:51:52] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 18:51:52.678620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:51:52.678620 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:51:52] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:53:59.479329 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:53:59.479329 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:53:59.479329 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:53:59.479329 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:53:59.479329 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:55:00.512290 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:55:00.512290 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:55:00.513289 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:55:00.513289 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:55:00.513289 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:55:00.580381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:55:00] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 18:55:00.585380 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:55:00.586378 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:55:00] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:57:26.411334 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:57:26.411334 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:57:26.411334 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:57:26.411334 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:57:26.412306 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:57:32.711317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.713334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.717321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.736837 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.765837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.768836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.772841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.776842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.782842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.789384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:57:32.791382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.796381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:32.807412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:32] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:34.105826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:34] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:48.319585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:48] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:48.359121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:48] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:58.176507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:58] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 18:57:58.209501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:57:58] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 18:59:24.915098 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 18:59:24.915098 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 18:59:24.915098 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 18:59:24.915098 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 18:59:24.915098 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 18:59:30.813525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:59:30] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 18:59:30.817542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 18:59:30.818559 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 18:59:30] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:01:24.448046 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:01:24.448046 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:01:24.449025 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:01:24.449025 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:01:24.449025 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:01:50.269170 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:01:50.269170 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:01:50.269170 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:01:50.269170 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:01:50.269170 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:02:04.400350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.402351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.403349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:04.413350 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:04.446359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.448389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.450358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.452357 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.455359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.458361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:04.463359 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:04.464360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_Competence_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:04.476358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_base_document_automatic_setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:08.000653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:08] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:18.789591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:18] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:18.823657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:18] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:23.614009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:23] "POST /myclass/api/Add_Update_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:23.647037 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:23] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:02:30.680620 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:02:30] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:02:30.683620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:02:30.683620 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:02:32.429624 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.031756 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.048304 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.062271 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.078780 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.096825 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.112824 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:02:52.130518 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:00.043860 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa6fd47c656dcafa365 +INFO:root:2025-06-20 19:03:00.046861 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2136 +INFO:root:2025-06-20 19:03:00.678191 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa8fd47c656dcafa3b2 +INFO:root:2025-06-20 19:03:00.681169 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2136 +INFO:root:2025-06-20 19:03:01.782677 : WARNING impossible de recuperer le 'courrier_template_tracking' 12 +INFO:root:2025-06-20 19:03:01.829217 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:01.868407 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:01.909712 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:01.930808 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:01.989242 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.021248 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.059822 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.091832 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.151893 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.185022 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.222527 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.287670 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.363981 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.438008 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.514563 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.590137 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.648038 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.701205 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.775772 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.837462 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:03:02.896386 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:03:03] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 500 - +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 +INFO:root:2025-06-20 19:04:46.349795 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:04:46.349795 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:04:46.349795 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:04:46.349795 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:04:46.349795 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:05:39.072222 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:05:39.072222 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:05:39.073221 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:05:39.073221 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:05:39.073221 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:06:14.363262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:06:14] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:06:14.367248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:06:14.367248 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:06:14] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:09:35.644237 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:09:35.644237 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:09:35.645237 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:09:35.645237 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:09:35.645237 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:10:42.347700 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:10:42.347700 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:10:42.347700 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:10:42.348699 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:10:42.348699 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:11:12.039794 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:11:12.039794 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:11:12.039794 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:11:12.039794 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:11:12.039794 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:12:42.285894 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:12:42.285894 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:12:42.285894 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:12:42.285894 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:12:42.285894 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:15:54.558706 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:15:54.558706 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:15:54.559707 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:15:54.559707 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:15:54.559707 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:16:00.587914 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:16:00.587914 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:16:00.587914 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:16:00.587914 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:16:00.587914 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:17:36.598223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:17:36] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:17:36.604223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:17:36.604223 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:17:36] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:18:31.120729 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:18:31.120729 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:18:31.120729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:18:31.120729 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:18:31.120729 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:20:36.812720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:20:36.813720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:20:36.813720 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:20:36.813720 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:20:36.813720 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:20:41.252089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:20:41] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:20:41.255070 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:20:41.255070 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:20:41] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:22:02.816399 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:22:02.816399 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:22:02.817399 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:22:02.817399 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:22:02.817399 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:22:38.570213 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:22:38] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:22:38.575629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:22:38.575629 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:22:38] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:24:34.671500 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:24:34.671500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:24:34.671500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:24:34.671500 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:24:34.671500 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:24:39.323516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:24:39] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:24:39.326527 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:24:39.326527 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:24:39.663240 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.698384 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.719388 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.736338 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.754378 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.771326 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.795123 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:39.823320 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:40.840623 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa6fd47c656dcafa365 +INFO:root:2025-06-20 19:24:40.842680 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2136 +INFO:root:2025-06-20 19:24:41.549991 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa8fd47c656dcafa3b2 +INFO:root:2025-06-20 19:24:41.551993 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2136 +INFO:root:2025-06-20 19:24:41.624525 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:41.726595 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:41.860124 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.006213 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.207835 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.267840 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.364860 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.396897 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.428897 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.462420 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.492449 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.523450 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.549447 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.572452 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.591958 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.618960 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.639960 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.663475 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.682992 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.709509 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:root:2025-06-20 19:24:42.731505 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2031 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:24:42] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:26:11.615836 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:26:11.615836 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:26:11.615836 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:26:11.615836 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:26:11.615836 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:29:20.853651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:29:20.853651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:29:20.853651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:29:20.853651 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:29:20.853651 : ++ 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 +INFO:root:2025-06-20 19:30:59.832717 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:30:59.832717 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:30:59.833716 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:30:59.833716 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:30:59.833716 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:31:42.114878 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:31:42.114878 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:31:42.114878 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:31:42.114878 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:31:42.114878 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:32:12.692573 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:32:12.692573 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:32:12.692573 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:32:12.692573 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:32:12.692573 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:32:51.870610 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:32:51.870610 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:32:51.870610 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:32:51.870610 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:32:51.870610 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:33:15.687355 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:33:15.687355 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:33:15.687355 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:33:15.687355 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:33:15.688361 : ++ 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\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:33:33.019474 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:33:33.019474 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:33:33.019474 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:33:33.019474 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:33:33.019474 : ++ 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\\Job_Cron_Common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:33:52.592730 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:33:52.592730 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:33:52.592730 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:33:52.592730 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:33:52.592730 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:34:16.441822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:34:16] "POST /myclass/api/Get_List_Formulaire_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:34:19.448577 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:34:19] "POST /myclass/api/Init_Survey_Tab_For_All_Session_Inscrit/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:34:19.514957 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:34:19] "POST /myclass/api/Get_List_Survey_with_filter/ HTTP/1.1" 200 - +INFO:root:2025-06-20 19:35:48.730928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:35:48] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:35:48.733928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:35:48.733928 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:35:50.560150 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.117116 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.132085 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.148112 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.163086 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.179104 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.195086 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:09.211633 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:16.184756 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa6fd47c656dcafa365 +INFO:root:2025-06-20 19:36:16.185763 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2137 +INFO:root:2025-06-20 19:36:16.804251 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa8fd47c656dcafa3b2 +INFO:root:2025-06-20 19:36:16.805264 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2137 +INFO:root:2025-06-20 19:36:18.039933 : WARNING impossible de recuperer le 'courrier_template_tracking' 12 +INFO:root:2025-06-20 19:36:18.073936 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.089044 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.102489 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.116491 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.130616 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.159173 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.191172 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.207171 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.223686 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.238687 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.252691 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.268224 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.297199 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.336063 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.375063 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.408184 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.462179 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.513431 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.557047 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.608861 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:root:2025-06-20 19:36:18.670597 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2032 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:36:18] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\Cherif\\Documents\\myclass.com\\Siteweb\\Elyos_Ftion_Initiale\\Ela_back\\Back_Office_FI\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:43:13.634867 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:43:13.634867 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:43:13.634867 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:43:13.634867 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:43:13.634867 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:43:51.613877 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:43:51.614877 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:43:51.614877 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:43:51.614877 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:43:51.614877 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:44:35.782726 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:44:35.783727 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:44:35.783727 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:44:35.783727 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:44:35.783727 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:44:43.130836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:44:43] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:44:43.136358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:44:43.137856 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:44:45.296446 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:45.887313 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.085751 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.160346 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.211462 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.315059 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.369666 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:46.416714 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:51.863511 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa6fd47c656dcafa365 +INFO:root:2025-06-20 19:44:51.865510 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2140 +INFO:root:2025-06-20 19:44:52.673559 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa8fd47c656dcafa3b2 +INFO:root:2025-06-20 19:44:52.675560 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2140 +INFO:root:2025-06-20 19:44:52.701584 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.719742 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.733842 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.747842 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.763347 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.778745 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.797205 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.813642 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.832803 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.847267 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.861268 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.876792 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.893667 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.910380 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.927393 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.942860 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.960342 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.977406 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:52.992987 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:53.007993 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:root:2025-06-20 19:44:53.026983 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2035 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:44:53] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ 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 +INFO:root:2025-06-20 19:47:05.669374 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:47:05.670374 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:47:05.670374 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:47:05.670374 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:47:05.670374 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:47:51.125731 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:47:51] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:47:51.130750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:47:51.130750 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:47:51.422594 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.516779 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.526845 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.532308 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.538308 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.542308 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.545308 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.554402 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.594973 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.604967 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.613881 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.620217 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.625254 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.631598 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.636896 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.642856 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.658871 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.665948 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.672188 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.679613 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.683612 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.696308 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.711328 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.719339 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.725362 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.731913 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.744823 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.750832 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.757809 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.763402 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:root:2025-06-20 19:47:51.769396 : Automatic_Send_Survey_TabIds -'int' object is not subscriptable - Line : 1988 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:47:51] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ 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 +INFO:root:2025-06-20 19:49:06.119105 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:49:06.119105 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:49:06.119105 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:49:06.119105 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:49:06.119105 : ++ 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\\survey_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:50:17.944005 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:50:17.945005 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:50:17.945005 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:50:17.945005 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:50:17.945005 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 +INFO:root:2025-06-20 19:50:25.400561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:50:25] "GET /myclass/api/Cron_Survey_Questionnaires_Relance HTTP/1.1" 308 - +INFO:root:2025-06-20 19:50:25.405561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2025-06-20 19:50:25.406562 : ### CRONNN Cron_Survey_Questionnaires_Relance : payload = +INFO:root:2025-06-20 19:50:25.827994 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.852951 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.868194 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.885190 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.900212 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.917546 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.933669 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:25.950713 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:26.764957 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa6fd47c656dcafa365 +INFO:root:2025-06-20 19:50:26.766956 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2144 +INFO:root:2025-06-20 19:50:27.677424 : WARNING : Impossible de logguer l'historique pour l'inscrit : 6655baa8fd47c656dcafa3b2 +INFO:root:2025-06-20 19:50:27.679423 : Automatic_Send_Survey_TabIds -'NoneType' object is not subscriptable - Line : 2144 +INFO:root:2025-06-20 19:50:28.015605 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.062125 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.095125 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.129125 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.157646 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.186647 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.214647 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.247655 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.272695 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.310694 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.339215 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.367741 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.398739 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.427742 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.458820 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.492822 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.522573 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.552576 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.581083 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.608083 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:root:2025-06-20 19:50:28.626083 : Automatic_Send_Survey_TabIds -list object has no element 0 - Line : 2039 +INFO:werkzeug:127.0.0.1 - - [20/Jun/2025 19:50:28] "GET /myclass/api/Cron_Survey_Questionnaires_Relance/ 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 +INFO:root:2025-06-20 19:52:45.471692 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:52:45.472676 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:52:45.472676 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:52:45.472676 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:52:45.472676 : ++ 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\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2025-06-20 19:54:16.542598 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2025-06-20 19:54:16.542598 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev_fi ++ +INFO:root:2025-06-20 19:54:16.542598 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev_fi') ++ +INFO:root:2025-06-20 19:54:16.542598 : ++ FLASK PORT 5001 ++ +INFO:root:2025-06-20 19:54:16.542598 : ++ LMS_BAS_URL mysy-hosting.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 479-264-725 diff --git a/Session_Formation.py b/Session_Formation.py index fe01926..ff4d68c 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -613,7 +613,6 @@ def Add_Update_SessionFormation(diction): return True, " La promotion de formation à bien été mise à jour" - print(" ### GRRR str(session_id) = ", str(session_id)) if (len(str(session_id)) <= 0): # La promotion n'existe pas, on fait une simple creation @@ -644,7 +643,7 @@ def Add_Update_SessionFormation(diction): mydata['automatic_traitement'].append(new_local_data) - print(" ### mydata ICIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII = ", mydata) + coll_name = MYSY_GV.dbname['session_formation'] ret_val = coll_name.insert_one(mydata) diff --git a/main.py b/main.py index 552f6bc..2581e5c 100644 --- a/main.py +++ b/main.py @@ -10453,6 +10453,20 @@ def Internal_Global_MySy_Cron_Traitement(): +"""" +Test cron qui fait les relance des questionnaire non repondu (position, eval, etc) +""" +@app.route('/myclass/api/Cron_Survey_Questionnaires_Relance/', methods=['POST','GET']) +@crossdomain(origin='*') +def Cron_Survey_Questionnaires_Relance(): + mycommon.myprint(" ### CRONNN Cron_Survey_Questionnaires_Relance : payload = ") + print(" ### CRONNN Cron_Survey_Questionnaires_Relance : payload = ") + status, retval = Job_Cron.Cron_Survey_Questionnaires_Relance() + print(" FIN traitement Cron_Survey_Questionnaires_Relance localStatus = ", status) + return jsonify(status=status, message=retval) + + + """ API pour ajouter un type d'evaluation """ diff --git a/partner_base_setup.py b/partner_base_setup.py index eaecf38..017fcdb 100644 --- a/partner_base_setup.py +++ b/partner_base_setup.py @@ -71,7 +71,7 @@ def Add_Update_Partner_Basic_Setup(diction): """ Verification des input acceptés """ - field_list = ['token', 'config_name', 'config_value', 'related_collection'] + field_list = ['token', 'config_name', 'config_value', 'related_collection', 'config_id'] incom_keys = diction.keys() for val in incom_keys: @@ -83,7 +83,7 @@ def Add_Update_Partner_Basic_Setup(diction): """ Verification des champs obligatoires """ - field_list_obligatoire = ['token', 'config_name', 'config_value', 'related_collection'] + field_list_obligatoire = ['token', 'config_name', 'config_value', 'related_collection', 'config_id'] for val in field_list_obligatoire: if val not in diction: @@ -119,23 +119,33 @@ def Add_Update_Partner_Basic_Setup(diction): my_data['locked'] = "0" my_data['date_update'] = str(datetime.now()) - # La clé de la mise à jour est : - # my_data['partner_owner_recid'] - # my_data['config_name'] + if( 'config_id' in diction.keys() and diction['config_id']): + config_id_count = MYSY_GV.dbname['base_partner_setup'].count_documents({'_id':ObjectId(str(diction['config_id'])), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0'}) - result = MYSY_GV.dbname['base_partner_setup'].find_one_and_update( - {'partner_owner_recid': str(my_partner['recid']), - 'config_name' : str(diction['config_name']), - 'related_collection':str(diction['related_collection'])}, - {"$set": my_data}, - return_document=ReturnDocument.AFTER, - upsert=True, + if (config_id_count != 1): + mycommon.myprint(str(inspect.stack()[0][3]) + "L'identifiant du point de configuration est invalide ") + return False, "L'identifiant du point de configuration est invalide " - ) + + result = MYSY_GV.dbname['base_partner_setup'].find_one_and_update( + {'partner_owner_recid': str(my_partner['recid']), + 'config_name': str(diction['config_name']), + 'related_collection': str(diction['related_collection'])}, + {"$set": my_data}, + return_document=ReturnDocument.AFTER, + upsert=False, + ) + + else: + mycommon.myprint(str(inspect.stack()[0][3]) + "L'identifiant du point de configuration est invalide (2) ") + return False, "L'identifiant du point de configuration est invalide (2) " - return True, " La configuration a été correctement ajoutée / Mise à jour" + return True, " La configuration a été correctement mise à jour" except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() @@ -232,7 +242,7 @@ def Get_List_Partner_Basic_Setup(diction): """ Verification des input acceptés """ - field_list = ['token', 'related_collection'] + field_list = ['token', 'tab_related_collection'] incom_keys = diction.keys() for val in incom_keys: @@ -244,7 +254,7 @@ def Get_List_Partner_Basic_Setup(diction): """ Verification des champs obligatoires """ - field_list_obligatoire = ['token', 'related_collection'] + field_list_obligatoire = ['token', 'tab_related_collection'] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -267,11 +277,21 @@ def Get_List_Partner_Basic_Setup(diction): RetObject = [] val_tmp = 1 + tab_related_collection_work = str(diction['tab_related_collection']).split(",") + tab_related_collection = [] + for tmp in tab_related_collection_work : + if( tmp ): + tab_related_collection.append(str(tmp).strip()) + + filt_related_collection = {} + filt_related_collection['related_collection'] = {'$in':tab_related_collection} + + qry = {'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0','related_collection':''} + if(len(tab_related_collection) > 0 ): + qry = {'$and': [{'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0',}, filt_related_collection]} - - for New_retVal in MYSY_GV.dbname['base_partner_setup'].find({'partner_owner_recid':str(my_partner['recid']), 'valide':'1', 'locked':'0', - 'related_collection':str(diction['related_collection'])}): + for New_retVal in MYSY_GV.dbname['base_partner_setup'].find(qry ): if( str(New_retVal['config_name']) == "smtp_user_pwd"): New_retVal['config_value'] = New_retVal['config_value'][:2]+"...."+str(New_retVal['config_value'])[-2:] diff --git a/survey_mgt.py b/survey_mgt.py index 3ec7fb9..27b38d7 100644 --- a/survey_mgt.py +++ b/survey_mgt.py @@ -1209,10 +1209,12 @@ def Create_One_Survey_To_Inscrit(diction): new_survey_data['statut'] = "0" new_survey_data['type'] = "1" - new_survey_data['date_update'] = str(datetime.now()) + new_survey_data['creation_date'] = str(datetime.now()) new_survey_data['update_by'] = str(my_partner['_id']) new_survey_data['creation_by'] = str(my_partner['_id']) + new_survey_data['date_dernier_relance_auto'] = str(datetime.now().strftime("%d/%m/%Y")) + inserted_id = MYSY_GV.dbname['survey'].insert_one(new_survey_data).inserted_id @@ -1347,14 +1349,13 @@ def Create_One_Survey_To_Except_Inscrit(diction): new_survey_data['statut'] = "0" new_survey_data['type'] = "1" - new_survey_data['date_update'] = str(datetime.now()) + new_survey_data['creation_date'] = str(datetime.now()) new_survey_data['update_by'] = str(my_partner['_id']) new_survey_data['creation_by'] = str(my_partner['_id']) + new_survey_data['date_dernier_relance_auto'] = str(datetime.now().strftime("%d/%m/%Y")) - print(" ### new_survey_data = ", new_survey_data) inserted_id = MYSY_GV.dbname['survey'].insert_one(new_survey_data).inserted_id - print(" ### new_survey_data inserted_id = ", inserted_id) if (not inserted_id): mycommon.myprint(" Impossible de créer l'enquete (2) ") @@ -1930,6 +1931,8 @@ def Automatic_Send_Survey_TabIds(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " Le type d'enquete est invalide ") return False, " Le type d'enquete est invalide " + + """ Recuperation du modele de courrier (unique) associé à l'envoie des questions de positionnement le principe est de prendre le module du partenaire. si pas de modele du partenaire on @@ -1971,8 +1974,8 @@ def Automatic_Send_Survey_TabIds(diction): else: mycommon.myprint(str( inspect.stack()[0][ - 3]) + " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires de positionnement ") - return False, " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires de positionnement " + 3]) + " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires ") + return False, " Aucun modèle de document configuré pour envoyer les demandes pour les questionnaires " if ("contenu_doc" not in courrier_template_data.keys() or str( courrier_template_data['contenu_doc']).strip() == ""): @@ -1980,6 +1983,11 @@ def Automatic_Send_Survey_TabIds(diction): str(inspect.stack()[0][3]) + " Le modèle de document ne contient pas de valeur 'contenu_doc' ") return False, " Le modèle de document ne contient pas de valeur 'contenu_doc' " + """print(" ### courrier_ref_interne = ", courrier_ref_interne) + print(" ### local_survey_retval['survey_type'] = ", local_survey_retval['survey_type']) + print(" ### courrier_template_data[id]= ", str(courrier_template_data['_id']))""" + + contenu_doc_Template = jinja2.Template(str(courrier_template_data['contenu_doc'])) # Creation du dictionnaire d'information à utiliser pour la creation du doc convention_dictionnary_data = {} @@ -1992,7 +2000,6 @@ def Automatic_Send_Survey_TabIds(diction): new_diction['list_stagiaire_id'].append(ObjectId(str( local_survey_retval['inscription_id']))) - new_diction['list_session_id'] = [] if ("session_id" in local_survey_retval.keys() and local_survey_retval['session_id']): new_diction['list_session_id'].append(ObjectId(str(local_survey_retval['session_id'])))