diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 351a473..10b2901 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,14 +1,13 @@ - + + - - + - @@ -463,7 +462,6 @@ - @@ -488,6 +486,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 3ab5a5c..21b3b19 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -12180,6 +12180,27 @@ def Get_List_Inscrit_OF_UE_And_Type_Evaluation_with_filter(diction): if ("apprenant_data" in local_inscrit_data_retval.keys()): user['apprenant_data'] = local_inscrit_data_retval['apprenant_data'] + if ("class_eu_id" in retval.keys()): + class_eu_data = MYSY_GV.dbname['unite_enseignement'].find_one({'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + 'locked': '0', + '_id': ObjectId(str(retval['class_eu_id']))}) + + if( class_eu_data and 'id' in class_eu_data.keys() ): + user['class_eu_data'] = class_eu_data + else: + user['class_eu_data'] = {} + + if ("type_evaluation_id" in retval.keys()): + type_evaluation_data = MYSY_GV.dbname['type_evaluation'].find_one({'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + 'locked': '0', + '_id': ObjectId(str(retval['type_evaluation_id']))}) + + if( type_evaluation_data and 'id' in type_evaluation_data.keys() ): + user['type_evaluation_data'] = type_evaluation_data + else: + user['type_evaluation_data'] = {} return True, RetObject diff --git a/Job_Cron.py b/Job_Cron.py index bc5f66e..c4dd46d 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -519,12 +519,34 @@ def Cron_Monthly_Invoice_Inscription(): #print(" #### val = ", val) + if( str(client_data['_id']) not in list_client ): list_client.append(str(client_data['_id'])) if (str(val['code_session']) not in list_session): list_session.append(str(val['code_session'])) + """ + 30/05/2024 - update : + /!\ : Ici on parle du prix TOTAL de la session + Pour recalculer le prix mensuelle, il faut prendre + on fait un ratio : + - calculer le nombre de mois + - diviser le prix par le nombre de mois + """ + local_diction = {} + local_diction['date_from'] = str(val['date_debut']) + local_diction['date_to'] = str(val['date_fin']) + local_diction['total_price'] = str(val['prix_session']) + + local_price_status, local_price_retval = mycommon.Compute_Monthly_Price_From_Dates(local_diction) + if (local_price_status is False): + return local_price_status, local_price_retval + + new_price_data = local_price_retval + + print(" ### le prix mensuel est de new_price_data = ", new_price_data) + for inscrit_data in val['inscription_collection'] : @@ -591,7 +613,7 @@ def Cron_Monthly_Invoice_Inscription(): local_node['session_date_fin'] = val['date_fin'] if ("prix_session" in val.keys()): - local_node['prix_session'] = val['prix_session'] + local_node['prix_session'] = new_price_data['monthly_price'] if ("price_by" in val.keys()): local_node['price_by'] = val['price_by'] @@ -640,6 +662,7 @@ def Cron_Monthly_Invoice_Inscription(): data_for_invoicing['list_session'] = list_session + #print(" ### le tableau a facturer est : ") #print(data_for_invoicing) @@ -719,6 +742,8 @@ def Invoice_Data_From_Tab(diction): prix_insc = str(local_data['prix_session']) price_by = str(local_data['price_by']) + + if( price_by not in MYSY_GV.TRAINING_PRICE): mycommon.myprint( str(inspect.stack()[0][3]) + " La valeur '" + price_by + "' n'est pas valide ") @@ -742,8 +767,23 @@ def Invoice_Data_From_Tab(diction): if( price_by_session == "perstagiaire"): montant_total_ht_session = montant_total_ht_session + (prix_session * nb_participant ) + """ + /!\ A faire plus tard : 30/05/5024 + aller chercher le nombre de jour de formation sur le mois. + + exemple le cas des formations qui finissent en milieu d'un mois + """ + + elif( price_by_session == "persession"): montant_total_ht_session = montant_total_ht_session + prix_session + """ + /!\ A faire plus tard : 30/05/5024 + aller chercher le nombre de jour de formation sur le mois. + + exemple le cas des formations qui finissent en milieu d'un mois + """ + montant_total_ht = montant_total_ht + montant_total_ht_session diff --git a/Log/log_file.log b/Log/log_file.log index e3bc67c..3a8487f 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2437062,3 +2437062,757 @@ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 11:53:33.986595 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 11:53:33.987602 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 11:53:33.987602 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 11:53:33.987602 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 11:53:33.987602 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 11:53:45.079441 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 11:53:45.080785 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 11:53:45.080785 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 11:53:45.080785 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 11:53:45.080785 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-30 11:53:45.313091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.320082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.548610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.556245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.564937 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.577954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.593085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.603870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:45.612038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:53:55.611498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:53:55.615057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:55] "POST /myclass/api/Get_Inscrit_List_EU_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:53:55] "POST /myclass/api/Get_Inscrit_List_EU/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.221238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.226836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.231718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.239687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.247139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.252634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.265762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.273372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.281365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.295038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.304700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:00.309742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.314755 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:00.321797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:00] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 11:54:02.812819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:02.816836 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 11:54:02.821063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:02] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:02] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 11:54:02] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:00:18.618941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:00:18.622388 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:00:18.627034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:00:18] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:00:18] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:00:18] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.478114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.483109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.494218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.502243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.505071 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.509090 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.517371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.528782 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.830802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.834792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.839708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.847213 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.853751 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.863814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.891219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.898275 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.909084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.914230 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.918272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:48.925228 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.939959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:48.958098 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:48] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:53.601172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:53.605171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:53.609165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:53] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:53] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:53] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:06:59.210095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:59.215187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:59.226300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:06:59.233391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:59] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:59] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:59] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:06:59] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:08:56.021766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:08:56.026322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:08:56.031867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:08:56.041052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:08:56] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:08:56] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:08:56] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:08:56] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:11:46.042861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:46.048862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:46.051864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:46] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:46] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:46] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:11:48.077627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:48] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:11:52.640384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:52.644915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:52.651190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:52.656349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:52] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:52] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:52] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:52] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:11:57.145933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:57.150727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:11:57.154726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:57] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:57] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:57] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:11:59.472303 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:11:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:12:07.888969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:07.893089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:07.899231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:07.904540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:07] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:07] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:07] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:07] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:12:47.938603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:47.944303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:47.950292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:12:47.957408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:47] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:47] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:47] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:12:54.317486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:12:54] "POST /myclass/api/Get_Accepted_Insription_From_Session_id_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:13:21.828765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:13:21.833105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:13:21] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:13:21] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:54:06.351396 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 12:54:06.365162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:54:06] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:54:06] "POST /myclass/api/Get_List_Formulaire/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:54:09.637647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:54:09] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:56:14.596064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:56:14] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2024-05-30 12:57:36.149721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 12:57:36] "POST /myclass/api/Get_Given_Formulaire/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:05:45.764720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:05:45.765720 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:05:45.766715 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:05:45.766715 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:05:45.766715 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:06:05.835739 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:06:05.835739 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:06:05.835739 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:06:05.836737 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:06:05.836737 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:10:40.881176 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:10:40.881176 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:10:40.881176 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:10:40.881176 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:10:40.881176 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:21:24.482916 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:21:24.482916 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:21:24.482916 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:21:24.482916 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:21:24.482916 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:23:15.296702 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:23:15.296702 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:23:15.296702 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:23:15.298031 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:23:15.298031 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:29:16.900640 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:29:16.901658 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:29:16.901658 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:29:16.901658 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:29:16.901658 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:29:27.521494 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:29:27.521494 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:29:27.522494 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:29:27.522494 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:29:27.522494 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:31:27.750098 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:31:27.750098 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:31:27.750098 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:31:27.750098 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:31:27.750098 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:31:46.498547 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:31:46.498547 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:31:46.498547 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:31:46.498547 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:31:46.498547 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:32:27.244544 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:32:27.245635 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:32:27.245635 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:32:27.245635 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:32:27.245635 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:32:45.733218 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:32:45.734221 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:32:45.734221 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:32:45.734221 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:32:45.734221 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:33:06.981509 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:33:06.981509 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:33:06.981509 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:33:06.981509 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:33:06.981509 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:33:55.935508 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:33:55.935508 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:33:55.936507 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:33:55.936507 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:33:55.936507 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:34:19.331052 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:34:19.331052 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:34:19.331052 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:34:19.331052 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:34:19.331052 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:35:30.770077 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:35:30.770077 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:35:30.770077 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:35:30.770077 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:35:30.770077 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:37:51.194580 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:37:51.195584 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:37:51.195584 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:37:51.195584 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:37:51.195584 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:38:51.412880 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:38:51.412880 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:38:51.413879 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:38:51.413879 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:38:51.413879 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-30 16:44:39.126776 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-30 16:44:39.126776 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-30 16:44:39.126776 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-30 16:44:39.126776 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-30 16:44:39.126776 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-30 16:45:02.276181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:02.277191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:02.279555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:02.494196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:02.498207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:02.499739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.118888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.119906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.158656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.159655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.386577 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.391072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.394258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.399744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.406262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.414348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.419341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.425094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.429251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.435551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.439984 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.445385 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.447653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.452003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.458760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.463170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.468190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.470388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.480067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.483155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.486501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.489600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.495425 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.500306 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.502314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.507863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.515735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.519737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.524393 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.529065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.532080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.536477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.542027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.546186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.549202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.551199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.556199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.562204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.568645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.572089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.578694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.586749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.592155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.596686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.601441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.608067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.612350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.619025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.622272 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.627586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.632021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.639033 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.643066 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.647679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.654476 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:03.657847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.662849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.667841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.672395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:03.675657 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:07.778837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:07.939137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:07.942131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:07.945901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:07.950933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:07.959004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:07.964042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:07.972806 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-05-30 16:45:07.974273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:07.980680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:07.992529 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:08.125756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.129756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.133752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.138752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.142825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:08.152518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:08.166598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.173091 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:08.179739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:08.199650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:08] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:10.499989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.503992 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.506987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.512216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.518264 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.527054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:10.535257 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:10.547807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:10.556165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:10.564060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.565078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.571687 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.574834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:10.580006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:10] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:12.771568 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:12.774944 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:12.778238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:12] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:12] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:12] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:45:14.493667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:14.496668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:14.500689 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:45:14.504686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:14] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:14] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:45:14] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:46:00.700078 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:46:00.703623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:46:00.706483 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:46:00.710497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:46:00.720148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:46:00.724397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:46:00.733556 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:46:00.741591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:46:00] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:07.654968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:07.658334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:07.661840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:07.666849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:07] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:07] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:07] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:19.977155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:19.980153 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:19.983162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:19.989151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:19.993150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:19.999158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:20.007634 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:20.009916 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:20.162003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:20.164998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:20.169008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:20.176053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:20.181280 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:20.189075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:47:20.197947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:47:20.212982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:47:20] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:48:04.497406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:48:04.501996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:48:04.505009 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:48:04.513140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:48:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:48:04] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:48:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:48:04] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.263912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.269391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.275391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.280974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.289174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.295687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.307006 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.318739 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.716755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.721757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.729749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.738757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.747956 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.757013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:52.769044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:52.778159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:52] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:49:55.909375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:49:55.913381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:55] "POST /myclass/api/Get_CRM_List_Opportunite_Etape/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:49:55] "POST /myclass/api/Get_List_CRM_Opportunite_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:50:28.853474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:50:28.953245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.956076 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.958095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.962090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.968623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.974800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.978815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:28] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:28] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:28] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:50:28.992087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:50:28.995805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:28] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:50:29.006476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:50:29] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.077064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.080486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.084839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.089300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.096535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.101760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.109958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.114000 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.120542 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.128528 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.133525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.136880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.143557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.148300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.160716 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.166765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.172096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.192901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.203016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.208929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:44.215080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:44.229484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:50.540957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:50.544515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:50.547942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:50.555402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:50.561391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-05-30 16:52:50.568392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-30 16:52:50.576010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [30/May/2024 16:52:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - diff --git a/main.py b/main.py index 3fb2293..e83d1c3 100644 --- a/main.py +++ b/main.py @@ -4591,6 +4591,26 @@ def Get_Inscrit_List_EU_Type_Evaluation(): +""" +API retourne la liste des inscrits à +une UE et un type d'evaluation donnée. + +sont données en option : +- Liste UE, +- Liste Type evaluation + +""" +@app.route('/myclass/api/Get_List_Inscrit_OF_UE_And_Type_Evaluation_with_filter/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Inscrit_OF_UE_And_Type_Evaluation_with_filter(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Inscrit_OF_UE_And_Type_Evaluation_with_filter payload = ",payload) + status, retval = inscription.Get_List_Inscrit_OF_UE_And_Type_Evaluation_with_filter(payload) + return jsonify(status=status, message=retval) + + + """ API qui recupere les informations d'une inscription en partant de '_id' de la ligne """ diff --git a/prj_common.py b/prj_common.py index 61aebf7..db57eb7 100644 --- a/prj_common.py +++ b/prj_common.py @@ -46,7 +46,7 @@ from datetime import timedelta import Collection_Historique as Collection_Historique import partner_client import partners - +import math class JSONEncoder(json.JSONEncoder): def default(self, o): @@ -5885,4 +5885,81 @@ def Get_Inscrit_And_Apprenant_Data(diction): except Exception as e: exc_type, exc_obj, exc_tb = sys.exc_info() myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) - return False, " Impossible de récupérer les données de l'inscrit " \ No newline at end of file + return False, " Impossible de récupérer les données de l'inscrit " + + +""" +Cette fonction prend 2 dates, un montant (prix total) +et retourne le prix mensuel +""" +def Compute_Monthly_Price_From_Dates(diction): + try: + diction = strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['date_from', 'date_to', 'total_price'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['date_from', 'date_to', 'total_price'] + for val in field_list_obligatoire: + if val not in diction: + myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + local_status = CheckisDate(diction['date_from']) + if (local_status is False): + myprint(str(inspect.stack()[0][ + 3]) + " La date de début "+str(diction['date_from'])+" n'est pas au format jj/mm/aaaa.") + return False, " La date de début "+str(diction['date_from'])+" n'est pas au format jj/mm/aaaa." + + + local_status = CheckisDate(diction['date_to']) + if (local_status is False): + myprint(str(inspect.stack()[0][ + 3]) + " La date de fin " + str(diction['date_to']) + " n'est pas au format jj/mm/aaaa.") + return False, " La date de fin " + str(diction['date_from']) + " n'est pas au format jj/mm/aaaa." + + local_isfloat_status, local_isfloat_retval = IsFloat(str(diction['total_price'])) + if (local_isfloat_status is False): + myprint( + str(inspect.stack()[0][3]) + " La valeur '" + str(diction['total_price']) + "' n'est pas valide ") + return False, " La valeur '" + str(diction['total_price']) + "' n'est pas valide " + + + local_date_from = datetime.strptime(str(diction['date_from']), '%d/%m/%Y') + local_date_to = datetime.strptime(str(diction['date_to']), '%d/%m/%Y') + + if( local_date_from >= local_date_to ): + myprint( + str(inspect.stack()[0][3]) + " La date de début '" + str(local_date_from) + "' est postérieure à la date de fin "+ str(diction['date_to'])+" " ) + return False, " La date de début '" + str(local_date_from) + "' est postérieure à la date de fin "+ str(diction['date_to'])+" " + + nb_months = math.ceil((local_date_to - local_date_from).days / 30) + + monthly_price = tryFloat(diction['total_price']) / nb_months + + + + RetObject = {} + RetObject['nb_month'] = str(nb_months) + RetObject['monthly_price'] = str(monthly_price) + + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de calculer le prix mensuel " \ No newline at end of file