diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f8be94f..e1104e0 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,11 +1,16 @@ - + + + + - + + + @@ -460,7 +465,6 @@ - @@ -485,6 +489,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 97a95f2..097ceb2 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -5438,6 +5438,190 @@ def Refuse_List_AttendeeInscription_with_motif(diction): return False, " Impossible de refuser la liste des inscriptions" +""" +26/05/2025 : Gestion Formation initiale +Si il s'agit d'une inscription à une formation initiale, alors +on créer le contenu des collection : +- inscription_liste_ue : Dans cette collection on les UE auxquelles l'apprenant est inscrit +- inscription_liste_ue_type_eval : Dans cette collection on a types d'evaluation que doit passer un apprenant sur une UE + ==> Cela permet de gerer par exemple les personne qui s'inscrivent juste pour passer l'exemple final, ou juste les project + etc. + +/!\ Pour determiner si une inscription concerne la formation initiale, on regarde si le compte utilisateur qui + valide l'inscription est un compte de 'formation initiale' + + +cette fonction prend en entrée : +- inscription_id +- class_id +- tab_type_evaluation : [ {'eu_id':'xxx', 'type_eval_id':'yyy'}, {'eu_id':'xxx', 'type_eval_id':'yyy'},....] + +""" +def Init_AcceptAttendeeInscription_For_Initial_Formation(diction): + try: + """ + Verification de la liste des champs obligatoires + """ + field_list_obligatoire = ['token', 'inscription_id', 'class_id', 'tab_type_evaluation'] + 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 ne sont pas correctes" + + mytoken = "" + if ("token" in diction.keys()): + if diction['token']: + mytoken = diction['token', 'inscription_id', 'class_id', 'tab_type_evaluation'] + + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + formation_initiale = "0" + if( "formation_initiale" in my_partner.keys() ): + formation_initiale = my_partner['formation_initiale'] + + if( formation_initiale != "1"): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Il ne s'agit pas d'un formation initiale ") + return True, " Il ne s'agit pas d'un formation initiale " + + + """ + Verifier que l'inscription est valide + """ + is_valide_inscription_count = MYSY_GV.dbname['inscription'].count_documents({'_id':ObjectId(diction['inscription_id']), + 'partner_owner_recid':str(my_partner['recid']), + 'valide':'1'}) + + if( is_valide_inscription_count != 1) : + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de l'inscrit est invalide ") + return False, " L'identifiant de l'inscrit est invalide " + + + """ + Verifier la validité de la formation et créer le contenu de la collection + """ + is_valide_class_count = MYSY_GV.dbname['myclass'].count_documents( + {'_id': ObjectId(diction['class_id']), + 'partner_owner_recid': str(my_partner['recid']), + 'valide': '1', + 'locked':'0'}) + + if (is_valide_class_count != 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " L'identifiant de la formation est invalide ") + return False, " L'identifiant de la formation est invalide " + + + """ + Suppression des données existe dans les collections : inscription_liste_ue et inscription_liste_ue_type_eval + pour l'inscrit et la formation conernée + """ + + clean_inscription_liste_ue = MYSY_GV.dbname['inscription_liste_ue'].delete_many({"partner_owner_recid": str(my_partner['recid']), + 'class_id': str(diction['class_id']), 'inscription_id': str(diction['inscription_id']), }) + + clean_inscription_liste_ue_type_eval = MYSY_GV.dbname['inscription_liste_ue_type_eval'].delete_many( + {"partner_owner_recid": str(my_partner['recid']), + 'class_id': str(diction['class_id']), 'inscription_id': str(diction['inscription_id']), }) + + """ + Recuperer les UE de la formation + """ + tab_class_ue_id = [] + + qry = {"partner_owner_recid": str(my_partner['recid']), 'valide': '1', 'locked': '0', + '_id': ObjectId(str(diction['class_id']))} + + + + for New_retVal in MYSY_GV.dbname['myclass'].find(qry).sort([("_id", pymongo.DESCENDING), ]): + if( "list_unite_enseignement" in New_retVal.keys() ): + for local_val in New_retVal['list_unite_enseignement'] : + + tab_class_ue_id.append(str(local_val['_id'])) + + new_data = {} + new_data['inscription_id'] = str(diction['inscription_id']) + new_data['class_id'] = str(diction['class_id']) + new_data['class_eu_id'] = str(local_val['_id']) + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + new_data['partner_owner_recid'] = str(my_partner['recid']) + new_data['valide'] = "1" + new_data['locked'] = "0" + + + + key_data = {} + key_data['inscription_id'] = str(diction['inscription_id']) + key_data['class_id'] = str(diction['class_id']) + key_data['class_eu_id'] = str(local_val['_id']) + key_data['valide'] = "1" + key_data['partner_owner_recid'] = str(my_partner['recid']) + + + result = MYSY_GV.dbname['inscription_liste_ue'].find_one_and_update( + key_data, + {"$set": new_data}, + upsert=True, + return_document=ReturnDocument.AFTER + ) + if ("_id" not in result.keys()): + mycommon.myprint( + " Impossible de valider l'inscription pour la formation initiale (2) ") + return False, "Impossible de valider l'inscription pour la formation initiale (2) " + + + + """ + Remplissage de la collection : inscription_liste_ue_type_eval + """ + + for val in MYSY_GV.dbname['class_unite_enseignement_type_evaluation'].find({'partner_owner_recid':str(my_partner['recid']), + 'valide':'1', + 'locked':'0', + 'class_id':str(diction['class_id'])}): + new_data = {} + new_data['inscription_id'] = str(diction['inscription_id']) + new_data['class_id'] = str(diction['class_id']) + new_data['class_eu_id'] = str(val['class_ue_id']) + new_data['type_evaluation_id'] = str(val['type_evaluation_id']) + new_data['date_update'] = str(datetime.now()) + new_data['update_by'] = str(my_partner['_id']) + new_data['partner_owner_recid'] = str(my_partner['recid']) + new_data['valide'] = "1" + new_data['locked'] = "0" + + key_data = {} + key_data['inscription_id'] = str(diction['inscription_id']) + key_data['class_id'] = str(diction['class_id']) + key_data['class_eu_id'] = str(local_val['_id']) + key_data['valide'] = "1" + key_data['partner_owner_recid'] = str(my_partner['recid']) + + result = MYSY_GV.dbname['inscription_liste_ue'].find_one_and_update( + key_data, + {"$set": new_data}, + upsert=True, + return_document=ReturnDocument.AFTER + ) + if ("_id" not in result.keys()): + mycommon.myprint( + " Impossible de valider l'inscription pour la formation initiale (2) ") + return False, "Impossible de valider l'inscription pour la formation initiale (2) " + + + return True, "L'inscription a été correctement validée" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + print(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de valider l'inscription pour la formation initiale" @@ -5934,6 +6118,24 @@ def AcceptAttendeeInscription(diction): ) + """ + 26/05/2024 : S'il s'agit d'une formation initiale, alors on lance la fonction 'xxxx' + qui permet de créer les contenus des collection 'inscription_liste_ue' et peut etre 'inscription_liste_ue_type_eval' + + Il s'agit du remplissage par defaut ou tout est actif + """ + + if( "formation_initiale" in my_partner.keys() and my_partner['formation_initiale'] == "1"): + local_diction = {} + local_diction['token'] = diction['token'] + local_diction['inscription_id'] = diction['inscription_id'] + local_diction['class_id'] = str(local_class[0]['_id']) + + local_inscription_liste_ue_status, local_inscription_liste_ue_retval = Init_AcceptAttendeeInscription_For_Initial_Formation(local_diction) + + print(" local_inscription_liste_ue_status, local_inscription_liste_ue_retval = ", local_inscription_liste_ue_status, local_inscription_liste_ue_retval) + + """ update du 30/01/2024 : Apres la mise à jour de l'inscription avec l'apprenant_id, @@ -5958,7 +6160,7 @@ def AcceptAttendeeInscription(diction): """ -Cette fonction une liste d'inscrit à une session de formation +Cette fonction acepte une liste d'inscrit à une session de formation """ def Accept_List_AttendeeInscription(diction): try: @@ -6767,7 +6969,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): 'foreignField': 'internal_url', 'pipeline': [{'$match':{ '$and' : [ filt_class_title, filt_class_partner_recid] } }, {'$project': {'title': 1, 'domaine': 1, 'duration': 1, - 'duration_unit': 1}}], + 'duration_unit': 1, '_id':1}}], 'as': 'myclass_collection' } }, @@ -6864,6 +7066,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['status'] = retVal['status'] + val['class_id'] = str(retVal['myclass_collection'][0]['_id']) val['title'] = retVal['myclass_collection'][0]['title'] if("domaine" in retVal['myclass_collection'][0].keys() ): val['domaine'] = retVal['myclass_collection'][0]['domaine'] diff --git a/Job_Cron.py b/Job_Cron.py index ec36c8d..bc5f66e 100644 --- a/Job_Cron.py +++ b/Job_Cron.py @@ -104,11 +104,13 @@ def Global_MySy_Cron_Traitement(): possibles.update(locals()) cron_function = possibles.get(val['job_name']) if not cron_function: - return False, "Fonction '"+str(val['job_name'])+"' est introuvable" + mycommon.myprint(str( + inspect.stack()[0][3]) + " Fonction '"+str(val['job_name'])+"' est introuvable") + continue local_con_status, local_con_retval = cron_function() - print(" local_con_status = ", local_con_status) + print(" Traitement 01 du job = ", val['job_name']) """ Mettre à jour le cron pour dire que tout s'est bien poassé @@ -163,6 +165,8 @@ CRON fonction qui envoie les demandes d'enquete """ def Cron_Send_Survey(): try: + + print(" Cron : In function = Cron_Send_Survey") for val in MYSY_GV.dbname['survey'].find({"automatique_traitement":"1", 'automatique_traitement_done':'0', 'valide':'1', @@ -241,6 +245,7 @@ Verifier que les devis repondent aux critères suivants (la collection : partner def Cron_Quotation_Relance(): try: + print(" Cron : In function = Cron_Quotation_Relance") todays_date = str(date.today().strftime("%d/%m/%Y")) todays_date_ISODATE = datetime.strptime(str(todays_date), '%d/%m/%Y') @@ -283,7 +288,7 @@ def Cron_Quotation_Relance(): {'$match': devis_qery_match}, ]) - #print(" ## pipe_qry Cron_Quotation_Relance = ", pipe_qry) + print(" ## pipe_qry Cron_Quotation_Relance = ", pipe_qry) for local_devis in MYSY_GV.dbname['partner_order_header'].aggregate(pipe_qry): is_quotation_validated = 0 @@ -293,7 +298,7 @@ def Cron_Quotation_Relance(): is_quotation_validated = 1 - #print( "### local_devis a traiter = ", local_devis) + print( "### local_devis a traiter = ", local_devis) relance_done = 0 nb_limite_relance = 0 @@ -332,7 +337,6 @@ def Cron_Quotation_Relance(): datetime.strptime(str(todays_date), '%d/%m/%Y') - if( is_quotation_validated == 0 and relance_done <= nb_limite_relance and datetime.strptime(str(todays_date), '%d/%m/%Y') >= datetime.strptime( str(new_relance_date_no_ISODATE).strip(), '%d/%m/%Y') ): """ @@ -429,6 +433,7 @@ A la prochaine facturation, comme on est sur une facturation mensuelle, le syst """ def Cron_Monthly_Invoice_Inscription(): try: + print(" Cron : In function = Cron_Monthly_Invoice_Inscription") todays_date = str(date.today().strftime("%d/%m/%Y")) todays_date_ISODATE = datetime.strptime(str(todays_date), '%d/%m/%Y') @@ -661,6 +666,8 @@ tables et met à jour les inscriptions """ def Invoice_Data_From_Tab(diction): try: + + print(" Cron : In function = Invoice_Data_From_Tab") todays_date_mode_2 = str(date.today().strftime("%Y-%m-%d")) print( " ### diction FACTURATION= ", diction) diff --git a/Log/log_file.log b/Log/log_file.log index 72e5dcf..bff0083 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -2416101,3 +2416101,4482 @@ RuntimeError: Working outside of application context. This typically means that you attempted to use functionality that needed the current application. To solve this, set up an application context with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-24 18:41:03.078028+02:00 (in 119.993513 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-24 18:41:03 CEST)" (scheduled at 2024-05-24 18:39:03.078028+02:00) +INFO:root:2024-05-24 18:39:03.085515 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-24 18:41:03 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-24 18:41:11.708722+02:00 (in 119.994060 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-24 18:41:11 CEST)" (scheduled at 2024-05-24 18:39:11.709722+02:00) +INFO:root:2024-05-24 18:39:11.715454 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-24 18:41:11 CEST)" executed successfully +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:root:2024-05-25 11:51:30.335209 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 11:51:30.335209 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 11:51:30.336214 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 11:51:30.336214 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 11:51:30.336214 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:53:30.834741+02:00 (in 119.975970 seconds) +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 11:51:51.710795 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 11:51:51.711821 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 11:51:51.711821 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 11:51:51.711821 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 11:51:51.711821 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:53:52.089337+02:00 (in 119.995993 seconds) +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 11:53:01.655386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:01.657982 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:01.660002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:01.662553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:01.663960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:01.667583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:02] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:02.269083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.271255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.274272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.277400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:02.972876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.978868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.983348 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.989054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:02.996173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.002009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.014118 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.017708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.040020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.048030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.051048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.059046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.068189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.080968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.085421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.093721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.103096 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.108626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.116859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.125862 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.133196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.138704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.149171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.158309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.165208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.172007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.181249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.193420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.200548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.207828 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.218923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.228168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.233636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.246647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.249646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.261639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.265168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.271095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.282782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.287070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.297431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.306107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.313730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.324387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.331410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.342129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.347340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.352823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.359935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.361941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.369173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.373795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.383903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.388281 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.397604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.402137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.418832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.431509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:03.443089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:03.450426 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.255570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.458818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.463456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.470334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.473741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.481438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.491539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.504438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.522249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.530935 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.534930 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.660315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.663782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.668779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.676159 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.684446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:53:15.691441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.708427 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.726366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.756423 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:53:15.771079 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:53:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:53:30 CEST)" (scheduled at 2024-05-25 11:53:30.834741+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:54:30.833748+02:00 (in 59.993687 seconds) +INFO:root:2024-05-25 11:53:30.841397 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:55:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:53:52 CEST)" (scheduled at 2024-05-25 11:53:52.089337+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:54:52.089337+02:00 (in 59.985165 seconds) +INFO:root:2024-05-25 11:53:52.105206 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:55:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:55:30.834741+02:00 (in 59.986216 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 11:57:30 CEST)" (scheduled at 2024-05-25 11:54:30.833748+02:00) +INFO:root:2024-05-25 11:54:30.848525 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 11:54:30.953099 : samedi, 25. mai 2024 11:54:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 11:57:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:55:52.089337+02:00 (in 59.993402 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 11:57:52 CEST)" (scheduled at 2024-05-25 11:54:52.089337+02:00) +INFO:root:2024-05-25 11:54:52.095935 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 11:54:52.099218 : samedi, 25. mai 2024 11:54:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 11:57:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:root:2024-05-25 11:54:56.921637 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:54:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:54:56.925970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:54:56.944954 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:54:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:54:56.948005 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:54:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:54:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:55:01.700319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:55:01.704538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:55:01.708556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:55:01.720778 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:57:30.833748+02:00 (in 119.992682 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:57:30 CEST)" (scheduled at 2024-05-25 11:55:30.834741+02:00) +INFO:root:2024-05-25 11:55:30.842074 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:57:30 CEST)" executed successfully +INFO:root:2024-05-25 11:55:42.670816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:55:42.674876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:55:42.679146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:55:42.692538 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:55:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:57:52.089337+02:00 (in 119.990584 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:57:52 CEST)" (scheduled at 2024-05-25 11:55:52.089337+02:00) +INFO:root:2024-05-25 11:55:52.098753 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:57:52 CEST)" executed successfully +INFO:root:2024-05-25 11:56:32.548667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:56:32.551683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:56:32.557172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:56:32.564515 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:56:39.600681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:39] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:56:45.429700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:56:45.432440 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:45] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:56:48.775364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:56:48] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:57:05.898391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:57:05] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:57:07.776486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:57:07.778469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:57:07] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:57:07] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:57:13.225401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:57:13] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:00:30 CEST)" (scheduled at 2024-05-25 11:57:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:59:30 CEST)" (scheduled at 2024-05-25 11:57:30.834741+02:00) +INFO:root:2024-05-25 11:57:30.846849 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:59:30.834741+02:00 (in 119.989112 seconds) +INFO:root:2024-05-25 11:57:30.846849 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 11:57:30.848857 : samedi, 25. mai 2024 11:57:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:00:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:59:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:59:52 CEST)" (scheduled at 2024-05-25 11:57:52.089337+02:00) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:00:52 CEST)" (scheduled at 2024-05-25 11:57:52.089337+02:00) +INFO:root:2024-05-25 11:57:52.105987 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 11:59:52.089337+02:00 (in 119.985345 seconds) +INFO:root:2024-05-25 11:57:52.105987 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 11:57:52.109990 : samedi, 25. mai 2024 11:57:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:00:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 11:59:52 CEST)" executed successfully +INFO:root:2024-05-25 11:58:35.746319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:58:35.750639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:58:35.756032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:58:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:58:35.769557 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:58:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:58:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.671421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.676137 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.682147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.686379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.691193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.695354 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.701242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.707676 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.910307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.913583 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:00.919136 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:00.925252 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:00:30.833748+02:00 (in 59.986260 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:01:30 CEST)" (scheduled at 2024-05-25 11:59:30.834741+02:00) +INFO:root:2024-05-25 11:59:30.848460 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:01:30 CEST)" executed successfully +INFO:root:2024-05-25 11:59:44.637073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 11:59:44.638622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 11:59:51.976801 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 11:59:51] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:00:52.089337+02:00 (in 59.990965 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:01:52 CEST)" (scheduled at 2024-05-25 11:59:52.089337+02:00) +INFO:root:2024-05-25 11:59:52.099375 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:01:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:01:30.834741+02:00 (in 59.933394 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:03:30 CEST)" (scheduled at 2024-05-25 12:00:30.833748+02:00) +INFO:root:2024-05-25 12:00:30.902351 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:00:30.904359 : samedi, 25. mai 2024 12:00:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:03:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:01:52.089337+02:00 (in 59.985705 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:03:52 CEST)" (scheduled at 2024-05-25 12:00:52.089337+02:00) +INFO:root:2024-05-25 12:00:52.104636 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:00:52.105630 : samedi, 25. mai 2024 12:00:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:03:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:03:30.833748+02:00 (in 119.997564 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:03:30 CEST)" (scheduled at 2024-05-25 12:01:30.834741+02:00) +INFO:root:2024-05-25 12:01:30.837164 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:03:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:03:52.089337+02:00 (in 119.988278 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:03:52 CEST)" (scheduled at 2024-05-25 12:01:52.089337+02:00) +INFO:root:2024-05-25 12:01:52.101575 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:03:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:05:30.834741+02:00 (in 119.989795 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:06:30 CEST)" (scheduled at 2024-05-25 12:03:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:05:30 CEST)" (scheduled at 2024-05-25 12:03:30.834741+02:00) +INFO:root:2024-05-25 12:03:30.847052 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:03:30.847052 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:03:30.851521 : samedi, 25. mai 2024 12:03:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:06:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:05:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:05:52.089337+02:00 (in 119.997295 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:05:52 CEST)" (scheduled at 2024-05-25 12:03:52.089337+02:00) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:06:52 CEST)" (scheduled at 2024-05-25 12:03:52.089337+02:00) +INFO:root:2024-05-25 12:03:52.093051 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:03:52.093051 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:03:52.095069 : samedi, 25. mai 2024 12:03:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:06:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:05:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:06:30.833748+02:00 (in 59.879096 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:07:30 CEST)" (scheduled at 2024-05-25 12:05:30.834741+02:00) +INFO:root:2024-05-25 12:05:30.956649 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:07:30 CEST)" executed successfully +INFO:root:2024-05-25 12:05:49.994195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:50] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:06:52.089337+02:00 (in 59.990145 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:07:52 CEST)" (scheduled at 2024-05-25 12:05:52.089337+02:00) +INFO:root:2024-05-25 12:05:52.099700 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:07:52 CEST)" executed successfully +INFO:root:2024-05-25 12:05:52.675013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:52.679547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:52] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.334650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:59.339465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:59.341490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.346492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:59.355618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.362686 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.365686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:59.373420 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.553471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.559478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:05:59.565610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:05:59.572570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:05:59] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:06:07.357245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:07] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:06:10.960550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:06:10.965909 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:10] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:06:14.675506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:14] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:06:20.340538 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:06:20.343144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:20] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:06:22.548080 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:06:22] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:07:30.834741+02:00 (in 59.989408 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:09:30 CEST)" (scheduled at 2024-05-25 12:06:30.833748+02:00) +INFO:root:2024-05-25 12:06:30.845861 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:06:30.847896 : samedi, 25. mai 2024 12:06:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:09:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:07:52.089337+02:00 (in 59.997313 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:09:52 CEST)" (scheduled at 2024-05-25 12:06:52.089337+02:00) +INFO:root:2024-05-25 12:06:52.093025 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:06:52.095247 : samedi, 25. mai 2024 12:06:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:09:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:09:30.833748+02:00 (in 119.984255 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:09:30 CEST)" (scheduled at 2024-05-25 12:07:30.834741+02:00) +INFO:root:2024-05-25 12:07:30.850493 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:09:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:09:52.089337+02:00 (in 119.987542 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:09:52 CEST)" (scheduled at 2024-05-25 12:07:52.089337+02:00) +INFO:root:2024-05-25 12:07:52.102795 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:09:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:11:30.834741+02:00 (in 119.996055 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:12:30 CEST)" (scheduled at 2024-05-25 12:09:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:11:30 CEST)" (scheduled at 2024-05-25 12:09:30.834741+02:00) +INFO:root:2024-05-25 12:09:30.839688 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:09:30.839688 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:09:30.840694 : samedi, 25. mai 2024 12:09:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:12:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:11:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:11:52.089337+02:00 (in 119.985471 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:11:52 CEST)" (scheduled at 2024-05-25 12:09:52.089337+02:00) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:12:52 CEST)" (scheduled at 2024-05-25 12:09:52.089337+02:00) +INFO:root:2024-05-25 12:09:52.104868 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:09:52.104868 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:09:52.105867 : samedi, 25. mai 2024 12:09:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:12:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:11:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:12:30.833748+02:00 (in 59.996675 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:13:30 CEST)" (scheduled at 2024-05-25 12:11:30.834741+02:00) +INFO:root:2024-05-25 12:11:30.838116 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:13:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:12:52.089337+02:00 (in 59.985682 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:13:52 CEST)" (scheduled at 2024-05-25 12:11:52.089337+02:00) +INFO:root:2024-05-25 12:11:52.104655 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:13:52 CEST)" executed successfully +INFO:root:2024-05-25 12:12:24.188279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.194343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.199411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:12:24.206422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.210422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.219423 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.223273 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:12:24.233521 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:12:24.449856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:12:24.454612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:24.461096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:12:24.467108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:13:30.834741+02:00 (in 59.996005 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:15:30 CEST)" (scheduled at 2024-05-25 12:12:30.833748+02:00) +INFO:root:2024-05-25 12:12:30.839730 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:12:30.840730 : samedi, 25. mai 2024 12:12:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:15:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:root:2024-05-25 12:12:44.174226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:12:44.177752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:12:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:13:52.089337+02:00 (in 59.999133 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:15:52 CEST)" (scheduled at 2024-05-25 12:12:52.089337+02:00) +INFO:root:2024-05-25 12:12:52.091207 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:12:52.092245 : samedi, 25. mai 2024 12:12:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:15:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:15:30.833748+02:00 (in 119.982093 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:15:30 CEST)" (scheduled at 2024-05-25 12:13:30.834741+02:00) +INFO:root:2024-05-25 12:13:30.855222 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:15:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:15:52.089337+02:00 (in 119.996351 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:15:52 CEST)" (scheduled at 2024-05-25 12:13:52.089337+02:00) +INFO:root:2024-05-25 12:13:52.093987 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:15:52 CEST)" executed successfully +INFO:root:2024-05-25 12:15:04.559964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:04.562522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.567935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:04.572155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:04.576410 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:04.581415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.587403 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.595880 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.741179 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.745182 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:04.750385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:04.753405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:12.972201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 12:15:12.975667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:12] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:12] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 12:15:15.587582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 12:15:15] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:17:30.834741+02:00 (in 119.994334 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:18:30 CEST)" (scheduled at 2024-05-25 12:15:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:17:30 CEST)" (scheduled at 2024-05-25 12:15:30.834741+02:00) +INFO:root:2024-05-25 12:15:30.841468 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:15:30.841468 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:15:30.845197 : samedi, 25. mai 2024 12:15:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:18:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:17:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:17:52.089337+02:00 (in 119.994558 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:17:52 CEST)" (scheduled at 2024-05-25 12:15:52.089337+02:00) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:18:52 CEST)" (scheduled at 2024-05-25 12:15:52.089337+02:00) +INFO:root:2024-05-25 12:15:52.095750 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:15:52.095750 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:15:52.096778 : samedi, 25. mai 2024 12:15:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:18:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:17:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:18:30.833748+02:00 (in 59.994096 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:19:30 CEST)" (scheduled at 2024-05-25 12:17:30.834741+02:00) +INFO:root:2024-05-25 12:17:30.840652 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:19:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:18:52.089337+02:00 (in 59.968047 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:19:52 CEST)" (scheduled at 2024-05-25 12:17:52.089337+02:00) +INFO:root:2024-05-25 12:17:52.122294 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:19:52 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:19:30.834741+02:00 (in 59.992393 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:21:30 CEST)" (scheduled at 2024-05-25 12:18:30.833748+02:00) +INFO:root:2024-05-25 12:18:30.843353 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:18:30.844511 : samedi, 25. mai 2024 12:18:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:21:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:19:52.089337+02:00 (in 59.993283 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:21:52 CEST)" (scheduled at 2024-05-25 12:18:52.089337+02:00) +INFO:root:2024-05-25 12:18:52.097094 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:18:52.098088 : samedi, 25. mai 2024 12:18:52 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:21:52 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:21:30.833748+02:00 (in 119.997869 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:21:30 CEST)" (scheduled at 2024-05-25 12:19:30.834741+02:00) +INFO:root:2024-05-25 12:19:30.835879 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:21:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:21:52.089337+02:00 (in 119.988340 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:21:52 CEST)" (scheduled at 2024-05-25 12:19:52.089337+02:00) +INFO:root:2024-05-25 12:19:52.101995 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:21:52 CEST)" executed successfully +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 12:20:37.322548 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 12:20:37.322548 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 12:20:37.322548 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 12:20:37.322548 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 12:20:37.323073 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:22:37.600253+02:00 (in 119.995814 seconds) +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:23:30.834741+02:00 (in 119.985569 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:24:30 CEST)" (scheduled at 2024-05-25 12:21:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:23:30 CEST)" (scheduled at 2024-05-25 12:21:30.834741+02:00) +INFO:root:2024-05-25 12:21:30.849703 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:21:30.849703 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:21:30.861990 : samedi, 25. mai 2024 12:21:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:24:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:23:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:22:37 CEST)" (scheduled at 2024-05-25 12:22:37.600253+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:23:37.600253+02:00 (in 59.996687 seconds) +INFO:root:2024-05-25 12:22:37.604097 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:24:37 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:24:30.833748+02:00 (in 59.991204 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:25:30 CEST)" (scheduled at 2024-05-25 12:23:30.834741+02:00) +INFO:root:2024-05-25 12:23:30.843599 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:25:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:24:37.600253+02:00 (in 59.994005 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:26:37 CEST)" (scheduled at 2024-05-25 12:23:37.600253+02:00) +INFO:root:2024-05-25 12:23:37.607246 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:23:37.608251 : samedi, 25. mai 2024 12:23:37 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:26:37 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:25:30.834741+02:00 (in 59.995149 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:27:30 CEST)" (scheduled at 2024-05-25 12:24:30.833748+02:00) +INFO:root:2024-05-25 12:24:30.839592 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:24:30.840854 : samedi, 25. mai 2024 12:24:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:27:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:26:37.600253+02:00 (in 119.990780 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:26:37 CEST)" (scheduled at 2024-05-25 12:24:37.600253+02:00) +INFO:root:2024-05-25 12:24:37.610466 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:26:37 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:27:30.833748+02:00 (in 119.994932 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:27:30 CEST)" (scheduled at 2024-05-25 12:25:30.834741+02:00) +INFO:root:2024-05-25 12:25:30.839785 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:27:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:28:37 CEST)" (scheduled at 2024-05-25 12:26:37.600253+02:00) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:29:37 CEST)" (scheduled at 2024-05-25 12:26:37.600253+02:00) +INFO:root:2024-05-25 12:26:37.609885 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:28:37.600253+02:00 (in 119.990368 seconds) +INFO:root:2024-05-25 12:26:37.611094 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:26:37.620933 : samedi, 25. mai 2024 12:26:37 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:28:37 CEST)" executed successfully +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:29:37 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:29:30.834741+02:00 (in 119.997746 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:30:30 CEST)" (scheduled at 2024-05-25 12:27:30.833748+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:29:30 CEST)" (scheduled at 2024-05-25 12:27:30.834741+02:00) +INFO:root:2024-05-25 12:27:30.837979 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 12:27:30.837979 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 12:27:30.846261 : samedi, 25. mai 2024 12:27:30 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 12:30:30 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:29:30 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 12:29:37.600253+02:00 (in 59.984126 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:30:37 CEST)" (scheduled at 2024-05-25 12:28:37.600253+02:00) +INFO:root:2024-05-25 12:28:37.617137 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 12:30:37 CEST)" executed successfully +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:root:2024-05-25 18:44:27.577126 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:44:27.577126 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:44:27.577126 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:44:27.577126 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:44:27.578129 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:46:27.798738+02:00 (in 119.997486 seconds) +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 18:44:36.589649 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:44:36.590654 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:44:36.590654 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:44:36.590654 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:44:36.590654 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:46:36.791551+02:00 (in 119.997719 seconds) +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 18:45:33.047709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.051083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.054447 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.059488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.061913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.068174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.076167 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.087610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.100971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.115245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.123192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.131660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.150900 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.169075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.176084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:33.185095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.192627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:33.205640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:33] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:45:39.452193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:45:39.454827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:39] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:45:39] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:46:27 CEST)" (scheduled at 2024-05-25 18:46:27.798738+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:47:27.797413+02:00 (in 59.983417 seconds) +INFO:root:2024-05-25 18:46:27.815389 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:48:27 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:46:36 CEST)" (scheduled at 2024-05-25 18:46:36.791551+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:47:36.790569+02:00 (in 59.987713 seconds) +INFO:root:2024-05-25 18:46:36.803996 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:48:36 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:48:27.798738+02:00 (in 59.988988 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:50:27 CEST)" (scheduled at 2024-05-25 18:47:27.797413+02:00) +INFO:root:2024-05-25 18:47:27.810743 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 18:47:27.811735 : samedi, 25. mai 2024 06:47:27 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:50:27 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:48:36.791551+02:00 (in 59.990621 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:50:36 CEST)" (scheduled at 2024-05-25 18:47:36.790569+02:00) +INFO:root:2024-05-25 18:47:36.801921 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 18:47:36.802927 : samedi, 25. mai 2024 06:47:36 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:50:36 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:50:27.797413+02:00 (in 119.983448 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:50:27 CEST)" (scheduled at 2024-05-25 18:48:27.798738+02:00) +INFO:root:2024-05-25 18:48:27.816964 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:50:27 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:50:36.790569+02:00 (in 119.983619 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:50:36 CEST)" (scheduled at 2024-05-25 18:48:36.791551+02:00) +INFO:root:2024-05-25 18:48:36.806950 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:50:36 CEST)" executed successfully +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 18:49:21.054771 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:49:21.054771 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:49:21.054771 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:49:21.054771 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:49:21.054771 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:51:21.235550+02:00 (in 119.997387 seconds) +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:53:27 CEST)" (scheduled at 2024-05-25 18:50:27.797413+02:00) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:52:27 CEST)" (scheduled at 2024-05-25 18:50:27.798738+02:00) +INFO:root:2024-05-25 18:50:27.806564 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:52:27.798738+02:00 (in 119.993203 seconds) +INFO:root:2024-05-25 18:50:27.807571 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:root:2024-05-25 18:50:27.808575 : samedi, 25. mai 2024 06:50:27 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:53:27 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:52:27 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:51:21 CEST)" (scheduled at 2024-05-25 18:51:21.235550+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:52:21.235550+02:00 (in 59.991266 seconds) +INFO:root:2024-05-25 18:51:21.244965 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:53:21 CEST)" executed successfully +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 18:51:54.888736 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:51:54.888736 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:51:54.888736 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:51:54.888736 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:51:54.888736 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Flask_Cron_Strip_Get_Customer_Abonnement_Data" to job store "default" +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:53:55.070272+02:00 (in 119.998005 seconds) +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:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:werkzeug: * Restarting with stat +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:53:27.797413+02:00 (in 59.990959 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:54:27 CEST)" (scheduled at 2024-05-25 18:52:27.798738+02:00) +INFO:root:2024-05-25 18:52:27.806454 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:54:27 CEST)" executed successfully +INFO:root:2024-05-25 18:52:33.718835 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:52:33.718835 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:52:33.718835 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:52:33.718835 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:52:33.718835 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:apscheduler.scheduler:Adding job tentatively -- it will be properly scheduled when the scheduler starts +INFO:apscheduler.scheduler:Added job "Internal_Global_MySy_Cron_Traitement" to job store "default" +INFO:apscheduler.scheduler:Scheduler started +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:53:33.896930+02:00 (in 59.998631 seconds) +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:54:27.798738+02:00 (in 59.988897 seconds) +INFO:apscheduler.executors.default:Running job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:56:27 CEST)" (scheduled at 2024-05-25 18:53:27.797413+02:00) +INFO:root:2024-05-25 18:53:27.810890 : ### CRONN : Flask_Cron_Strip_Get_Customer_Abonnement_Data : payload = +INFO:root:2024-05-25 18:53:27.811900 : samedi, 25. mai 2024 06:53:27 : Envoie des données de prefacturation : - 0 clients ==> A traiter. - 0 clients==> traiter OKK. - 0 clients ==> traiter ERREUR. +ERROR:apscheduler.executors.default:Job "Flask_Cron_Strip_Get_Customer_Abonnement_Data (trigger: interval[0:03:00], next run at: 2024-05-25 18:56:27 CEST)" raised an exception +Traceback (most recent call last): + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\apscheduler\executors\base.py", line 125, in run_job + retval = job.func(*job.args, **job.kwargs) + File "C:\Users\billa\Documents\myclass.com\Siteweb\Production\Ela_back\Back_Office\main.py", line 3998, in Flask_Cron_Strip_Get_Customer_Abonnement_Data + return jsonify(status=localStatus, message=message) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\flask\json\__init__.py", line 342, in jsonify + return current_app.json.response(*args, **kwargs) + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 316, in __get__ + obj = instance._get_current_object() + File "C:\Users\billa\AppData\Local\Programs\Python\Python310\lib\site-packages\werkzeug\local.py", line 513, in _get_current_object + raise RuntimeError(unbound_message) from None +RuntimeError: Working outside of application context. + +This typically means that you attempted to use functionality that needed +the current application. To solve this, set up an application context +with app.app_context(). See the documentation for more information. +DEBUG:apscheduler.scheduler:Looking for jobs to run +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:01:00], next run at: 2024-05-25 18:53:33 CEST)" (scheduled at 2024-05-25 18:53:33.896930+02:00) +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:54:33.896930+02:00 (in 59.983247 seconds) +INFO:root:2024-05-25 18:53:33.914702 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:01:00], next run at: 2024-05-25 18:54:33 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:56:27.797413+02:00 (in 119.990194 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:56:27 CEST)" (scheduled at 2024-05-25 18:54:27.798738+02:00) +INFO:root:2024-05-25 18:54:27.808554 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:02:00], next run at: 2024-05-25 18:56:27 CEST)" executed successfully +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:Next wakeup is due at 2024-05-25 18:55:33.896930+02:00 (in 59.986472 seconds) +INFO:apscheduler.executors.default:Running job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:01:00], next run at: 2024-05-25 18:55:33 CEST)" (scheduled at 2024-05-25 18:54:33.896930+02:00) +INFO:root:2024-05-25 18:54:33.911432 : ### CRONNN Internal_Global_MySy_Cron_Traitement : payload = +INFO:apscheduler.executors.default:Job "Internal_Global_MySy_Cron_Traitement (trigger: interval[0:01:00], next run at: 2024-05-25 18:55:33 CEST)" executed successfully +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\main.py', reloading +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:apscheduler.scheduler:Scheduler has been shut down +DEBUG:apscheduler.scheduler:Looking for jobs to run +DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added +INFO:root:2024-05-25 18:55:35.583598 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:55:35.584605 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:55:35.584605 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:55:35.584605 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:55:35.584605 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 18:55:46.030307 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:55:46.030307 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:55:46.030307 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:55:46.030307 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:55:46.030307 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 18:55:51.246679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:55:51] "GET /myclass/api/Internal_Global_MySy_Cron_Traitement HTTP/1.1" 404 - +INFO:root:2024-05-25 18:56:15.647522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:56:15] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 18:56:15.652208 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:56:15] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 18:56:47.343260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:56:47] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 18:56:47.353670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:56:47] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 18:58:11.106086 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 18:58:11.106086 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 18:58:11.106086 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 18:58:11.106086 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 18:58:11.106086 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 18:58:25.545662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 18:58:25.555658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:58:25] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 18:58:25] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:01:18.941377 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:01:18.941377 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:01:18.942360 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:01:18.942360 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:01:18.942360 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:01:18.979412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:01:18] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:01:18.983815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:01:19] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:02:57.957292 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:02:57.957292 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:02:57.958292 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:02:57.958292 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:02:57.958292 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:03:01.953443 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:03:01] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:03:01.958458 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:03:02] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:07:31.632187 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:07:31.632187 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:07:31.632187 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:07:31.632187 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:07:31.632187 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:07:31.672400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:07:31] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:07:31.677402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:07:32.316510 : Cron_Quotation_Relance -$or/$and/$nor entries need to be full objects, full error: {'ok': 0.0, 'errmsg': '$or/$and/$nor entries need to be full objects', 'code': 2, 'codeName': 'BadValue'} - Line : 294 +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:07:32] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:07:55.331258 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:07:55.332247 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:07:55.332247 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:07:55.332247 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:07:55.332247 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:07:55.371863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:07:55] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:07:55.377283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:07:55] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:08:06.914656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:08:06.918262 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:08:06] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:08:06] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:09:16.590752 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:09:16.590752 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:09:16.590752 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:09:16.590752 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:09:16.590752 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:09:36.997696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:09:36] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:09:37.002540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:09:37] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:10:22.063877 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
 
\n\n\n\n\n\n\n\n\n\n
\n

--- LOGO ---

\n
\n

Devis n° Devis_116

\n




\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_82.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:10:23] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:10:23.511734 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:10:23] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:11:01.077438 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:11:01.077438 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:11:01.077438 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:11:01.077438 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:11:01.077438 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:11:55.915826 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:11:55] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:11:55.922024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:11:56] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:13:08.362767 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:13:08.362767 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:13:08.362767 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:13:08.363767 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:13:08.363767 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:13:26.138365 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:13:26.138365 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:13:26.138365 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:13:26.138365 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:13:26.138365 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:13:26.176654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:13:26] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:13:26.182639 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:13:26] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:13:56.280245 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:13:56] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:13:56.285739 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n




\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_52261.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:13:57] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:14:25.628810 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:14:25.630054 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:14:25.630054 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:14:25.630054 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:14:25.630054 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:14:25.668699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:14:25.673839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:14:25] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:14:25] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Job_Cron.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:19:36.434316 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:19:36.435326 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:19:36.435326 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:19:36.435326 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:19:36.435326 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:20:07.092726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:20:07] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:20:07.098862 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n




\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_44423.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:20:07] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:22:17.643010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:22:17] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:22:17.837849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:22:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:22:52.642803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:22:52] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:22:52.648918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:22:53] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:23:16.832351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:23:16] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:24:25.582053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:24:25] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:24:25.773693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:24:25] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:24:52.722411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:24:52] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:24:52.727444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:24:52] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:26:19.006712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:26:19] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:28:46.138524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:28:46.139525 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:28:46.139525 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:28:46.139525 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:28:46.139525 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:28:54.901736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:28:54] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:28:55.119549 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:28:55] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:29:12.595111 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:29:12] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:29:12.599862 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n




\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_28278.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:29:13] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:31:16.585164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:31:16] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:31:27.199510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:31:27] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:31:27.448010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:31:27] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:31:59.101034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:31:59] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:31:59.106262 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n




\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_94094.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:31:59] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:33:04.068390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:33:04] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:35:04.941188 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:35:04.942184 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:35:04.942184 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:35:04.942184 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:35:04.942184 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:35:41.756668 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:35:41.756668 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:35:41.756668 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:35:41.756668 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:35:41.756668 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:36:02.134440 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:36:02.135453 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:36:02.135453 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:36:02.135453 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:36:02.135453 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:36:18.466785 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:36:18.467789 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:36:18.467789 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:36:18.467789 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:36:18.467789 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 19:40:26.203003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:40:26] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:40:26.410042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:40:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:40:58.375848 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:40:58] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:40:58.382843 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02


\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_10963.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:40:59] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:42:23.789740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:42:23] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:44:06.835365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:44:06] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:44:07.013287 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:44:07] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:35.843601 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:35.859189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:40.905849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:40] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:43.896061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.899100 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.903114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.906794 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.910045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.912316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.915810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:43.930422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:48:43.937971 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:48:43.942492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_Client_Type_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:48:43] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:49:27.882695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:49:27] "POST /myclass/api/Update_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:50:00.170624 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:50:00] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:50:00.176737 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02


\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_58197.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:50:00] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:51:03.470432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:51:03] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:52:01.933770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:52:01] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:52:02.118435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:52:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:52:32.470367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:52:32] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:52:32.475738 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02
2 place de la facture
75004

\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_81544.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:52:34] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:53:14.409706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:53:14] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:53:22.955860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:53:22] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:53:23.222178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:53:23] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:53:48.917468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:53:48] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:53:48.921546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:53:48] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:54:27.731404 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:54:27] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 19:54:27.737565 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
CONDUIRE UN PROJET315004500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_71786.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:54:28] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:12.367219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:12.369953 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:12.384085 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:12.387099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:12] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:12] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:13.991336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:13.994331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:13.997332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.003346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.006347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.010344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.018475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.022675 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.034783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.045589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.056869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.071878 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.081879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.086869 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.091844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.109351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:14.115114 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:14.138324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:16.398813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:16.402243 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:16] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:16] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:20.223100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:20] "POST /myclass/api/Confirm_Partner_Order_Header_And_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 19:56:20.523481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:20.526053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 19:56:20.535028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:20] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 19:56:20] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:57:56.827547 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:57:56.827547 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:57:56.827547 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:57:56.827547 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:57:56.827547 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:58:45.930727 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:58:45.930727 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:58:45.930727 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:58:45.932060 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:58:45.932060 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:59:13.203721 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:59:13.204237 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:59:13.204237 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:59:13.204237 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:59:13.204237 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:59:28.892575 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:59:28.892575 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:59:28.892575 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:59:28.892575 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:59:28.892575 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 19:59:57.252983 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 19:59:57.252983 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 19:59:57.252983 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 19:59:57.252983 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 19:59:57.252983 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:00:47.407999 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:00:47.408999 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:00:47.408999 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:00:47.408999 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:00:47.408999 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:02:42.562231 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:02:42.562231 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:02:42.562231 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:02:42.562231 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:02:42.562231 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:02:58.680070 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:02:58.680070 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:02:58.680070 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:02:58.680070 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:02:58.680070 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:18:33.455377 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:18:33.459550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:33] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:33] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:35.860690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:35] "POST /myclass/api/Get_Given_Partner_Client_From_Id/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:41.701406 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:41] "POST /myclass/api/Add_Partner_Quotation/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:41.967627 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:41] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:47.893094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:18:47.896112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:47] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:47] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:50.334194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:52.736062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:52] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:59.069905 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:59] "POST /myclass/api/Add_Update_Partner_Order_Line/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:18:59.287668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:18:59.303814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:59] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:18:59] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:02.886326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:06.539857 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:06] "POST /myclass/api/get_Class_From_Internal_Url/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:12.383344 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:12] "POST /myclass/api/Add_Update_Partner_Order_Line/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:12.643121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:19:12.663821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:12] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:12] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:19.842376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:19] "POST /myclass/api/Confirm_Partner_Order_Header_And_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:20.176138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:20.196297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:19:20.199307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:20] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:20] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:19:33.767570 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:19:34] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:20:18.421564 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:20:18.421564 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:20:18.421564 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:20:18.421564 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:20:18.421564 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:20:18.475562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:20:19] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:21:37.534336 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:21:37.534336 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:21:37.534336 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:21:37.534336 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:21:37.534336 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:21:38.122754 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
 
\n\n\n\n\n\n\n\n\n\n
\n

--- LOGO ---

\n
\n

\n




\n

 

\n

 

\n


Date :
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( )
 Total HT
 TVA
 Total
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_35.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:21:39] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:21:39.180700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:21:39] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:13.852807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:13.855479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:13.856482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:13.860935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:13.865332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:13.871770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:13.892028 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:13.897494 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:14.054893 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:14] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:14.058906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:14.066527 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:14] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:14.071559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:14] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:14] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:43.173518 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:43] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:22:45.594093 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:22:45.597091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:45] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:22:45] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:23:27.430948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:23:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:26:45.695478 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:26:45] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:26:45.870161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:26:45] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:27:01.606533 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

 Devis

\n
\n\n\n\n\n\n\n
\n

 Devis n° Devis_117

\n

 

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_117
Date Devis : 25/05/2024
 

\n

 Expiration : 23/08/2024
 

\n
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtéPrix Unit.Montant
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALE225005000.0
CONDUIRE UN PROJET115001500.0
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_88.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col widths: [None, None, '17.4276%', '79.7567%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:27:03] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:27:03.665204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:27:03] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:27:33.159371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:27:33] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:29:29.078910 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:29:29.078910 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:29:29.078910 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:29:29.078910 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:29:29.078910 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:30:35.225952 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:30:35.225952 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:30:35.225952 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:30:35.225952 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:30:35.225952 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:38:58.739344 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:38:58.739857 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:38:58.739857 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:38:58.739857 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:38:58.739857 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:39:07.349665 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:39:07.349665 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:39:07.349665 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:39:07.349665 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:39:07.349665 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:39:07.387876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:39:07] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:39:11.855421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:39:11] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:39:14.407598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:39:14] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:06.383165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:06] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:06.565391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:06] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:09.891680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:09] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:10.028019 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:19.320456 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

 Devis

\n
\n\n\n\n\n\n\n
\n

 Devis n° Devis_117

\n

 

\n

RD 21 02 
2 place de la facture 
75004 
paris 

\n

 

\n

 

\n

 Devis n° Devis_117
 Date Devis : 25/05/2024
  

\n

  Expiration : 23/08/2024
   

\n
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_85.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col widths: [None, None, '17.4276%', '79.7567%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:20] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:20.376063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:20] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:40:50.927705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:40:50] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:41:13.184920 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:41:13] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:41:13.315532 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:41:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:41:30.137766 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

 Devis

\n
\n\n\n\n\n\n\n
\n

 Devis n° Devis_117

\n

 

\n

RD 21 02 
2 place de la facture 
75004 
paris 

\n

 

\n

 

\n

 Devis n° Devis_117
 Date Devis : 25/05/2024
  

\n

  Expiration : 23/08/2024
   

\n
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_08.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col widths: [None, None, '17.4276%', '79.7567%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:41:31] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:41:31.461804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:41:31] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:42:46.033525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:42:46] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-25 20:42:46.038914 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV315004500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_30799.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:42:46] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:44:44.875056 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:44:44.875056 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:44:44.875056 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:44:44.875056 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:44:44.875056 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:45:16.578989 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:45:16.578989 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:45:16.578989 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:45:16.578989 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:45:16.578989 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:46:19.202646 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:46:19.202646 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:46:19.202646 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:46:19.202646 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:46:19.202646 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:46:26.244344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:46:26.247326 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:46:32.579879 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:32] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:46:38.858510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:38] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:46:46.037369 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:46] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:46:46.174413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:46:46] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:47:10.356248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:47:10] "GET /myclass/api/GerneratePDF_Partner_Order/v7LaHQeOthXfFhiGLjDUxLZ849nbVD1hfg/66522b8148003c733ecf03e9 HTTP/1.1" 500 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:48:16.500688 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:48:16.500688 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:48:16.500688 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:48:16.501683 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:48:16.501683 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:48:39.818674 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:48:39.818674 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:48:39.818674 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:48:39.818674 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:48:39.818674 : ++ 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\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-25 20:49:01.076118 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-25 20:49:01.076118 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-25 20:49:01.076118 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-25 20:49:01.076118 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-25 20:49:01.076118 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-25 20:49:01.433320 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_117

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_117
Date Devis : 25/05/2024
 

\n

 Expiration : 23/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Devis_117.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:02] "GET /myclass/api/GerneratePDF_Partner_Order/v7LaHQeOthXfFhiGLjDUxLZ849nbVD1hfg/66522b8148003c733ecf03e9 HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:31.077354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.078352 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.081772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.083783 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.085920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.088110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:31.652384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.653726 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:31.822697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:31.824698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:31] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.108642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.113069 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.117463 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.124626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.129378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.136919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.141918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.147381 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.152401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.157400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.162916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.170934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.172937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.183654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.188810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.194070 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.200922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.207917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.212200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.221117 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.228101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.229092 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.237544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.244348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.249520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.255140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.263943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.269383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.273182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.278133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.286310 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.291022 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.296437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.299863 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.307803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.311803 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.322219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.326215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.332974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.338979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.341913 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.347521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.351010 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.355319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.357506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.364014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.368882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.374630 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.381648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.387865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.392498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.394769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.400097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.407349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.412656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:32.416215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.422761 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.426770 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.432579 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/getRecodedClassImage_no_token/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:32.437648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:32] "POST /myclass/api/GetActiveSession_Cities_And_Distance_Formation_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:36.615849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:36.771945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.776132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.780337 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.786533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.789494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:36.799834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.807553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.818492 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:36.830995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.839173 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:36.982155 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.984421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.987682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:36.993946 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:37.000740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:37.005756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:37.018461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:37.031730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:37.038229 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:37.042782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:37] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.736051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.739046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.744040 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.747043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.754040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.759064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.764061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.772056 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.781972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.787465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.799491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.807497 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.815490 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.835156 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.844206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.851050 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:43.860644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:43.870215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:43] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:45.631941 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:49:45.635015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:45] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:45] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:49:51.170114 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Commande n° Order_84

\n

msys boite


\n

 

\n

 

\n

Commande n° Order_84
Date Commande : 16/05/2024
 

\n

 Expiration : 14/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALE4250010000.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT10000.0 €
 TVATVA 20% €
 Total12000.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Order_84.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 7.5 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, 7.5, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:49:51] "GET /myclass/api/GerneratePDF_Partner_Order/xqa52ACxojvP9i5L5BLX3243RpOEks8p8A/66461473ca33f117785495df HTTP/1.1" 200 - +INFO:root:2024-05-25 20:50:05.601778 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

 Commande

\n
\n\n\n\n\n\n\n
\n

 Commande n° Order_84

\n

 

\n

msys boite 
 
 
 

\n

 

\n

 

\n

 Commande n° Order_84
 Date Commande : 16/05/2024
  

\n

  Expiration : 14/08/2024
   

\n
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALE4250010000.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT10000.0 €
 TVATVA 20% €
 Total12000.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_33.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 7.5 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, 7.5, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col widths: [None, None, '17.4276%', '79.7567%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:root:2024-05-25 20:50:06.223999 : Send_Partner_Order_By_Email - Aucune adresse email sur la commande +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:06] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:50:30.363834 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:30] "POST /myclass/api/Update_Partner_Order_Header/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:50:30.616767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:50:30.631308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:50:30.636444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:30] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:30] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:30] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:50:38.395719 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '\n\n\n\n\n\n\n
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n

 Commande

\n
\n\n\n\n\n\n\n
\n

 Commande n° Order_84

\n

 

\n

msys boite 
 
 
 

\n

 

\n

 

\n

 Commande n° Order_84
 Date Commande : 16/05/2024
  

\n

  Expiration : 14/08/2024
   

\n
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALE4250010000.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT10000.0 €
 TVATVA 20% €
 Total12000.0 €
\n

 

\n
\n
 
\n
' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_25_05_2024_17.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:Col 0 has width 600 +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col 1 has width 7.5 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, 7.5, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col 2 has width 17.4276% +DEBUG:xhtml2pdf:Col 3 has width 79.7567% +DEBUG:xhtml2pdf:Col widths: [None, None, '17.4276%', '79.7567%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:Col 0 has width 90.0901% +DEBUG:xhtml2pdf:Col widths: ['90.0901%'] +DEBUG:xhtml2pdf:Col widths: [600.0] +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:39] "POST /myclass/api/Send_Partner_Order_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:50:39.092164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:50:39] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.423620 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.427341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.430536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.435276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.442320 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-05-25 20:51:05.443323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.444321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.459581 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.636995 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.641271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.645785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.649870 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.653863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.661951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.664429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.686966 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.695100 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.708776 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.717325 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.725892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.731339 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.735340 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.757162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.766368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:05.774029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:05.795190 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:08.608288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:08.610960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:08.624176 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:08.629191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:16.314409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:16] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:19.172517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-25 20:51:19.175533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:19] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:19] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-25 20:51:21.540670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [25/May/2024 20:51:21] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:52:51.780716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:52:51] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:52:51.952495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:52:51] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:22.171892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:22.175699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:22] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:22] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:24.839427 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:24.842585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:24.847239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:24.850796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:24.855899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:24.861134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:24.865953 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:24.870855 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:25.039104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:25.042122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:25.046799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:25.050610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:25] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:25] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:40.222870 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:40] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:43.180468 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 08:57:43.183086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:43] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:57:49.265921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:57:49] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:59:10.152609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:59:10] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:59:10.273768 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:59:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:59:15.575964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:59:15] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:59:59.060750 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:59:59] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 08:59:59.193819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 08:59:59] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:00:03.186460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:00:03] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:00:26.234796 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:00:26] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:00:26.372851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:00:26] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:00:33.428924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:00:33] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:01:11.005045 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:01:11] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:01:11.122050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:01:11] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_order.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 09:19:58.687703 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 09:19:58.687703 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 09:19:58.687703 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 09:19:58.688677 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 09:19:58.688677 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 09:20:08.556080 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 09:20:08.556080 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 09:20:08.556080 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 09:20:08.556080 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 09:20:08.556080 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 09:20:15.076450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:20:15.081450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:20:15.084450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:20:15.087938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:20:15.282856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:20:15.291025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:20:15.299521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:20:15.303533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:20:15.311468 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-05-26 09:20:15.314890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:20:15.319907 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2024-05-26 09:20:15.326118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:20:59.702533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:20:59] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:21:01.745498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:21:01.747817 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:21:01] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:21:01] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:21:05.058524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:21:05] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:21:58.304083 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:21:58] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:21:58.456316 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:21:58] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:22:48.545274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:22:48] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:23:45.692001 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:23:45] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:23:45.826901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:23:45] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.709023 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.712041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.715039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.719038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.724042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.730747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.733123 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.743672 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.898515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.902174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.905631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.911572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.917718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.925349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.931085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.947495 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.959921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.967827 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.983536 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:04] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:04.988052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.994122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:04.999545 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:05.029336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:05.034025 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:05.039021 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:05.051329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:08.128878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:08.131476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:08] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:08] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:11.209571 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n
\n

Devis n° Devis_117

\n

RD 21 02
2 place de la facture
75004
paris

\n

--- type =  Devis 

\n

-- cli RS  =  RD 21 02 

\n

-- date devis =  25/05/2024 

\n

-- date jour = 26/05/2024 

\n

-- fact adr =  2 place de la facture 

\n

-- ction paie =    

\n

-- CLIENT paie cdtion =      

\n

 

\n

Devis n° Devis_117
Date Devis : 25/05/2024
 

\n

 Expiration : 23/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Devis_117.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:11] "GET /myclass/api/GerneratePDF_Partner_Order/xqa52ACxojvP9i5L5BLX3243RpOEks8p8A/66522b8148003c733ecf03e9 HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:32.154139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:32] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:36.896583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:36] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:37.017918 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:47.882635 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:24:47.885959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:47] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:47] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:24:50.578015 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:24:50] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:25:25.331681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:25:25] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:25:27.185844 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:25:27.188389 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:25:27] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:25:27] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:25:52.744814 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:25:52] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:23.572732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:23] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:25.059715 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:26:25.063282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:25] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:25] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:28.284725 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:28] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:50.211823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:50] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:50.333930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:26:56.442290 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

 

\n

 

\n\n\n\n\n\n\n
\n

Devis n° Devis_117

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_117
Date Devis : 25/05/2024
 

\n

 Expiration : 23/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Devis_117.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,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', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:26:56] "GET /myclass/api/GerneratePDF_Partner_Order/xqa52ACxojvP9i5L5BLX3243RpOEks8p8A/66522b8148003c733ecf03e9 HTTP/1.1" 200 - +INFO:root:2024-05-26 09:27:11.749171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:27:11] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:27:13.181998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:27:13.185017 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:27:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:27:13] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_invoice.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 09:29:06.224915 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 09:29:06.225932 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 09:29:06.225932 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 09:29:06.225932 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 09:29:06.225932 : ++ 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\\partner_invoice.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 09:30:14.369986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 09:30:14.369986 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 09:30:14.370993 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 09:30:14.370993 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 09:30:14.370993 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 09:30:21.755758 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:30:21] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:10.496289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:10] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:10.619560 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:10] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:21.075453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:32:21.223860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:32:21.227398 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:32:21.231498 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:21] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:21] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:21] "POST /myclass/api/Get_List_Partner_Invoice_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:24.671422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:32:24.674951 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:24] "POST /myclass/api/Get_Given_Partner_Invoice/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:24] "POST /myclass/api/Get_Given_Partner_Invoice_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:26.872143 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

 

\n

 

\n

Facture n° Invoice_169 

\n

part nom2
adresse01
code_postal01  - adresse01
pays01

\n

 

\n

\n

Vous n\'avez pas de réduction sur cette facture.

\n

 

\n

Rappel Commande  n° Code_Session_IFOD_02_Sess_JUIN_DEV 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix Unit.Montant
CONDUIRE UN PROJET11500.01500.0
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Totaux
 Total Remise( 0 )
 Total HT
 TVA19 €
 Total1785.0 €
\n

 

\n

Condition de règlement :   :  

\n

Date échéance : 17/05/2024 

\n

 

\n

26/05/2024, 09:32:26  

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Invoice_Invoice_169.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,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', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:27] "GET /myclass/api/GerneratePDF_Partner_Invoice/xqa52ACxojvP9i5L5BLX3243RpOEks8p8A/66470d869b9af8a15c1ada55 HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:49.833743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:32:49.836965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:49] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:49] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:32:55.824763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:32:55] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:33:25.115292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:33:25] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:33:25.249938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:33:25] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:33:29.844522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:33:30] "POST /myclass/api/Send_Partner_Invoice_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:34:40.828419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:34:40.832020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:34:40] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:34:40] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:34:43.061690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:34:43] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_invoice.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 09:37:52.266028 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 09:37:52.266028 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 09:37:52.266028 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 09:37:52.266028 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 09:37:52.266028 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 09:37:52.519974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:37:53] "POST /myclass/api/Send_Partner_Invoice_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.099060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.102003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.105547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.110541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.114541 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.120212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.126926 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.139551 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.313102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.316105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:42.322751 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:42.327248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:48.996120 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:49] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:50.513602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:45:50.517028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:50] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:45:53.659032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:45:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:47:37.387493 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:47:37] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:47:37.518806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:47:37] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:47:43.550158 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n

\n

 

\n

 

\n

Facture n° Invoice_169 

\n

part nom2
adresse01
code_postal01  - adresse01
pays01

\n

date_dfactu :   17/05/2024

\n

 order_header_condition_paiement_code =  

\n

societe_nom = dddrr 

\n

 

\n

 

\n

 

\n

\n

Vous n\'avez pas de réduction sur cette facture.

\n

 

\n

Rappel Commande  n° Code_Session_IFOD_02_Sess_JUIN_DEV 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix Unit.Montant
CONDUIRE UN PROJET11500.01500.0
\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Totaux
 Total Remise( 0 )
 Total HT
 TVA19 €
 Total1785.0 €
\n

 

\n

Condition de règlement :   :  

\n

Date échéance : 17/05/2024 

\n

 

\n

26/05/2024, 09:47:43  

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Invoice_Invoice_169.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:FileObject 'data:image/png;base64,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', Basepath: 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\__dummy__' +DEBUG:xhtml2pdf:Parsing img tag, src: +DEBUG:xhtml2pdf:Attrs: {'src': , 'width': None, 'height': None, 'align': None, 'id': None} +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None] +DEBUG:PIL.PngImagePlugin:STREAM b'IHDR' 16 13 +DEBUG:PIL.PngImagePlugin:STREAM b'iCCP' 41 389 +DEBUG:PIL.PngImagePlugin:iCCP profile name b'ICC profile' +DEBUG:PIL.PngImagePlugin:Compression method 0 +DEBUG:PIL.PngImagePlugin:STREAM b'bKGD' 442 6 +DEBUG:PIL.PngImagePlugin:b'bKGD' 442 6 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'pHYs' 460 9 +DEBUG:PIL.PngImagePlugin:STREAM b'tIME' 481 7 +DEBUG:PIL.PngImagePlugin:b'tIME' 481 7 (unknown) +DEBUG:PIL.PngImagePlugin:STREAM b'IDAT' 500 5435 +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:47:43] "GET /myclass/api/GerneratePDF_Partner_Invoice/xqa52ACxojvP9i5L5BLX3243RpOEks8p8A/66470d869b9af8a15c1ada55 HTTP/1.1" 200 - +INFO:root:2024-05-26 09:48:01.791130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:01] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:48:07.710576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:07] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:48:07.838644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:07] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:48:15.622505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:48:15.625797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:15] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:15] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:48:36.608619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:48:37] "POST /myclass/api/Send_Partner_Invoice_By_Email/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:49:38.514223 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:49:38] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:51:42.678475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:51:42] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:51:43.756290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:51:43.760292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:51:43] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:51:43] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:52:48.043348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:52:48] "GET /myclass/api/Global_MySy_Cron_Traitement HTTP/1.1" 308 - +INFO:root:2024-05-26 09:52:48.048624 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_116

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_116
Date Devis : 24/05/2024
 

\n

 Expiration : 22/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV315004500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT4500.0 €
 TVATVA 20% €
 Total5400.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_50709.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +DEBUG:xhtml2pdf:pisaDocument options: + src = '

 

\n\n\n\n\n\n\n\n\n\n
 
\n

Devis n° Devis_117

\n

RD 21 02
2 place de la facture
75004
paris

\n

 

\n

 

\n

Devis n° Devis_117
Date Devis : 25/05/2024
 

\n

 Expiration : 23/08/2024
 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionSession QtéPrix Unit.Montant
 
ASSISTANT D’ADMINISTRATION ET DE COMMUNICATION COMMERCIALEIFOD_02_Sess_2022-2023225005000.0
 
CONDUIRE UN PROJETIFOD_02_Sess_RESA_DEV115001500.0
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
 Total Remise( 0 )
 Total HT6500.0 €
 TVATVA 20% €
 Total7800.0 €
\n

 

\n
\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Devis_43598_02047.pdf'> + path = None + link_callback = None + xhtml = False + context_meta = None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None, None, None, None] +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col 2 has width 20.3259% +DEBUG:xhtml2pdf:Col 3 has width 20.3259% +DEBUG:xhtml2pdf:Col widths: [None, None, '20.3259%', '20.3259%'] +DEBUG:xhtml2pdf:Col widths: [None] +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:52:49] "GET /myclass/api/Global_MySy_Cron_Traitement/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.218209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.221207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.225215 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.229209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.236209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.244211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.254204 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.268964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.276501 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.285278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.294420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.303974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.314488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.324489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.336485 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.344492 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:12.351486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_Given_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:12.372497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Paiement_Condition/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Is_Partnair_Has_Digital_Signature/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/Get_List_Partner_Basic_Setup/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:54:14.946552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:54:14.949584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:14] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:54:14] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:04.724218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:04] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:20.501694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:20] "POST /myclass/api/Get_List_Partner_Document_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:22.404294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:55:22.408642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:22] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:22] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:26.292642 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:26] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:46.503839 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:46] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:48.901095 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 09:55:48.904254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:48] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:55:53.325394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:55:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:56:14.391435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:56:14] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 09:56:14.598461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 09:56:14] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:16.992738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:16.996081 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.000074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.004084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.007329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.013968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.018832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:17.026002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.035119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.043701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.051819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.063823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.073821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:17.079821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:17] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:19.180797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:19.183799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:04:19.188147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:19] "POST /myclass/api/Get_Given_Evaluation_Planification/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:19] "POST /myclass/api/Get_List_Participant_To_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:20.788365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:20] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:26.300653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:26] "POST /myclass/api/Is_Ressource_Available/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:28.878614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:28] "POST /myclass/api/Add_Note_Evaluation_Affectation_Ressource_Poste/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:29.098150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:29] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:41.524875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:41] "POST /myclass/api/Is_Ressource_Available/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:42.936095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:42] "POST /myclass/api/Add_Note_Evaluation_Affectation_Ressource_Poste/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:04:43.180973 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:04:43] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:06:49.679320 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:06:49.683755 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:06:49.687763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:06:49.692450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:06:49.698160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:06:49.703376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:06:49.717387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:06:49] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:08:29.784544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:08:29.791532 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:08:29.796529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:08:29.802535 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:08:29.808536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:08:29.816531 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:08:29.834290 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:08:29] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:12:07.773706 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:12:07.773706 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:12:07.773706 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:12:07.773706 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:12:07.773706 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:12:39.782129 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:12:39.782129 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:12:39.782129 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:12:39.782129 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:12:39.782129 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:14:11.012013 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:14:11.012013 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:14:11.012013 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:14:11.012013 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:14:11.012013 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:14:40.058213 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:14:40.058213 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:14:40.058213 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:14:40.063737 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:14:40.063737 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:15:05.512305 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:15:05.512305 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:15:05.512305 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:15:05.512305 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:15:05.512305 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:15:56.592744 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:15:56.592744 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:15:56.592744 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:15:56.592744 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:15:56.592744 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:16:35.565730 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:16:35.565730 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:16:35.565730 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:16:35.565730 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:16:35.565730 : ++ 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\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:18:44.018757 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:18:44.018757 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:18:44.018757 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:18:44.019755 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:18:44.019755 : ++ 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-05-26 10:19:51.731428 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:19:51.731428 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:19:51.732434 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:19:51.732434 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:19:51.732434 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 10:20:03.230424 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:03.233920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:03.237207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:03.388162 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:03.392161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:03.394165 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:20:03.419820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_Partner_All_Class_Few_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:03] "POST /myclass/api/Get_List_Evaluation_Planification_No_Filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:20:20.166853 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.170071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.173062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.177071 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:20:20.210328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.212552 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.216778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:20:20.219775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:20] "POST /myclass/api/Get_Default_Debut_Fin_journee_Modele_Journee/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:20:23.868084 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:23] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:20:23.883276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:20:23] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:21:02.492502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:21:03.373711 : Delete_Note_Evaluation_Ressource_Poste L'affectation est invalide +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:21:03] "POST /myclass/api/Delete_Note_Evaluation_Ressource_Poste/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation_Sequence.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 10:21:45.292795 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 10:21:45.292795 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 10:21:45.292795 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 10:21:45.292795 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 10:21:45.292795 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 10:21:45.334591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:21:45] "POST /myclass/api/Delete_Note_Evaluation_Ressource_Poste/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:21:45.393066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:21:45] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:21:54.239125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:21:54.380548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:21:54] "POST /myclass/api/get_Ressource_Info_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:21:54] "POST /myclass/api/get_Agenda_Event_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:22:07.273841 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:22:07] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:22:15.569439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:22:15] "POST /myclass/api/Get_List_note_evaluation_Ressource_Affectation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:31.318633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.321633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.326822 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.330198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.335199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.341671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.350807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:31.355045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:31.362888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:31.373948 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:31.387915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:31.400225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:36.302050 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 10:23:44.961662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:44.967173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:44.972005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:44.975021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 10:23:44.978850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:45] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 10:23:45] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:51.962164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:51.967177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:51.973654 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:51.983771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:51.991241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.003014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:52.013612 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.035780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:52.040336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.058946 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.092631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.122669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.681381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:52.686682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:52.690971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:52.700600 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:53.169101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:53.172102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:27:53.178604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:27:53.187000 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:27:53] "POST /myclass/api/LMS_Get_Partner_Data/ 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-05-26 13:33:39.964617 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 13:33:39.964617 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 13:33:39.964617 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 13:33:39.964617 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 13:33:39.964617 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 13:38:55.904627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:55.908626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:55.911628 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:56.086317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:56.092356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:56.097348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:38:56.116027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:38:56.134358 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:38:56.139494 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:38:56.159467 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:38:56.182741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:38:56.206099 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:38:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:39:36.494509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:39:36.498510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:39:36.501518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:39:36.504530 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:39:36.508767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:39:36.517777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:39:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.289950 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.293478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.295474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.299482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.306480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.313477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.322541 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.337602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:43:56.342634 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.359822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.388085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:43:56.410038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:43:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.556875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.560431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.564867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.570275 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.576348 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.583222 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.593995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.600617 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.609454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.618819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.627540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.636375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.640836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.652319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.658466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.671096 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.678372 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.681373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.695090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.710638 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:08.725445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:08.727461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Partner_Or_Default_session_step/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/Get_List_Site_Formation_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:14.763510 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:14.767517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:14.772539 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:14.775543 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:14.782714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:14.788733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:14.797516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/Get_Session_Sequence_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:14] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.427003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.430639 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.433664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.440475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.449165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.453087 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.456779 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.467397 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.661047 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.664053 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.669617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.674136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.682172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.689703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.698713 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.712555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.716688 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.724686 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:24.971903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.976122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.981991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.987014 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.994618 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:24.998076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.011589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.039698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.045182 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.050584 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.059719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.066105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.073603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.085001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.093871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.113024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.118006 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.127544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.134667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.144691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.151308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.160321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:25.184221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:25.188508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:25] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:26.239645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:26.245246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:26.251714 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:26] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:26.258730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:26] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:33.283992 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:33] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:36.634469 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:36] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:44:47.204563 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:44:48.202212 : Add_Update_UE_To_Class -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - Line : 5631 +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:44:48] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.730433 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.735211 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.741082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.750383 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.762382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.778864 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.790319 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.800647 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.802662 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.816467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.824471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.840020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.850283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.861129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.870471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.880896 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.899700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.913522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.923877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.938890 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.953507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.956507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:19.963391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:19.978013 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/Get_List_Class_domaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/Get_List_Class_Categorie/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/Get_List_Class_Niveau_Formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/Get_List_class_metier/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:20.859495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:20.864657 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:20.870284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:45:20.878702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/getRecodedClassImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:20] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:30.514232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:30] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:43.913112 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:43] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:45:44.059321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:45:44] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:00.191922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:06.973606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:06.977623 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:06.981619 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:06.986438 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:06.989429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:06.996433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:07.008801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:07.014958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:07.019959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:07.033336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:07.043500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:07.052741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:23.502253 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:23] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:24.791709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:24.795709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:24.802446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:24.806319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:46:24.814360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:24] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:24] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:24] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:24] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:44.402465 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:44] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:54.888143 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:54] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:55.015066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:55] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:46:57.641392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:46:57] "POST /myclass/api/Get_List_Unite_Enseignement_no_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:47:08.608633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:47:08] "POST /myclass/api/Add_Update_UE_To_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:47:08.751622 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:47:08] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.405651 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.411197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.420610 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.428247 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.434640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.443022 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.450647 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.459640 : Connexion du partner recid = 43598820dd270936c3d2fd822717d0f18f194b1a1b894aaf89 OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.912581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.918631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.921977 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.931418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.954767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:03.961764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:03.988806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:03] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:04.006351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:04.036368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:04.064350 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:04.144937 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:04.192887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:42.524503 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:42] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:53:44.552660 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:44.555674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:44.561951 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:44.569185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:53:44.577358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:44] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:44] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:44] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:53:44] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:56:14.045938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:14.048940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:14.053553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:14.057965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:14.064140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:14.069712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:14] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:56:22.377224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:22] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:56:25.961726 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:25.971180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:25.974259 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:25.980002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:56:25.981379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:25] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:26] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:26] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:56:26] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:57:18.936176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:18.939138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:18.942655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:18.946807 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:18.949801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:18.955231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:57:48.609446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:48.613445 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:48.615802 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:48.620291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:48.625777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:57:48.636065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:57:57.863891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:57] "POST /myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:57:59.852606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:59.854924 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:59.858942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:59.865216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:57:59.870224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:59] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:59] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:59] "POST /myclass/api/Get_List_object_owner_collection_Stored_Files/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:57:59] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2024-05-26 13:58:41.586515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:58:41.595243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:58:41.602672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:58:41.610674 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:58:41.617403 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 13:58:41.624960 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:41] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:41] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 13:58:42] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 14:00:18.268297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:00:18.270812 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:00:18.276130 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:00:18.281522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:00:18.286933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 14:00:18.296665 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:00:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2024-05-26 14:01:11.533292 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:01:11.536291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:01:11.541082 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:01:11.544286 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2024-05-26 14:01:11.551618 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2024-05-26 14:01:11.560471 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/Get_Partner_List_Partner_Client_with_filter_Like/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/Get_Partner_Object_Specific_Valide_Displayed_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [26/May/2024 14:01:11] "POST /myclass/api/Get_Statgaire_List_Partner_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-05-26 14:35:11.046140 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 14:35:11.046140 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 14:35:11.046140 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 14:35:11.046140 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 14:35:11.046140 : ++ 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-05-26 14:37:35.954968 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 14:37:35.956063 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 14:37:35.956063 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 14:37:35.956063 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 14:37:35.956063 : ++ 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-05-26 14:46:30.445155 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 14:46:30.445155 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 14:46:30.445155 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 14:46:30.445155 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 14:46:30.445155 : ++ 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-05-26 14:49:01.559130 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 14:49:01.559130 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 14:49:01.559130 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 14:49:01.559130 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 14:49:01.559130 : ++ 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-05-26 14:57:46.111067 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 14:57:46.111067 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 14:57:46.111067 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 14:57:46.111067 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 14:57:46.111067 : ++ 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-05-26 15:41:02.505258 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 15:41:02.506261 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 15:41:02.506941 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 15:41:02.506941 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 15:41:02.506941 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2024-05-26 15:41:14.230860 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 15:41:14.230860 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 15:41:14.230860 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 15:41:14.230860 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 15:41:14.230860 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2024-05-26 15:41:16.605062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 15:41:16] "POST /myclass/api/Get_List_Class_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 15:41:18.878805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 15:41:18] "POST /myclass/api/Get_List_Type_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 15:41:34.414324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 15:41:34] "POST /myclass/api/Add_Class_UE_Evaluation/ HTTP/1.1" 200 - +INFO:root:2024-05-26 15:41:34.680151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [26/May/2024 15:41:34] "POST /myclass/api/Get_List_Class_Evaluation/ 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-05-26 15:49:41.127500 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 15:49:41.127500 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 15:49:41.127500 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 15:49:41.127500 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 15:49:41.127500 : ++ 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-05-26 15:57:07.331008 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2024-05-26 15:57:07.331008 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2024-05-26 15:57:07.331008 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2024-05-26 15:57:07.331008 : ++ FLASK PORT 5001 ++ +INFO:root:2024-05-26 15:57:07.331008 : ++ 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 diff --git a/Session_Formation_Sequence.py b/Session_Formation_Sequence.py index 7d20b25..58120a1 100644 --- a/Session_Formation_Sequence.py +++ b/Session_Formation_Sequence.py @@ -2093,6 +2093,114 @@ def Delete_Sequence_Affectation_Ressource_Poste(diction): return False, " Impossible de supprimer l'affectation de la ressource à la sequence " +""" +Supprimer les affectations et reservation de ressources pour les +notes evaluation +""" + +def Delete_Note_Evaluation_Ressource_Poste(diction): + try: + + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', "_id", "note_evaluation_id", "poste", "comment", 'related_target_collection', 'related_target_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', '_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, " Toutes le information obligatoires n'ont pas été fournies" + + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + + + # Recuperation du recid du partenaire + partner_recid = mycommon.get_parnter_recid_from_token(str(token)) + if partner_recid is False: + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de récupérer le partner_recid") + return False, " Les informations d'identification sont invalides" + + local_status, my_partner_data = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner_data + + + # Verifier l'existence et la validité d'evalution à modifier + note_evaluation_id = "" + if ("note_evaluation_id" in diction.keys()): + if diction['note_evaluation_id']: + note_evaluation_id = diction['note_evaluation_id'] + + # Verifier que l'affetation existe bien + affectation_evaluation_existe_count = MYSY_GV.dbname['note_evaluation_affectation_ressource'].count_documents({'_id':ObjectId(str(diction['_id'])), + 'partner_owner_recid':str(partner_recid), + 'valide':'1', 'locked':'0'}) + + if( affectation_evaluation_existe_count != 1 ) : + mycommon.myprint(str(inspect.stack()[0][3]) + " L'affectation est invalide ") + return False, " L'affectation est invalide " + + + affectation_evaluation_existe_data = MYSY_GV.dbname[ + 'note_evaluation_affectation_ressource'].find_one( + {'_id': ObjectId(str(diction['_id'])), 'partner_owner_recid': str(partner_recid), + 'valide': '1', 'locked': '0'}) + + + + deleted_data = MYSY_GV.dbname['note_evaluation_affectation_ressource'].delete_one( + {'_id': ObjectId(str(diction['_id'])), 'valide': "1", "locked": "0", + 'partner_owner_recid': str(partner_recid)}, ) + + if (deleted_data is None): + mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de supprimer à jour cette affectation (3)") + return False, " Impossible de supprimer cette affectation (3) " + + """ + A present que la ressource a été supprimée, il faut egalement supprimer la reservation de la ressource + """ + qry_for_delete = { 'partner_owner_recid': str(affectation_evaluation_existe_data['partner_owner_recid']), + 'related_collection_recid':str(affectation_evaluation_existe_data['related_target_collection_id']), + 'related_collection':str(affectation_evaluation_existe_data['related_target_collection']), + 'session_formation_sequence_affectation_id': str(affectation_evaluation_existe_data['_id'])} + + print(" #### qry_for_delete = ", qry_for_delete) + + MYSY_GV.dbname['agenda'].delete_many(qry_for_delete) + + + return True, " L'affectation a bien été supprimée" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de supprimer l'affectation de la ressource " + + + + + """ Recuperer la liste des affectations de ressource à une sequence diff --git a/main.py b/main.py index f1481ef..bb8cc0e 100644 --- a/main.py +++ b/main.py @@ -6877,6 +6877,23 @@ def Delete_Sequence_Affectation_Ressource_Poste(): return jsonify(status=status, message=retval) + +""" +API Supprimer une affectation de ressource affectée à une evaluation +""" +@app.route('/myclass/api/Delete_Note_Evaluation_Ressource_Poste/', methods=['POST','GET']) +@crossdomain(origin='*') +def Delete_Note_Evaluation_Ressource_Poste(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Delete_Note_Evaluation_Ressource_Poste payload = ",payload) + status, retval = Session_Formation_Sequence.Delete_Note_Evaluation_Ressource_Poste(payload) + return jsonify(status=status, message=retval) + + + + + """ API Recuperer la liste des affectations de ressource à une sequence """ @@ -9629,11 +9646,10 @@ if __name__ == '__main__': /!\ Dasactivé en dev pour pas consommer de ressource pr rien. """ - - scheduler = BackgroundScheduler() + """ scheduler = BackgroundScheduler() # Create the job scheduler.add_job(func=Flask_Cron_Strip_Get_Customer_Abonnement_Data, trigger="interval", minutes=3) - scheduler.add_job(func=Internal_Global_MySy_Cron_Traitement, trigger="interval", minutes=2) + scheduler.add_job(func=Internal_Global_MySy_Cron_Traitement, trigger="interval", minutes=1) print(" ### scheduler.print_jobs() = ", scheduler.print_jobs()) # Start the scheduler @@ -9642,7 +9658,7 @@ if __name__ == '__main__': # /!\ IMPORTANT /!\ : Shut down the scheduler when exiting the app atexit.register(lambda: scheduler.shutdown()) - + """ app.run(host='localhost', port=MYSY_GV.MYSY_PORT_DEV, debug=True, threaded=True) # Create the background scheduler diff --git a/partner_invoice.py b/partner_invoice.py index 36b176c..185f08e 100644 --- a/partner_invoice.py +++ b/partner_invoice.py @@ -1705,62 +1705,14 @@ def GerneratePDF_Partner_Invoice(diction): "params": convention_dictionnary_data, } - """ - # Recuperation des données du partenaire associé à l'utilisateur connecté - local_status, local_retval = mycommon.Get_Connected_User_Partner_Data_From_RecID(my_partner['recid']) - if (local_status is False): - return local_status, local_retval - - - local_company_data = local_retval - - - # Recuperation des données de la société - company_data = {} - - company_liste_champ = ['nom', 'email', 'telephone', 'num_nda', 'website', 'adr_street', 'adr_zip', 'adr_city', - 'adr_country'] - for champ in company_liste_champ: - if (champ in local_company_data): - new_champ_name = "societe_" + str(champ) - new_field = {new_champ_name: str(local_company_data[champ])} - company_data.update(new_field) - else: - new_champ_name = "societe_" + str(champ) - new_field = {new_champ_name: ""} - company_data.update(new_field) - - # Recuperation du logo et du cachet de la société si il y en a - local_part_status, local_part_imgs = partners.getRecodedParnterImage_from_front( - {'token': str(diction['token'])}) - if (local_part_status is False): - mycommon.myprint( - str(inspect.stack()[0][3]) + " WARNING : Impossible de récuperer le logo et le cachet du partenaire ") - new_field_logo = {'societe_logo': ''} - new_field_cachet = {'societe_cachet': ''} - company_data.update(new_field_logo) - company_data.update(new_field_cachet) - else: - - local_JSON = ast.literal_eval(local_part_imgs[0]) - - new_field_logo = {'societe_logo': "data:image/png;base64," + local_JSON['logo_img']} - new_field_cachet = {'societe_cachet': "data:image/png;base64," + local_JSON['cachet_img']} - company_data.update(new_field_logo) - company_data.update(new_field_cachet) - - """ - - """ - print("Order_header_data = ", Order_header_data) - print("Order_header_lines_data = ", Order_header_lines_data) - print("company_data['params'] = ", company_data['params']) - """ + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data #sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data, company_data=company_data) - sourceHtml = contenu_doc_Template.render(params_order_header=Order_header_data, params_order_lines=Order_header_lines_data, - params=company_data['params']) + #sourceHtml = contenu_doc_Template.render(params_order_header=Order_header_data, params_order_lines=Order_header_lines_data, params=company_data['params']) + + sourceHtml = contenu_doc_Template.render(params=company_data['params']) orig_file_name = "Partner_Invoice_"+str(Order_header_data['invoice_header_ref_interne'])+".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) +"/"+ str(orig_file_name) @@ -2099,18 +2051,22 @@ def Send_Partner_Invoice_By_Email(diction): } + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data + print(" ############ convention_dictionnary_data = ", convention_dictionnary_data) #print(" #### Order_header_data = ", Order_header_data) #sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data, company_data=company_data) contenu_doc_Template = jinja2.Template(str(partner_document_INVOICE_data['contenu_doc'])) - contenuHtml = contenu_doc_Template.render(params_order_header=Order_header_data, - params_order_lines=Order_header_lines_data, - params=company_data['params']) + #contenuHtml = contenu_doc_Template.render(params_order_header=Order_header_data,params_order_lines=Order_header_lines_data, params=company_data['params']) + contenuHtml = contenu_doc_Template.render(params=company_data['params']) + contenu_doc_Template_subject = jinja2.Template(str(partner_document_INVOICE_data['sujet'])) - sujetHtml = contenu_doc_Template_subject.render(params_order_header=Order_header_data) + #sujetHtml = contenu_doc_Template_subject.render(params_order_header=Order_header_data) + sujetHtml = contenu_doc_Template_subject.render(params=company_data['params']) #print(" #### sourceHtml = ", sourceHtml) diff --git a/partner_order.py b/partner_order.py index ce8f14a..d5500fe 100644 --- a/partner_order.py +++ b/partner_order.py @@ -4477,6 +4477,25 @@ def GerneratePDF_Partner_Order(diction): if ("email" in Order_header_client_data.keys()): Order_header_data['client_email'] = Order_header_client_data['email'] + """ + Recup condition paiement id + """ + cdtion_paiement_code = "" + cdtion_paiement_id = "" + if( "order_header_condition_paiement_id" in Order_header_data.keys() and Order_header_data['order_header_condition_paiement_id']): + cdtion_paiement_data = MYSY_GV.dbname['base_partner_paiement_condition'].find_one({'_id':ObjectId(str(Order_header_data['order_header_condition_paiement_id'])), + 'valide':'1', + 'locked':'0', + } + ) + + if( cdtion_paiement_data and 'code' in cdtion_paiement_data.keys() ): + cdtion_paiement_code = str(cdtion_paiement_data['code']) + cdtion_paiement_id = str(cdtion_paiement_data['_id']) + + Order_header_data['order_header_condition_paiement_code'] = cdtion_paiement_code + Order_header_data['order_header_condition_paiement_id'] = cdtion_paiement_id + # Recuperation des details de lignes de : partner_order_line filt_class_partner_recid = {'partner_owner_recid': str(my_partner['recid'])} @@ -4515,6 +4534,31 @@ def GerneratePDF_Partner_Order(diction): user['valide'] = retval['valide'] user['locked'] = retval['locked'] + if ("order_line_session_id" in retval.keys()): + local_session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(retval['order_line_session_id'])), + 'valide': '1', + 'partner_owner_recid': my_partner['recid']}) + + if (local_session_data): + + if ("code_session" in local_session_data.keys()): + user['code_session'] = local_session_data['code_session'] + else: + user['code_session'] = "" + + if ("date_debut" in local_session_data.keys() and "date_fin" in local_session_data.keys()): + user['session_date_debut'] = local_session_data['date_debut'] + user['session_date_fin'] = local_session_data['date_fin'] + else: + user['session_date_debut'] = "" + user['session_date_fin'] = "" + else: + user['order_line_session_id'] = "" + user['code_session'] = "" + user['session_date_debut'] = "" + user['session_date_fin'] = "" + if ("order_line_montant_reduction" in retval.keys()): user['order_line_montant_reduction'] = retval['order_line_montant_reduction'] else: @@ -4599,7 +4643,33 @@ def GerneratePDF_Partner_Order(diction): return False, " Aucune ligne de détail pour cette commande " #print(" ### Order_header_lines_data = ", Order_header_lines_data) + # Creation du dictionnaire d'information à utiliser pour la creation du doc + tab_client = [] + tab_client.append(ObjectId(str(Order_header_data['order_header_client_id']))) + + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = tab_client + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data + + body = { + "params": convention_dictionnary_data, + } contenu_doc_Template = jinja2.Template(str(partner_document_CONF_ORDER_data['contenu_doc'])) @@ -4607,8 +4677,8 @@ def GerneratePDF_Partner_Order(diction): #sourceHtml = contenu_doc_Template.render(params=Order_header_data) Order_header_data['order_header_type'] = str(Order_header_data['order_header_type']).capitalize() - sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) - + #sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) + sourceHtml = contenu_doc_Template.render(params=body['params'], ) orig_file_name = "Partner_Order_"+str(Order_header_data['order_header_ref_interne'])+".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) +"/"+ str(orig_file_name) @@ -4744,6 +4814,26 @@ def Gernerate_Stock_PDF_Partner_Order(diction): if ("email" in Order_header_client_data.keys()): Order_header_data['client_email'] = Order_header_client_data['email'] + """ + Recup condition paiement id + """ + cdtion_paiement_code = "" + cdtion_paiement_id = "" + if ("order_header_condition_paiement_id" in Order_header_data.keys() and Order_header_data[ + 'order_header_condition_paiement_id']): + cdtion_paiement_data = MYSY_GV.dbname['base_partner_paiement_condition'].find_one( + {'_id': ObjectId(str(Order_header_data['order_header_condition_paiement_id'])), + 'valide': '1', + 'locked': '0', + } + ) + + if (cdtion_paiement_data and 'code' in cdtion_paiement_data.keys()): + cdtion_paiement_code = str(cdtion_paiement_data['code']) + cdtion_paiement_id = str(cdtion_paiement_data['_id']) + + Order_header_data['order_header_condition_paiement_code'] = cdtion_paiement_code + Order_header_data['order_header_condition_paiement_id'] = cdtion_paiement_id # Recuperation des details de lignes de : partner_order_line filt_class_partner_recid = {'partner_owner_recid': str(my_partner['recid'])} @@ -4782,6 +4872,31 @@ def Gernerate_Stock_PDF_Partner_Order(diction): user['valide'] = retval['valide'] user['locked'] = retval['locked'] + if ("order_line_session_id" in retval.keys()): + local_session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(retval['order_line_session_id'])), + 'valide': '1', + 'partner_owner_recid': my_partner['recid']}) + + if (local_session_data): + + if ("code_session" in local_session_data.keys()): + user['code_session'] = local_session_data['code_session'] + else: + user['code_session'] = "" + + if ("date_debut" in local_session_data.keys() and "date_fin" in local_session_data.keys()): + user['session_date_debut'] = local_session_data['date_debut'] + user['session_date_fin'] = local_session_data['date_fin'] + else: + user['session_date_debut'] = "" + user['session_date_fin'] = "" + else: + user['order_line_session_id'] = "" + user['code_session'] = "" + user['session_date_debut'] = "" + user['session_date_fin'] = "" + if ("order_line_montant_reduction" in retval.keys()): user['order_line_montant_reduction'] = retval['order_line_montant_reduction'] else: @@ -4866,7 +4981,33 @@ def Gernerate_Stock_PDF_Partner_Order(diction): return False, " Aucune ligne de détail pour cette commande ", False #print(" ### Order_header_lines_data = ", Order_header_lines_data) + # Creation du dictionnaire d'information à utiliser pour la creation du doc + tab_client = [] + tab_client.append(ObjectId(str(Order_header_data['order_header_client_id']))) + + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = tab_client + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data + + body = { + "params": convention_dictionnary_data, + } contenu_doc_Template = jinja2.Template(str(partner_document_CONF_ORDER_data['contenu_doc'])) @@ -4874,7 +5015,8 @@ def Gernerate_Stock_PDF_Partner_Order(diction): #sourceHtml = contenu_doc_Template.render(params=Order_header_data) Order_header_data['order_header_type'] = str(Order_header_data['order_header_type']).capitalize() - sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) + #sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) + sourceHtml = contenu_doc_Template.render(params=body['params'], ) orig_file_name = "Partner_Order_"+str(Order_header_data['order_header_ref_interne'])+".pdf" @@ -4973,8 +5115,6 @@ def Send_Partner_Order_By_Email(diction): 'partner_owner_recid': str( my_partner['recid'])}) - partner_document_CONF_ORDER_data_qry = {'partner_owner_recid': str(my_partner['recid']), - 'valide': '1', 'locked': '0', 'ref_interne': 'PART_ORDER', 'type_doc':'email'} #print(" ### partner_document_CONF_ORDER_data_qry = ", partner_document_CONF_ORDER_data_qry) partner_document_CONF_ORDER_data = MYSY_GV.dbname['courrier_template'].find_one( @@ -5010,6 +5150,26 @@ def Send_Partner_Order_By_Email(diction): 3]) + " - Le client est invalide") return False, " Le client est invalide" + """ + Recup condition paiement id + """ + cdtion_paiement_code = "" + cdtion_paiement_id = "" + if ("order_header_condition_paiement_id" in Order_header_data.keys() and Order_header_data[ + 'order_header_condition_paiement_id']): + cdtion_paiement_data = MYSY_GV.dbname['base_partner_paiement_condition'].find_one( + {'_id': ObjectId(str(Order_header_data['order_header_condition_paiement_id'])), + 'valide': '1', + 'locked': '0', + } + ) + + if (cdtion_paiement_data and 'code' in cdtion_paiement_data.keys()): + cdtion_paiement_code = str(cdtion_paiement_data['code']) + cdtion_paiement_id = str(cdtion_paiement_data['_id']) + + Order_header_data['order_header_condition_paiement_code'] = cdtion_paiement_code + Order_header_data['order_header_condition_paiement_id'] = cdtion_paiement_id # Recuperation des details de lignes de : partner_order_line @@ -5049,6 +5209,32 @@ def Send_Partner_Order_By_Email(diction): user['valide'] = retval['valide'] user['locked'] = retval['locked'] + if ("order_line_session_id" in retval.keys()): + local_session_data = MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(retval['order_line_session_id'])), + 'valide':'1', + 'partner_owner_recid':my_partner['recid']}) + + if( local_session_data ): + + if( "code_session" in local_session_data.keys() ): + user['code_session'] = local_session_data['code_session'] + else: + user['code_session'] = "" + + if ("date_debut" in local_session_data.keys() and "date_fin" in local_session_data.keys() ): + user['session_date_debut'] = local_session_data['date_debut'] + user['session_date_fin'] = local_session_data['date_fin'] + else: + user['session_date_debut'] = "" + user['session_date_fin'] = "" + else: + user['order_line_session_id'] = "" + user['code_session'] = "" + user['session_date_debut'] = "" + user['session_date_fin'] = "" + + + if ("order_line_montant_reduction" in retval.keys()): user['order_line_montant_reduction'] = retval['order_line_montant_reduction'] else: @@ -5133,6 +5319,35 @@ def Send_Partner_Order_By_Email(diction): 3]) + " - Aucune ligne de détail pour cette commande ") return False, " Aucune ligne de détail pour cette commande " + # Creation du dictionnaire d'information à utiliser pour la creation du doc + + tab_client = [] + tab_client.append(ObjectId(str(Order_header_data['order_header_client_id']))) + + convention_dictionnary_data = {} + new_diction = {} + new_diction['token'] = diction['token'] + new_diction['list_stagiaire_id'] = [] + new_diction['list_session_id'] = [] + new_diction['list_class_id'] = [] + new_diction['list_client_id'] = tab_client + new_diction['list_apprenant_id'] = [] + + local_status, local_retval = mycommon.Get_Dictionnary_data_For_Template(new_diction) + + if (local_status is False): + return local_status, local_retval + + convention_dictionnary_data = local_retval + + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data + + body = { + "params": convention_dictionnary_data, + } + + # print(" #### BODY = ", body) zzzz #print(" ### Order_header_lines_data = ", Order_header_lines_data) @@ -5142,8 +5357,13 @@ def Send_Partner_Order_By_Email(diction): #print(" #### Order_header_data = ", Order_header_data) Order_header_data['order_header_type'] = str(Order_header_data['order_header_type']).capitalize() - sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) - sujetHtml = str(Order_header_data['order_header_type']) + " : "+ str(Order_header_data['order_header_ref_interne']) + #sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) + sourceHtml = contenu_doc_Template.render(params=body['params'], ) + + #sujetHtml = str(Order_header_data['order_header_type']) + " : "+ str(Order_header_data['order_header_ref_interne']) + + sujetHtml = contenu_doc_Template_subject.render(params=body['params'], ) + new_model_courrier_with_code_tag = str( sourceHtml) + "

Signature Client
 


" \ @@ -6493,10 +6713,6 @@ def Send_Quotation_Remind_Level1(diction): convention_dictionnary_data = local_retval - body = { - "params": convention_dictionnary_data, - } - """ # Recuperer le modele de courrier pour la relance niveau 1 des devis : @@ -6563,6 +6779,26 @@ def Send_Quotation_Remind_Level1(diction): if( "email" in contact_communication.keys() and contact_communication['email']): tab_emails_destinataire.append(str(contact_communication['email'])) + """ + Recup condition paiement id + """ + cdtion_paiement_code = "" + cdtion_paiement_id = "" + if ("order_header_condition_paiement_id" in Order_header_data.keys() and Order_header_data[ + 'order_header_condition_paiement_id']): + cdtion_paiement_data = MYSY_GV.dbname['base_partner_paiement_condition'].find_one( + {'_id': ObjectId(str(Order_header_data['order_header_condition_paiement_id'])), + 'valide': '1', + 'locked': '0', + } + ) + + if (cdtion_paiement_data and 'code' in cdtion_paiement_data.keys()): + cdtion_paiement_code = str(cdtion_paiement_data['code']) + cdtion_paiement_id = str(cdtion_paiement_data['_id']) + + Order_header_data['order_header_condition_paiement_code'] = cdtion_paiement_code + Order_header_data['order_header_condition_paiement_id'] = cdtion_paiement_id # Recuperation des details de lignes de : partner_order_line filt_class_partner_recid = {'partner_owner_recid': str(my_partner['recid'])} @@ -6601,6 +6837,31 @@ def Send_Quotation_Remind_Level1(diction): user['valide'] = retval['valide'] user['locked'] = retval['locked'] + if ("order_line_session_id" in retval.keys()): + local_session_data = MYSY_GV.dbname['session_formation'].find_one( + {'_id': ObjectId(str(retval['order_line_session_id'])), + 'valide': '1', + 'partner_owner_recid': my_partner['recid']}) + + if (local_session_data): + + if ("code_session" in local_session_data.keys()): + user['code_session'] = local_session_data['code_session'] + else: + user['code_session'] = "" + + if ("date_debut" in local_session_data.keys() and "date_fin" in local_session_data.keys()): + user['session_date_debut'] = local_session_data['date_debut'] + user['session_date_fin'] = local_session_data['date_fin'] + else: + user['session_date_debut'] = "" + user['session_date_fin'] = "" + else: + user['order_line_session_id'] = "" + user['code_session'] = "" + user['session_date_debut'] = "" + user['session_date_fin'] = "" + if ("order_line_montant_reduction" in retval.keys()): user['order_line_montant_reduction'] = retval['order_line_montant_reduction'] else: @@ -6685,6 +6946,15 @@ def Send_Quotation_Remind_Level1(diction): 3]) + " - Aucune ligne de détail pour cette commande ") return False, " Aucune ligne de détail pour cette commande " + convention_dictionnary_data['order_header'] = Order_header_data + convention_dictionnary_data['order_lines'] = Order_header_lines_data + + body = { + "params": convention_dictionnary_data, + } + + #print(" #### BODY = ", body) zzzz + # print(" ### Order_header_lines_data = ", Order_header_lines_data) # Traitement de l'eventuel fichier joint @@ -6707,11 +6977,10 @@ def Send_Quotation_Remind_Level1(diction): # print(" #### Order_header_data = ", Order_header_data) Order_header_data['order_header_type'] = str(Order_header_data['order_header_type']).capitalize() - sourceHtml = contenu_doc_Template.render(params=Order_header_data, - param_order_lines=Order_header_lines_data) + sourceHtml = contenu_doc_Template.render(params=body['params'],) sujet_doc_Template = jinja2.Template(str(partner_document_QUOTATION_REMIND_data['sujet'])) - sujetHtml = sujet_doc_Template.render(params=Order_header_data) + sujetHtml = sujet_doc_Template.render(params=body['params'],) ### diff --git a/prj_common.py b/prj_common.py index 8c438e7..3cb9747 100644 --- a/prj_common.py +++ b/prj_common.py @@ -4863,7 +4863,9 @@ def Get_Dictionnary_data_For_Template(diction): list_client_data = [] tab_client_id = diction['list_client_id'] - client_liste_champ = ['raison_sociale', 'nom', 'email', 'adr_adresse', 'adr_code_postal', 'adr_ville', 'adr_code_postal', 'adr_pays'] + client_liste_champ = ['raison_sociale', 'nom', 'email', 'adr_adresse', 'adr_code_postal', 'adr_ville', 'adr_code_postal', 'adr_pays', + 'invoice_email', 'invoice_nom', 'invoice_siret', 'invoice_adresse', 'invoice_ville', 'invoice_code_postal', + 'invoice_pays'] for client_data in MYSY_GV.dbname['partner_client'].find({'_id': {'$in': tab_client_id, }, 'valide': '1', @@ -4917,6 +4919,7 @@ def Get_Dictionnary_data_For_Template(diction): new_client_data["list_contact_communication"] = list_contact_communication + list_client_data.append(new_client_data)