diff --git a/.idea/workspace.xml b/.idea/workspace.xml index d6bdb69..b604cd7 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,32 +1,13 @@ - + + + - - - - - - - - - - - - - - - - - - - - - @@ -454,7 +435,6 @@ - @@ -479,6 +459,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index c605f34..cc8662f 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -6711,6 +6711,99 @@ def Get_List_Conventions_Stagiaire(diction): return False, " Impossible de récupérer la liste des conventions" +""" +Cette fonction recupere les differentes types de convention de stagiaire avec des option comme : +- ref_interne +- nom +- type_doc + +On accepte plusieurs versions du meme doc +""" + +def Get_List_Conventions_Stagiaire_With_Filter(diction): + try: + + field_list = ['token', 'ref_interne','nom', 'type_doc' ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - Le champ '" + val + "' n'est pas autorisé") + return False, "Le champ '" + val + "' n'est pas autorisé" + + + + field_list_obligatoire = ['token', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La valeur '" + val + "' n'est pas presente dans liste ") + return False, " La valeur '" + val + "' n'est pas presente dans liste" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + # Recuperation des option de filter + filt_type_doc = {} + if ("type_doc" in diction.keys()): + filt_type_doc = {'type_doc': str(diction['type_doc'])} + + filt_nom = {} + if ("nom" in diction.keys()): + filt_nom = {'nom': str(diction['nom'])} + + filt_ref_interne = {} + if ("ref_interne" in diction.keys()): + filt_ref_interne = {'ref_interne': str(diction['ref_interne'])} + + + RetObject = [] + val_tmp = 0 + + """ + # Recuperation des documents (collection : courrier_template) de ce partenaire avec 'ref_interne' = 'CONVENTION_STAGIAIRE' + 1 - On regarde le partenaire à des conventions qui sont personnalisées, si non + 2 - On va sortir les conventions par defaut de MySy. + + /!\ : On ne melange pas les 2. c'est l'un ou l'autre + """ + + + for retval in MYSY_GV.dbname['courrier_template'].find({'$and': [{'ref_interne': 'CONVENTION_STAGIAIRE', + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(my_partner['recid'])}, filt_type_doc, filt_nom, filt_ref_interne ]}): + user = retval + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + # Si aucune convention personnalisée, on va chercher les conventions mysy + if (val_tmp == 0): + for retval in MYSY_GV.dbname['courrier_template'].find({'$and': [{'ref_interne': 'CONVENTION_STAGIAIRE', + 'valide': '1', + 'locked': '0', + 'partner_owner_recid': 'default'}, filt_type_doc, filt_nom, filt_ref_interne ]}): + user = retval + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des conventions" + """ Recuperatin des convention SEULEMENT Individuelles diff --git a/Log/log_file.log b/Log/log_file.log index f6386fe..5273eab 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2051068,3 +2051068,1797 @@ INFO:root:2024-01-22 21:13:48.957726 : ++ FLASK PORT 5001 ++ INFO:root:2024-01-22 21:13:48.957726 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 10:05:33.568811 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 10:05:33.569799 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 10:05:33.569799 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 10:05:33.570799 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 10:05:33.570799 : ++ 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-01-24 10:05:45.179138 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 10:05:45.179138 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 10:05:45.179138 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 10:05:45.179138 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 10:05:45.179138 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 10:06:38.029634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.030633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.031631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:38.245840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.246852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.249604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:38.544778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.547771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.813881 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:38.815883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:38] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.487047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.489049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.493046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.497047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.502664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.507211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.514046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.517543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.526560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.547517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.552524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.553524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.554523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.564102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.567105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.702688 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.705198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.711259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.716711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.719714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.728725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.736727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.744699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.750800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.756906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.764366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.771018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.775505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.782041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.786455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.791170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.796462 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.799453 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.804727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.811993 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.814592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:39.867900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:39.870192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:39] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.006060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.007051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.010054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.016184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.190557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.193856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.331837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.332851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.335849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.341323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.502915 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.504925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.651184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.652227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.652227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.653809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.812798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.816806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.966793 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.968788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:06:40.973794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:06:40.976796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:06:40] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:04.837730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:04] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:05.078624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:05.081622 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:05.087760 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:05.093718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:05.137584 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:05.184276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:05.187286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:05] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:06.108307 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-01-24 10:08:06.109277 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:06] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:19.353045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:19.355639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:19.360016 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:08:19.364222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:08:19.374606 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:19] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:08:19] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 10:22:30.347786 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 10:22:30.347786 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 10:22:30.348832 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 10:22:30.348832 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 10:22:30.348832 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 10:24:12.620542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:12.621799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:12.622814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:12] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:12] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:12] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:12.872449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:12.875446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:13] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:13.767942 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:13] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.075560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.077563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.078559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.086572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.094568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.102563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.415127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.416127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.421584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.430009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.436186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.443707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.742088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.746624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.751616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.760059 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:14.764568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:14.770344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:14] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.071029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:15.073444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.078989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.084990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.089772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:15.094361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.397531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:15.399531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:15.405944 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:24:15.415847 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:24:15.420446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:24:15] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 10:25:21.598975 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 10:25:21.598975 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 10:25:21.598975 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 10:25:21.598975 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 10:25:21.598975 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 10:31:57.083922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:31:57.086923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:31:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:31:57.092311 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:31:57] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:31:57.111533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:31:57] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:31:57.595291 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:31:57] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:01.184446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:33:01.189263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:01] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:01.194678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:01] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:01.201728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:33:01.207133 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:01] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:01] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:19.726987 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:33:19.730517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:19.735543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:19] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:33:19.739290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:33:19.745267 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:19] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:33:19] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:38:18.055462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:38:18.061365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:38:18] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:38:18.067129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:38:18] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:38:18.071910 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:38:18.082249 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:38:18] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:38:18] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:41:57.680124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:41:57.686142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:41:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:41:57.690420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:41:57.695823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:41:57] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:41:57.704596 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:41:57] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:41:57] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:43:55.441967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:43:55.449347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:43:55.455338 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:43:55] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:43:55] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:43:55.463776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:43:55.471398 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:43:55] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:43:55] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:45:02.650152 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:45:02.654702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 10:45:02.657446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:45:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:45:02.663899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:45:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 10:45:02.672785 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:45:02] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 10:45:02] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:01:58.132527 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:01:58.132527 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:01:58.133528 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:01:58.133528 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:01:58.133528 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:02:48.828542 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:02:48.829054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:02:48.829054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:02:48.829054 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:02:48.829054 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:06:10.270164 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:06:10.270164 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:06:10.270164 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:06:10.270164 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:06:10.270164 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:29:06.508662 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:29:06.508662 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:29:06.508662 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:29:06.508662 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:29:06.508662 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:39:02.025703 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:39:02.025703 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:39:02.025703 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:39:02.025703 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:39:02.025703 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:41:23.481149 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:41:23.481149 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:41:23.481149 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:41:23.482149 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:41:23.482149 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:43:44.031724 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:43:44.031724 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:43:44.031724 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:43:44.032725 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:43:44.032725 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:44:38.939784 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:44:38.939784 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:44:38.939784 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:44:38.939784 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:44:38.939784 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:45:08.993324 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:45:08.993324 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:45:08.993324 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:45:08.993324 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:45:08.993324 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:45:39.246888 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:45:39.246888 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:45:39.246888 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:45:39.246888 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:45:39.246888 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:45:50.277544 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:45:50.277544 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:45:50.277544 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:45:50.277544 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:45:50.277544 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:50:45.699907 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:50:45.699907 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:50:45.699907 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:50:45.699907 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:50:45.699907 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:51:49.892619 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:51:49.892619 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:51:49.892619 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:51:49.892619 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:51:49.892619 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 11:59:52.245648 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 11:59:52.245648 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 11:59:52.246649 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 11:59:52.246649 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 11:59:52.246649 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:02:24.616359 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:02:24.616359 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:02:24.616359 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:02:24.616359 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:02:24.616359 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:29:34.383841 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:29:34.383841 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:29:34.383841 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:29:34.383841 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:29:34.383841 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:30:24.168618 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:30:24.168618 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:30:24.168618 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:30:24.169906 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:30:24.169906 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:30:46.168010 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:30:46.168010 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:30:46.169012 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:30:46.169012 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:30:46.169012 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:32:17.909143 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:32:17.909143 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:32:17.909143 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:32:17.909143 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:32:17.909143 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:33:08.646573 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:33:08.647576 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:33:08.647576 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:33:08.647576 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:33:08.647576 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 12:33:51.068359 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 12:33:51.068359 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 12:33:51.068359 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 12:33:51.068359 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 12:33:51.068359 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 15:02:57.464135 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:02:57.465170 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:02:57.465170 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:02:57.465170 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:02:57.465170 : ++ 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-01-24 15:03:07.241467 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:03:07.241467 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:03:07.241467 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:03:07.242506 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:03:07.242506 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:04:58.346428 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:04:58.346428 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:04:58.347422 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:04:58.347422 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:04:58.347422 : ++ 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\\__init__.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:12:13.085542 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:12:13.085542 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:12:13.085542 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:12:13.085542 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:12:13.085542 : ++ 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\\__init__.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:13:06.701091 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:13:06.701091 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:13:06.701091 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:13:06.701091 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:13:06.701091 : ++ 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\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:17:08.909492 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:17:08.909492 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:17:08.909492 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:17:08.909492 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:17:08.909492 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 15:35:50.620373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:35:50] "GET /myclass/api/Get_Editable_Document_By_Partner HTTP/1.1" 308 - +INFO:root:2024-01-24 15:35:50.628865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:35:50] "GET /myclass/api/Get_Editable_Document_By_Partner/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:37:04.736259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:37:04] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 15:37:04.742549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:37:04] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:47:29.952581 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:47:29.952581 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:47:29.952581 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:47:29.952581 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:47:29.952581 : ++ 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-01-24 15:47:38.417923 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:47:38.417923 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:47:38.417923 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:47:38.417923 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:47:38.417923 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 15:47:39.630038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:47:39] "GET /myclass/api/Get_Editable_Document_By_Partner HTTP/1.1" 308 - +INFO:root:2024-01-24 15:47:39.636780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:47:39] "GET /myclass/api/Get_Editable_Document_By_Partner/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 15:48:14.881771 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 15:48:14.881771 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 15:48:14.881771 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 15:48:14.881771 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 15:48:14.882778 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 15:48:14.986711 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:48:14] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 15:48:14.992735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:48:15] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:45.928607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:45.931617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:45.933618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:45] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:46] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:46] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:46.516506 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:46.522153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:46] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.337371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.340487 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.345815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.350471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.355171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.360508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.367507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.371505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.379512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.385271 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.388774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.393958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.397190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.405447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.408444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.416707 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.421258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.429421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.434646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.439621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.443633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.448964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.457128 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.459488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.463260 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.468413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.476340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.479812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:57:47.489862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:57:47.490866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:57:47] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:26.871278 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:26.875694 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:26.886890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:26.898473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:26.903587 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:26] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:26.907585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:26.910235 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:26] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:28.326990 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:41.061180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:41.229319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:41.234127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:41.238138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:41.243272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:41.259181 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:41.318543 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-01-24 15:58:41.358291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:41.362294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:41.387148 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:41] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:53.493022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:53.512137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:53.518276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:53] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:53.521646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 15:58:53.525495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:53] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:58:53.537005 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:53] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:58:53] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:59:26.799873 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:59:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 15:59:53.380541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 15:59:53] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:03:27.068729 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:03:27.068729 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:03:27.068729 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:03:27.068729 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:03:27.068729 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:03:44.108316 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:03:44.108316 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:03:44.108316 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:03:44.108316 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:03:44.108316 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 16:05:48.163700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:05:48] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:05:48.170367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:05:48] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:06:02.301478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:06:02.310205 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:06:02.315057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:06:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:06:02.321859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:06:02.326989 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:06:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:06:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:06:02] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:06:03.236310 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:06:03] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:06:27.559707 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:06:27.559707 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:06:27.559707 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:06:27.559707 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:06:27.559707 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 16:07:30.507894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:07:30] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:11:07.805239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:11:07] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:11:26.435504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:11:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:11:41.841332 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:11:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:16:01.331500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:16:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:17:45.690479 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:17:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:19:00.121805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:19:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:19:00.146833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:19:00.197124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:19:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:19:00.204127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:19:00] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:19:00.211733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:19:00] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:19:01.022921 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:19:01] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:22:00.242954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:22:00] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:25:05.971170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:25:05] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:25:05.994900 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:25:06.000428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:25:06.002422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:25:06] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:25:06] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:25:06.011569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:25:06.018497 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:25:06] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:25:06] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:26:49.080291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:26:49] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:28:35.805708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:28:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:28:35.844384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:28:35.850057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:28:35.855379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:28:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:28:35] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:28:35.866045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:28:35.875257 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:28:35] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:28:35] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:29:50.874030 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:29:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:33:02.094864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:33:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:33:56.061739 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:33:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:53:57.225173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:53:57] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:53:57.251680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:53:57.261613 : Get_Editable_Document_By_Partner_By_Collection Le champ 'related_collection_id' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:53:57] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:54:18.659544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:54:18] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:54:18.665949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:54:18.669126 : Get_Editable_Document_By_Partner_By_Collection Le champ 'related_collection_id' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:54:18] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 16:54:56.705011 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:54:56] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:54:56.710966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:54:56.716277 : Get_Editable_Document_By_Partner_By_Collection Le champ 'related_collection_id' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:54:56] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:55:45.287563 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:55:45.287563 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:55:45.287563 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:55:45.287563 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:55:45.287563 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 16:56:04.063504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:56:04] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:56:04.071715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 16:56:04.642865 : Get_Editable_History_Document_By_Partner_By_Collection L'Id de la collection est invalide +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:56:04] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:56:47.836791 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:56:47.837828 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:56:47.837828 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:56:47.837828 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:56:47.837828 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 16:56:47.880599 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:56:47] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:56:47.893544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:56:47] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 16:57:11.245903 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 16:57:11.245903 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 16:57:11.245903 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 16:57:11.245903 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 16:57:11.245903 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 16:57:24.928945 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:57:24] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 16:57:24.934059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 16:57:24] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:00:09.879265 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:00:09.879265 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:00:09.879265 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:00:09.879265 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:00:09.879265 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 17:00:09.923186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:00:09] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:00:09.930652 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:00:09] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:10:11.257299 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:10:11.264001 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:10:11.265030 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:10:11.265030 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:10:11.265030 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:10:33.765740 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:10:33.766762 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:10:33.766762 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:10:33.766762 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:10:33.766762 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 17:10:33.809476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:10:33] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:10:33.815411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:10:33] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:12:13.781367 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:12:13.781367 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:12:13.781367 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:12:13.781367 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:12:13.781367 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:13:23.495337 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:13:23.495337 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:13:23.495337 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:13:23.495337 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:13:23.495337 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:14:07.734296 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:14:07.734296 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:14:07.734296 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:14:07.734296 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:14:07.734296 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:16:19.808733 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:16:19.808733 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:16:19.808733 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:16:19.809736 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:16:19.809736 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:16:37.006775 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:16:37.007796 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:16:37.007796 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:16:37.007796 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:16:37.007796 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:17:00.497003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:17:00.497003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:17:00.497003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:17:00.497003 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:17:00.497003 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:17:34.298226 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:17:34.298226 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:17:34.298226 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:17:34.298226 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:17:34.299232 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:17:47.159290 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:17:47.160303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:17:47.160303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:17:47.160303 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:17:47.160303 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:18:05.835368 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:18:05.835368 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:18:05.835368 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:18:05.836359 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:18:05.836359 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:18:20.456863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:18:20.456863 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:18:20.456863 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:18:20.456863 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:18:20.456863 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:19:31.929464 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:19:31.929464 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:19:31.929464 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:19:31.929464 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:19:31.930470 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:19:51.420939 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:19:51.420939 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:19:51.420939 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:19:51.420939 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:19:51.420939 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:20:17.782048 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:20:17.782048 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:20:17.782048 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:20:17.782048 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:20:17.782048 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:20:55.750847 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:20:55.750847 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:20:55.750847 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:20:55.750847 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:20:55.750847 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:21:12.812206 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:21:12.812206 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:21:12.812206 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:21:12.812206 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:21:12.812206 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:21:38.731814 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:21:38.731814 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:21:38.731814 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:21:38.731814 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:21:38.731814 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:22:10.495976 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:22:10.495976 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:22:10.495976 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:22:10.497138 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:22:10.497138 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:22:38.999336 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:22:38.999336 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:22:38.999336 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:22:38.999336 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:22:38.999336 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:23:03.062657 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:23:03.062657 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:23:03.062657 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:23:03.063688 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:23:03.063688 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 17:23:38.621970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:23:38] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:23:38.632185 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:23:38] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:28:52.249078 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:28:52.249078 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:28:52.249078 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:28:52.249078 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:28:52.249078 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:30:06.934392 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:30:06.934392 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:30:06.934392 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:30:06.934392 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:30:06.934392 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:33:29.874385 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:33:29.874385 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:33:29.874385 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:33:29.874385 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:33:29.874385 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:54:11.168769 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:54:11.168769 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:54:11.168769 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:54:11.168769 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:54:11.168769 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 17:55:42.718707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 17:55:43.403824 : Get_Editable_Document_By_Partner_By_Collection -unhashable type: 'dict' - Line : 308 +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:55:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 17:56:30.814078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:56:30] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:56:30.820080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 17:56:30.826255 : Get_Editable_History_Document_By_Partner_By_Collection Le champ 'related_collection_recid' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:56:30] "GET /myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 17:57:56.329270 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:57:56] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:57:56.335402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 17:57:56.357816 : Get_Editable_Document_By_Partner_By_Collection -unhashable type: 'dict' - Line : 308 +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:57:56] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 17:58:57.161310 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 17:58:57.161310 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 17:58:57.161310 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 17:58:57.161310 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 17:58:57.161310 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 17:58:57.213052 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:58:57] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 17:58:57.219776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:58:57] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 17:59:47.340503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 17:59:47] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:00:29.532574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:00:43.163636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:00:43.183952 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:00:43.190111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:00:43.194143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:43] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:43] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:00:43.201247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:43] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:00:43.916738 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:00:43] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 18:07:54.442604 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 18:07:54.442604 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 18:07:54.443598 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 18:07:54.443598 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 18:07:54.443598 : ++ 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-01-24 18:08:05.872276 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 18:08:05.872276 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 18:08:05.872276 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 18:08:05.872276 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 18:08:05.873283 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 18:08:05.955020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:05] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection HTTP/1.1" 308 - +INFO:root:2024-01-24 18:08:05.964523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:05] "GET /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:08:40.261191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:08:40.286620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:08:40.291634 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:08:40.294673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:08:40.301431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:40] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:08:40.934066 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:08:40] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:10:19.624713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:10:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:10:37.726560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:10:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:41.268447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:41.281428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:41.285761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:41.291054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:41] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:41.298310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:41.308061 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:41] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:41] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:56.572459 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:56.584782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:56.590684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:26:56.594802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:56.601096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:56] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:56] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:26:56.617148 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:56] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:26:56] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:32:16.220676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:32:16.224044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:32:16.235748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:32:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:32:16.240310 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:32:16.242553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:32:16] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:32:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:32:16] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:32:16.262506 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:32:16] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:34:37.626370 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:34:37.639465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:34:37.646072 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:34:37.649062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:34:37] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:34:37] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:34:37.655387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:34:37] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:34:37.668301 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:34:37] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:34:37] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:42:55.702410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:42:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:43:15.720305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:43:15] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 18:47:41.747749 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 18:47:41.747749 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 18:47:41.747749 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 18:47:41.747749 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 18:47:41.747749 : ++ 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\\module_editique.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 18:48:47.110816 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 18:48:47.110816 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 18:48:47.110816 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 18:48:47.110816 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 18:48:47.110816 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 18:49:46.295929 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:49:46] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:50:04.893050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:50:04.902572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:50:04.906510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:50:04.913573 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:50:04.918602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:04] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:04] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:50:05.939386 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:05] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:50:35.919305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:50:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:51:39.399074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:51:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:54:44.679421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:54:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:55:02.944148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:55:02.958284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 18:55:02.966277 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:55:02] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:55:02.971118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:55:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:55:02.976043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:55:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:55:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:55:02.983523 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:55:02] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:58:09.610626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:58:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:58:33.914147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:58:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:59:19.715399 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:59:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 18:59:57.820660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 18:59:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:01:35.250641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:01:35.270481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:01:35.279130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:01:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:01:35.290663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:01:35.293663 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:01:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:01:35] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:01:35.336665 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:01:35] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:01:35] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:02.683060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:02] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:14.770159 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:14] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:14.836058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:04:14.842063 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:14] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:14.852066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:14] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:14.858071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:14] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:04:14.863071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:04:14] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:05:19.169048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:05:19] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:50:55.438455 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:50:55] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:50:55.473065 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:50:55.478063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:50:55] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:50:55.483024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:50:55] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:50:55.489730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:50:55.498402 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:50:55] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:50:55] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:52:29.468124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:29] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:52:51.230250 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:51] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:52:51.261632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:52:51.268258 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:51] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:52:51.273256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:51] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:52:51.278256 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:52:51.286305 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:51] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:52:51] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 19:55:19.539034 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 19:55:19.539034 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 19:55:19.540049 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 19:55:19.540049 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 19:55:19.540049 : ++ 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\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-24 19:55:45.330067 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-24 19:55:45.330067 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-24 19:55:45.330067 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-24 19:55:45.330067 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-24 19:55:45.330067 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-24 19:58:35.165292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:35] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:43.125706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:43.153729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-24 19:58:43.159326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:43] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:43.164041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:43] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:43.171283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:43] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:44.207027 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:44] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-24 19:58:50.207308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [24/Jan/2024 19:58:50] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:20:34.221720 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 11:20:34.222940 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 11:20:34.222940 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 11:20:34.224087 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 11:20:34.224087 : ++ 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-01-25 11:20:52.673806 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 11:20:52.674825 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 11:20:52.674825 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 11:20:52.675830 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 11:20:52.675830 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-25 11:20:52.817691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:52.820611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:52.823254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:52.825958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:52.831093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:52.835504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:52] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:52] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:20:53.165486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:53.173825 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:53.182324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:53.194273 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:20:53.212717 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:20:53.354255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:20:53.360377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:53] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:20:54.745252 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:root:2024-01-25 11:20:54.746251 : Get_Partner_Currency WARNING : Le partner (partner_owner_recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a ) n'a pas de configuration de devise. Utilisation de la devise par defaut du systeme +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:20:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:21:09.077268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:21:09.097355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:21:09.106378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:21:09.117013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:21:09.123779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:09] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:21:09.145249 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:09] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:21:27.156134 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:27] "POST /myclass/api/Action_Server_/ HTTP/1.1" 404 - +INFO:root:2024-01-25 11:21:36.856666 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:36] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:21:40.062417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:21:40] "POST /myclass/api/Action_Server_download_convention_entreprise_pdf/ HTTP/1.1" 404 - +INFO:root:2024-01-25 11:24:10.202164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:24:10] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:26:36.317604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:26:36.369139 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:26:36.374269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:26:36.382768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:36] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:26:36.394675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:26:36.401037 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:36] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:36] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:26:39.624008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:26:39] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:17.892863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:28.710060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:28] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:44.995968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:45.076883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:28:45.085967 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:45] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:45.094706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:45] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:45.102115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:28:45.106102 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:45] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:45] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:28:47.520327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:28:47] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:29:36.351648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:29:36] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:29:36.402862 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:29:36.407271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:29:36.412800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:29:36] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:29:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:29:36.422329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:29:36.432341 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:29:36] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:29:36] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:27.947489 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:40.072477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:40] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:40.115238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:31:40.120267 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:40.131259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:40.139424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:31:40.143371 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:40] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:40] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:31:42.737525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:31:42] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:32:03.326480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:32:03] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:35:11.348439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:35:11] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:36:39.260094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:36:39] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:36:47.180401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:36:47] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:36:56.901551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:36:56] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:39:57.623887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:39:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:39:59.587129 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:39:59] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:40:03.337269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:40:03] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:40:05.704389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:40:05] "POST /myclass/api/Action_Server_download_convention_entreprise_pdf/ HTTP/1.1" 404 - +INFO:root:2024-01-25 11:40:07.664474 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:40:07] "POST /myclass/api/Action_Server_send_emargement_action/ HTTP/1.1" 404 - +INFO:root:2024-01-25 11:40:10.850259 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:40:10] "POST /myclass/api/Action_Server_/ HTTP/1.1" 404 - +INFO:root:2024-01-25 11:41:45.474064 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:41:45] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:42:33.446754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:42:33] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:44:16.711589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:44:16.734921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:44:16.742367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:44:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:44:16.756315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:44:16] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:44:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:44:16.771520 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 11:44:16.785783 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:44:16] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:44:16] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:45:09.497473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:45:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:45:56.052092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:45:56] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:57:44.194613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:57:44] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 11:59:50.140327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 11:59:50] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:04.392524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:04.466894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:00:04.478141 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:04.486173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:00:04.492119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:04] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:04.502649 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:04] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:04] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:07.314811 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:07] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:10.410452 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:10] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:11.717934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:11] "POST /myclass/api/Action_Server_download_convention_entreprise_pdf/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:00:12.988130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:12] "POST /myclass/api/Action_Server_download_convention_entreprise_pdf/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:00:42.993597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:43] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:57.433979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:00:57.458089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:00:57.466089 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:57.478073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:57] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:57.481079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:57] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:00:57.503608 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:57] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:00:57] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:01:00.559182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:01:00] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:02:13.668451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:02:13] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:02:16.133414 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:02:16.145412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:02:16] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:02:16] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-25 12:05:50.341706 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:05:50.342706 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:05:50.342706 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:05:50.342706 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:05:50.342706 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-25 12:09:21.411094 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:09:21.411094 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:09:21.411094 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:09:21.412111 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:09:21.412111 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-25 12:15:09.310110 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:15:09.311113 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:15:09.311113 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:15:09.311113 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:15:09.311113 : ++ 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-01-25 12:15:29.532938 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:15:29.532938 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:15:29.533938 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:15:29.533938 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:15:29.533938 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-25 12:16:53.585453 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:16:53.585453 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:16:53.585453 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:16:53.586453 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:16:53.586453 : ++ 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-01-25 12:17:19.299816 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:17:19.300811 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:17:19.300811 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:17:19.300811 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:17:19.300811 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-25 12:20:46.327010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:20:46.339627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:20:46] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:20:46] "POST /myclass/api/Get_List_Conventions_Stagiaire/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:21:04.118431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:21:04.126656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:21:04.136529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:21:04.142067 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:21:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:21:04] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:21:04.156708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:21:04] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:21:04] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:21:05.454412 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:21:05] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:23:26.457645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:23:26] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:24:58.669745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:24:58] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:25:17.474971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:25:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:25:39.519948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:25:39] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:09.634628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:09] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:09.674464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:26:09.678458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:09.686479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:26:09.690485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:09] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:09.708934 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:09] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:09] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:13.742627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:13] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:13.749172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:13] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:26:20.453006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:20] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:20.460380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:20] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:26:43.469427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:43] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:26:43.492447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:26:43] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:28:16.894405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:28:16] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:28:26.022038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:28:26] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:28:26.038294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:28:26] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:31:41.018035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:41] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:31:54.618387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:31:54.648417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:31:54.655761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:54] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:31:54.666800 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:54] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:54] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:31:54.677137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:31:54.692142 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:54] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:54] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:31:59.149539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:59] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:31:59.160614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:31:59] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:33:20.404404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:33:20] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:33:42.895530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:33:42] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:33:44.307511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:33:44] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:33:44.323499 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:33:44] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 404 - +INFO:root:2024-01-25 12:34:52.025406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:34:52] "GET /myclass/api/Get_List_Conventions_Stagiaire_With_Filter HTTP/1.1" 404 - +INFO:root:2024-01-25 12:36:08.925698 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:36:08.926699 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:36:08.926699 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:36:08.926699 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:36:08.926699 : ++ 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-01-25 12:36:51.257182 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:36:51.258174 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:36:51.258174 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:36:51.259177 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:36:51.259177 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-25 12:36:51.382729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:36:51] "GET /myclass/api/Get_List_Conventions_Stagiaire_With_Filter HTTP/1.1" 308 - +INFO:root:2024-01-25 12:36:51.400168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:36:52.759403 : Get_List_Conventions_Stagiaire_With_Filter La valeur 'ref_interne' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:36:52] "GET /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-01-25 12:38:40.644105 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-01-25 12:38:40.645121 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-01-25 12:38:40.645121 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-01-25 12:38:40.645121 : ++ FLASK PORT 5001 ++ +INFO:root:2024-01-25 12:38:40.645121 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-01-25 12:39:14.100395 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:14] "GET /myclass/api/Get_List_Conventions_Stagiaire_With_Filter HTTP/1.1" 308 - +INFO:root:2024-01-25 12:39:14.112081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:14] "GET /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:39:27.109180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:39:27.129865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:39:27.134854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:39:27.143860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:27] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:27] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:39:27.152592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:27] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:39:28.810865 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:39:30.050298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:30] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:39:30.060651 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:39:30] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:40:34.621687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:40:34] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:01.462184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:01] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:17.736403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:17] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:28.616010 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:41:28.621356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:41:28.630614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:28.638197 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-01-25 12:41:28.641197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:28] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:28] "POST /myclass/api/Get_Editable_Document_By_Partner_By_Collection/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:28.662406 : get_Agenda_Event_List - La valeur 'related_collection' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:28] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:28] "POST /myclass/api/get_list_specific_field_partner_by_object/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:31.190082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:31] "POST /myclass/api/Action_Server_send_convention_entreprise_mail/ HTTP/1.1" 200 - +INFO:root:2024-01-25 12:41:31.196079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/Jan/2024 12:41:31] "POST /myclass/api/Get_List_Conventions_Stagiaire_With_Filter/ HTTP/1.1" 200 - diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..9cb77cd --- /dev/null +++ b/__init__.py @@ -0,0 +1,2 @@ +# Define a package-level variable +__version__ = '0.0.5' \ No newline at end of file diff --git a/main.py b/main.py index aa16e20..1570447 100644 --- a/main.py +++ b/main.py @@ -72,6 +72,8 @@ import Dashbord_queries.inscription_tdb_qries as inscription_tdb_qries import Collection_Historique as Collection_Historique import purchase_prices as purchase_prices import apprenant_mgt as apprenant_mgt +import module_editique as module_editique + app = Flask(__name__) cors = CORS(app, resources={r"/foo": {"origins": "*"}}) @@ -4340,6 +4342,25 @@ def Get_List_Conventions_Stagiaire(): return jsonify(status=status, message=retval) +""" +API qui permet de recuperer la liste des convention stagiaires avec des options +comme : +- ref_interne +- nom +- type_doc +""" +@app.route('/myclass/api/Get_List_Conventions_Stagiaire_With_Filter/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Conventions_Stagiaire_With_Filter(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Conventions_Stagiaire_With_Filter payload = ",payload) + status, retval = inscription.Get_List_Conventions_Stagiaire_With_Filter(payload) + return jsonify(status=status, message=retval) + + + + """ API pour recuperer seulement les conventions INDIVIDUELLES """ @@ -7206,6 +7227,69 @@ def Lock_partner_account(): return jsonify(status=status, message=retval) +""" +Cette API retourne * la liste de documents editable par une +- un partner +""" +@app.route('/myclass/api/Get_Editable_Document_By_Partner/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Editable_Document_By_Partner(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Editable_Document_By_Partner payload = ",payload) + print(request.files) + status, retval = module_editique.Get_Editable_Document_By_Partner(payload) + return jsonify(status=status, message=retval) + + +""" +Cette API retourne retourne la liste de documents editable par une +- un partner +- une collection (ex : session_formation). + +important : ici on recuperer juste la liste des document tracké, pas l'historique de traitement +""" +@app.route('/myclass/api/Get_Editable_Document_By_Partner_By_Collection/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Editable_Document_By_Partner_By_Collection(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Editable_Document_By_Partner_By_Collection payload = ",payload) + print(request.files) + status, retval = module_editique.Get_Editable_Document_By_Partner_By_Collection(payload) + return jsonify(status=status, message=retval) + + +""" +Cette API retourne l'HISTORIQUE des telechargements et envois de mail +des documents tracés, pour : +- un partner (Obligatoire) +- un related_collection_recid (Obligatoire) (ex : l'_id de la session) +""" +@app.route('/myclass/api/Get_Editable_History_Document_By_Partner_By_Collection/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Editable_History_Document_By_Partner_By_Collection(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Editable_Document_By_Partner_By_Collection payload = ",payload) + print(request.files) + status, retval = module_editique.Get_Editable_History_Document_By_Partner_By_Collection(payload) + return jsonify(status=status, message=retval) + + + +""" +API des test des actions server +""" +@app.route('/myclass/api/Action_Server_send_convention_entreprise_mail/', methods=['POST','GET']) +@crossdomain(origin='*') +def Action_Server_send_convention_entreprise_mail(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Action_Server_send_convention_entreprise_mail payload = ",payload) + + return jsonify(status=True, message=" OK Action_Server_send_convention_entreprise_mail") + if __name__ == '__main__': print(" debut api") diff --git a/module_editique.py b/module_editique.py new file mode 100644 index 0000000..6d88bbb --- /dev/null +++ b/module_editique.py @@ -0,0 +1,543 @@ +""" +Ce fichier traite de tous les sujets concenant l'editique +C'est a dire : +- Quel document à imprimer +- Quand il a été imprimé ou téléchargé, et +""" +import bson +import pymongo +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime +import prj_common as mycommon +import secrets +import inspect +import sys, os +import csv +import pandas as pd +from pymongo import ReturnDocument +import GlobalVariable as MYSY_GV +from math import isnan +import GlobalVariable as MYSY_GV +import ela_index_bdd_classes as eibdd +import email_mgt as email +import jinja2 +from flask import send_file +from xhtml2pdf import pisa +from email.message import EmailMessage +from email.mime.text import MIMEText +from email import encoders +import smtplib +from email.mime.multipart import MIMEMultipart +from email.mime.text import MIMEText +from email.mime.base import MIMEBase +from email import encoders + +""" +Cette fonction retourne la liste de documents editable par une +- un partner +""" +def Get_Editable_Document_By_Partner(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token',] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + RetObject = [] + val_tmp = 0 + + qry_match = {"partner_owner_recid":str(my_partner['recid']), 'valide':'1', 'locked':'0'} + + pipe_qry = ([ + {'$match': qry_match}, + {'$sort': {'_id': -1}}, + {'$lookup': { + 'from': 'courrier_template', + "let": {'courrier_template_id': "$courrier_template_id", 'partner_owner_recid': '$partner_owner_recid'}, + 'pipeline': [ + {'$match': + {'$expr': + {'$and': + [ + + {'$eq': ["$_id", {'$convert': { + 'input': "$$courrier_template_id", + 'to': "objectId", + 'onError': {'error': 'true'}, + 'onNull': {'isnull': 'true'} + }}]}, + + {'$eq': ["$valide", "1"]}, + {'$eq': ["$partner_owner_recid", '$$partner_owner_recid']} + + ] + } + } + }, + + {'$project': {'contenu_doc': 0, 'corps_mail': 0}}, + ], + 'as': 'collection_courrier_template' + } + }, + { + '$unwind': '$collection_courrier_template' + } + ]) + + print(" #### Get_Editable_Document_By_Partner pipe_qry_Get_Editable_Document_By_Partner = ", pipe_qry) + + for New_retVal in MYSY_GV.dbname['courrier_template_tracking'].aggregate(pipe_qry): + if( "collection_courrier_template" in New_retVal.keys() ): + user = New_retVal + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des documents éditables " + + +""" +Cette fonction retourne la liste de documents editable par une +- un partner +- une collection (ex : session_formation). + +important : ici on recuperer juste la liste des document tracké, pas l'historique de traitement +""" + +def Get_Editable_Document_By_Partner_By_Collection(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'related_collection', 'related_collection_recid'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'related_collection'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + related_collection = "" + if ("related_collection" in diction.keys()): + if diction['related_collection']: + related_collection = diction['related_collection'] + + if( str(related_collection).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le nom de la collection est invalide ") + return False, " Le nom de la collection est invalide " + + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + RetObject = [] + val_tmp = 0 + + qry_match = {"partner_owner_recid": str(my_partner['recid']), 'valide': '1', 'locked': '0', 'related_collection':str(related_collection)} + + pipe_qry = ([ + {'$match': qry_match}, + {'$sort': {'rang': 1}}, + {'$lookup': { + 'from': 'courrier_template', + "let": {'courrier_template_id': "$courrier_template_id", 'partner_owner_recid': '$partner_owner_recid'}, + 'pipeline': [ + {'$match': + {'$expr': + {'$and': + [ + + {'$eq': ["$_id", {'$convert': { + 'input': "$$courrier_template_id", + 'to': "objectId", + 'onError': {'error': 'true'}, + 'onNull': {'isnull': 'true'} + }}]}, + + {'$eq': ["$valide", "1"]}, + {'$eq': ["$partner_owner_recid", '$$partner_owner_recid']} + + ] + } + } + }, + + {'$project': {'contenu_doc': 0, 'corps_mail': 0}}, + ], + 'as': 'collection_courrier_template' + } + }, + { + '$unwind': '$collection_courrier_template' + } + ]) + + print(" #### Get_Editable_Document_By_Partner_By_Collection pipe_qry_Get_Editable_Document_By_Partner = ", pipe_qry) + + for New_retVal in MYSY_GV.dbname['courrier_template_tracking'].aggregate(pipe_qry): + if ("collection_courrier_template" in New_retVal.keys()): + user = {} + user['_id'] = str(New_retVal['_id']) + user['id'] = str(val_tmp) + + user['courrier_template_id'] = "" + if('courrier_template_id' in New_retVal.keys()): + user['courrier_template_id'] = str(New_retVal['courrier_template_id']) + + user['rang'] = "99999" + if ('rang' in New_retVal.keys()): + user['rang'] = str(New_retVal['rang']) + + user['server_action_name'] = "" + if ('server_action_name' in New_retVal.keys()): + user['server_action_name'] = str(New_retVal['server_action_name']) + + user['partner_owner_recid'] = "" + if ('partner_owner_recid' in New_retVal.keys()): + user['partner_owner_recid'] = str(New_retVal['partner_owner_recid']) + + user['related_collection'] = "" + if ('related_collection' in New_retVal.keys()): + user['related_collection'] = str(New_retVal['related_collection']) + + user['courrier_template_ref_interne'] = "" + if ('courrier_template_ref_interne' in New_retVal.keys()): + user['courrier_template_ref_interne'] = str(New_retVal['courrier_template_ref_interne']) + + user['courrier_template_ref_interne'] = "" + if ('ref_interne' in New_retVal['collection_courrier_template'].keys()): + user['courrier_template_ref_interne'] = str(New_retVal['collection_courrier_template']['ref_interne']) + + user['courrier_template_nom'] = "" + if ('nom' in New_retVal['collection_courrier_template'].keys()): + user['courrier_template_nom'] = str( + New_retVal['collection_courrier_template']['nom']) + + user['courrier_template_sujet'] = "" + if ('sujet' in New_retVal['collection_courrier_template'].keys()): + user['courrier_template_sujet'] = str( + New_retVal['collection_courrier_template']['sujet']) + + user['courrier_template_cible'] = "" + if ('cible' in New_retVal['collection_courrier_template'].keys()): + user['courrier_template_cible'] = str( + New_retVal['collection_courrier_template']['cible']) + + user['courrier_template_type_doc'] = "" + if ('type_doc' in New_retVal['collection_courrier_template'].keys()): + user['courrier_template_type_doc'] = str( + New_retVal['collection_courrier_template']['type_doc']) + + has_history_event = "0" + if( "related_collection_recid" in diction.keys() and diction['related_collection_recid']): + """ + Verifier si document a un historic pour le related_collection_recid. + Cela permet de savoir si pour l'entité qui appelle cette fonction, ce document a déjà été + traité + """ + local_qry = {'partner_owner_recid':str(my_partner['recid']), + 'related_collection_recid':str(diction['related_collection_recid']), + 'courrier_template_tracking_id':str(New_retVal['_id']), + 'valide':'1', + 'locked':'0'} + + #print(" #### is_document_has_history_event qry = ", local_qry) + + is_document_has_history_event = MYSY_GV.dbname['courrier_template_tracking_history'].count_documents(local_qry) + + if( is_document_has_history_event > 0 ): + has_history_event = "1" + + #print(" #### is_document_has_history_event RESULT = ", is_document_has_history_event) + + user['has_history_event'] = has_history_event + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des documents éditables " + + +""" +Cette fonction retourne l'HISTORIQUE des telechargements et envois de mail +des documents tracés, pour : +- un partner (Obligatoire) +- un related_collection_recid (Obligatoire) (ex : l'_id de la session) + +""" + +def Get_Editable_History_Document_By_Partner_By_Collection(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', 'related_collection_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list and val.startswith('my_') is False: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'est pas autorisé") + return False, " Les informations fournies sont incorrectes" + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'related_collection_id'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes" + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + related_collection_id = "" + if ("related_collection_id" in diction.keys()): + if diction['related_collection_id']: + related_collection_id = diction['related_collection_id'] + + if( str(related_collection_id).strip() == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'Id de la collection est invalide ") + return False, " L'Id de la collection est invalide " + + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + RetObject = [] + val_tmp = 0 + + qry_match = {"partner_owner_recid": str(my_partner['recid']), 'valide': '1', 'locked': '0', 'related_collection_recid':str(related_collection_id)} + + pipe_qry = ([ + {'$match': qry_match}, + {'$sort': {'_id': -1}}, + {'$lookup': { + 'from': 'courrier_template_tracking', + "let": {'courrier_template_tracking_id': "$courrier_template_tracking_id", + 'partner_owner_recid': '$partner_owner_recid'}, + 'pipeline': [ + {'$match': + {'$expr': + {'$and': + [ + + {'$eq': ["$_id", {'$convert': { + 'input': "$$courrier_template_tracking_id", + 'to': "objectId", + 'onError': {'error': 'true'}, + 'onNull': {'isnull': 'true'} + }}]}, + + {'$eq': ["$valide", "1"]}, + {'$eq': ["$partner_owner_recid", '$$partner_owner_recid']} + + ] + } + } + }, + + ], + 'as': 'courrier_template_tracking' + } + }, + + { + '$unwind': '$courrier_template_tracking' + }, + {'$lookup': { + 'from': 'courrier_template', + "let": {'courrier_template_id': "$courrier_template_tracking.courrier_template_id", 'partner_owner_recid': '$partner_owner_recid'}, + 'pipeline': [ + {'$match': + {'$expr': + {'$and': + [ + + {'$eq': ["$_id", {'$convert': { + 'input': "$$courrier_template_id", + 'to': "objectId", + 'onError': {'error': 'true'}, + 'onNull': {'isnull': 'true'} + }}]}, + {'$eq': ["$valide", "1"]}, + {'$eq': ["$partner_owner_recid", '$$partner_owner_recid']} + + ] + } + } + }, + {'$project': {'contenu_doc': 0, 'corps_mail': 0}}, + + ], + 'as': 'courrier_template' + } + }, + { + '$unwind': '$courrier_template' + }, + ]) + + print(" #### Get_Editable_Document_By_Partner pipe_qry_Get_Editable_Document_By_Partner = ", pipe_qry) + + for New_retVal in MYSY_GV.dbname['courrier_template_tracking_history'].aggregate(pipe_qry): + if ("courrier_template_tracking" in New_retVal.keys() and "courrier_template" in New_retVal.keys()): + + user = {} + user['_id'] = str(New_retVal['_id']) + user['id'] = str(val_tmp) + + user['related_collection_recid'] = "" + if ('related_collection_recid' in New_retVal.keys()): + user['related_collection_recid'] = str(New_retVal['related_collection_recid']) + + user['courrier_template_tracking_id'] = "" + if ('courrier_template_tracking_id' in New_retVal.keys()): + user['courrier_template_tracking_id'] = str(New_retVal['courrier_template_tracking_id']) + + user['date_update'] = "" + if ('date_update' in New_retVal.keys()): + user['date_update'] = str(New_retVal['date_update']) + + user['update_by'] = "" + if ('update_by' in New_retVal.keys()): + user['update_by'] = str(New_retVal['update_by']) + + + # Traitement de courrier_template_tracking + user['courrier_template_id'] = "" + if ('courrier_template_id' in New_retVal['courrier_template_tracking'].keys()): + user['courrier_template_id'] = str(New_retVal['courrier_template_tracking']['courrier_template_id']) + + user['related_collection'] = "" + if ('related_collection' in New_retVal['courrier_template_tracking'].keys()): + user['related_collection'] = str(New_retVal['courrier_template_tracking']['related_collection']) + + user['server_action_name'] = "" + if ('server_action_name' in New_retVal['courrier_template_tracking'].keys()): + user['server_action_name'] = str(New_retVal['courrier_template_tracking']['server_action_name']) + + user['courrier_template_ref_interne'] = "" + if ('courrier_template_ref_interne' in New_retVal['courrier_template_tracking'].keys()): + user['courrier_template_ref_interne'] = str(New_retVal['courrier_template_tracking']['courrier_template_ref_interne']) + + user['rang'] = "" + if ('rang' in New_retVal['courrier_template_tracking'].keys()): + user['rang'] = str(New_retVal['courrier_template_tracking']['rang']) + + # Traitement de courrier_template + user['ref_interne'] = "" + if ('ref_interne' in New_retVal['courrier_template'].keys()): + user['ref_interne'] = str(New_retVal['courrier_template']['ref_interne']) + + user['nom'] = "" + if ('nom' in New_retVal['courrier_template'].keys()): + user['nom'] = str(New_retVal['courrier_template']['nom']) + + user['cible'] = "" + if ('cible' in New_retVal['courrier_template'].keys()): + user['cible'] = str(New_retVal['courrier_template']['cible']) + + user['type_doc'] = "" + if ('type_doc' in New_retVal['courrier_template'].keys()): + user['cible'] = str(New_retVal['courrier_template']['type_doc']) + + + + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de récupérer la liste des documents éditables " +