diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 26abeb8..e1855aa 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,10 +1,14 @@ - + + + + + @@ -427,7 +431,6 @@ - @@ -452,6 +455,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index efa15ff..541da0e 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -1608,18 +1608,18 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste # field_list. ''' - field_list = ['token', 'code_session', 'class_internal_url'] + field_list = ['token', 'session_id', 'class_internal_url'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: mycommon.myprint(str(inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas, Creation participants annulée") - return False, " Verifier votre API" + return False, " Verifier votre API, Toutes les informations techniques ne sont pas fournies" ''' Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, On controle que les champs obligatoires sont presents dans la liste ''' - field_list_obligatoire = ['token', 'code_session', 'class_internal_url'] + field_list_obligatoire = ['token', 'session_id', 'class_internal_url'] for val in field_list_obligatoire: if val not in diction: @@ -1643,11 +1643,10 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): return "Err_Connexion", " La session de connexion n'est pas valide" - - code_session = "" - if ("code_session" in diction.keys()): - if diction['code_session']: - code_session = diction['code_session'] + session_id = "" + if ("session_id" in diction.keys()): + if diction['session_id']: + session_id = diction['session_id'] class_internal_url = "" if ("class_internal_url" in diction.keys()): @@ -1655,6 +1654,34 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): class_internal_url = diction['class_internal_url'] + # Verification de l'existance de la session + ## Verification de l'existance de session et recuperation du "code_session" + session_count = MYSY_GV.dbname['session_formation'].count_documents( + {'class_internal_url': str(class_internal_url), 'valide': '1', + '_id': ObjectId(str(session_id)), 'partner_owner_recid': str(partner_recid)}) + + if (session_count <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(session_id) + " : ' Cette session n'est pas valide ") + return False, " Code de la session de formation n'est pas valide " + + if (session_count > 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(session_id) + " : ' Cette session existe en double ") + return False, " Les données de la session de formation sont incohérentes " + + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'class_internal_url': str(class_internal_url), 'valide': '1', + '_id': ObjectId(str(session_id)), 'partner_owner_recid': str(partner_recid)}) + + if( "code_session" not in session_data.keys() ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Cette session de formation n'a pas de code_session ") + return False, " Cette session de formation n'a pas de code_session " + + + code_session = session_data['code_session'] + # Verification de l'existance de la formation (class_internal_url) tmp_count = MYSY_GV.dbname['myclass'].count_documents({'internal_url': str(class_internal_url), 'valide': '1', 'locked':'0', 'partner_owner_recid':str(partner_recid)}) @@ -1664,23 +1691,16 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(class_internal_url) + " : ' Cette formation n'est pas valide ") return False, " Cette formation n'est pas valide " + MyClass_Data = MYSY_GV.dbname['myclass'].find_one({'internal_url': str(class_internal_url), 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(partner_recid)}) - ## Verification de l'existance de session et recuperation de de "_id" - session_count = MYSY_GV.dbname['session_formation'].count_documents({'class_internal_url':str(class_internal_url), 'valide': '1', - 'code_session':str(code_session), 'partner_owner_recid':str(partner_recid)}) - if (session_count <= 0): + if( "external_code" not in MyClass_Data.keys()): mycommon.myprint( - str(inspect.stack()[0][3]) + " -" + str(code_session) + " : ' Cette session n'est pas valide ") - return False, " La session de formation "+str(code_session)+" n'est pas valide " + str(inspect.stack()[0][3]) + " -" + str(class_internal_url) + " : ' Cette formation n'est pas valide (2)") + return False, " Cette formation n'est pas valide (2)" - if (session_count > 1): - mycommon.myprint( - str(inspect.stack()[0][3]) + " -" + str(code_session) + " : ' Cette session existe en double ") - return False, " La session de formation "+str(code_session)+" n'est est incohérente " - - session_data = MYSY_GV.dbname['session_formation'].find_one( - {'class_internal_url': str(class_internal_url), 'valide': '1', - 'code_session': str(code_session), 'partner_owner_recid': str(partner_recid)}, {'_id':1}) + MyClass_external_code = MyClass_Data['external_code'] status, saved_file = mycommon.Upload_Save_CSV_File(file, Folder) @@ -1692,14 +1712,25 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): #print(" Lecture du fichier : "+saved_file) nb_line = 0 + """" + update du 31/08/23 : Controle de l'integrité du fichier avant import + """ + local_controle_status, local_controle_message = Controle_AddStagiairetoClass_mass(saved_file, Folder,diction) + + if (local_controle_status is False): + return local_controle_status, local_controle_message + + print(" #### local_controle_message = ", local_controle_message) + df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') df = df.fillna('') # Dictionnaire des champs utilisables ''' # Verification que les noms des colonne sont bien corrects" ''' - field_list = ['prenom', 'nom', 'employeur', 'telephone', 'email', 'modefinancement', - 'opco', 'status', 'prix', 'adresse', 'code_postal', 'ville', 'pays', 'client_rattachement_email', 'client_rattachement_nom'] + field_list = ['formation_code_externe', 'code_session', 'prenom', 'nom', 'employeur', + 'telephone', 'email', 'modefinancement','opco', 'status', 'prix', 'adresse', 'code_postal', 'ville', + 'pays', 'client_rattachement_email', 'client_rattachement_nom'] # Controle du nombre de lignes dans le fichier. @@ -1715,7 +1746,7 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] @@ -1762,6 +1793,27 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): modefinancement = str(df['modefinancement'].values[n]) mydata['modefinancement'] = modefinancement + formation_code_externe = "" + if ("formation_code_externe" in df.keys()): + if (str(df['formation_code_externe'].values[n])): + formation_code_externe = str(df['formation_code_externe'].values[n]).strip() + + if( str(formation_code_externe).lower() != str(MyClass_external_code).lower()): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Le code externe de la formation" + str(df['formation_code_externe'].values[n]) + " ne correspond pas la formation en cours") + return False, " Le code externe de la formation" + str(df['formation_code_externe'].values[n]) + " ne correspond pas la formation en cours" + + local_code_session = "" + if ("code_session" in df.keys()): + if (str(df['code_session'].values[n])): + local_code_session = str(df['code_session'].values[n]).strip() + + if (str(local_code_session).lower() != str(code_session).lower()): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Le code session de la formation" + str( + df['code_session'].values[n]) + " ne correspond pas au code de la session en cours") + return False, " Le code externer de la formation" + str( + df['code_session'].values[n]) + " ne correspond pas au code de la session en cours" opco = "" if ("opco" in df.keys()): @@ -1873,7 +1925,319 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): return False, "Impossible d'importer les participants en masse " +""" +Controle du fichier à importer avant import +""" +def Controle_AddStagiairetoClass_mass(saved_file=None, Folder=None, diction=None): + try: + ''' + # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés + # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API + # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste + # field_list. + ''' + field_list = ['token', 'session_id', 'class_internal_url'] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas, Creation participants annulée") + return False, " Verifier votre API, Toutes les informations techniques ne sont pas fournies" + + ''' + Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, + On controle que les champs obligatoires sont presents dans la liste + ''' + field_list_obligatoire = ['token', 'session_id', 'class_internal_url'] + + 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, " Verifier votre API, Toutes les informations techniques ne sont pas fournies" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + partner_recid = mycommon.get_parnter_recid_from_token(my_token) + if (partner_recid is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - partner_recid KO : Impossible d'importer la liste des participants ") + return False, " Les information de connexion sont incorrectes. Impossible d'importer la liste des participants" + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", my_token) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + session_id = "" + if ("session_id" in diction.keys()): + if diction['session_id']: + session_id = diction['session_id'] + + class_internal_url = "" + if ("class_internal_url" in diction.keys()): + if diction['class_internal_url']: + class_internal_url = diction['class_internal_url'] + + # Verification de l'existance de la session + ## Verification de l'existance de session et recuperation du "code_session" + session_count = MYSY_GV.dbname['session_formation'].count_documents( + {'class_internal_url': str(class_internal_url), 'valide': '1', + '_id': ObjectId(str(session_id)), 'partner_owner_recid': str(partner_recid)}) + + if (session_count <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(session_id) + " : ' Cette session n'est pas valide ") + return False, " Code de la session de formation n'est pas valide " + + if (session_count > 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(session_id) + " : ' Cette session existe en double ") + return False, " Les données de la session de formation sont incohérentes " + + session_data = MYSY_GV.dbname['session_formation'].find_one( + {'class_internal_url': str(class_internal_url), 'valide': '1', + '_id': ObjectId(str(session_id)), 'partner_owner_recid': str(partner_recid)}) + + if ("code_session" not in session_data.keys()): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Cette session de formation n'a pas de code_session ") + return False, " Cette session de formation n'a pas de code_session " + + code_session = session_data['code_session'] + + # Verification de l'existance de la formation (class_internal_url) + tmp_count = MYSY_GV.dbname['myclass'].count_documents({'internal_url': str(class_internal_url), 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(partner_recid)}) + + # logging.info(" TMP = "+str(tmp)) + if (tmp_count <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(class_internal_url) + " : ' Cette formation n'est pas valide ") + return False, " Cette formation n'est pas valide " + + MyClass_Data = MYSY_GV.dbname['myclass'].find_one({'internal_url': str(class_internal_url), 'valide': '1', + 'locked': '0', + 'partner_owner_recid': str(partner_recid)}) + + if ("external_code" not in MyClass_Data.keys()): + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str( + class_internal_url) + " : ' Cette formation n'est pas valide (2)") + return False, " Cette formation n'est pas valide (2)" + + MyClass_external_code = MyClass_Data['external_code'] + + + # " Lecture du fichier " + # print(" Lecture du fichier : "+saved_file) + nb_line = 0 + + df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') + df = df.fillna('') + # Dictionnaire des champs utilisables + ''' + # Verification que les noms des colonne sont bien corrects" + ''' + field_list = ['formation_code_externe', 'code_session', 'prenom', 'nom', 'employeur', + 'telephone', 'email', 'modefinancement', 'opco', 'status', 'prix', 'adresse', 'code_postal', + 'ville', + 'pays', 'client_rattachement_email', 'client_rattachement_nom'] + + # Controle du nombre de lignes dans le fichier. + total_rows = len(df) + if (total_rows > MYSY_GV.MAX_PARTICIPANT_BY_CSV): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le fichier comporte plus de " + str( + MYSY_GV.MAX_PARTICIPANT_BY_CSV) + " lignes.") + return False, " Le fichier comporte plus de " + str(MYSY_GV.MAX_PARTICIPANT_BY_CSV) + " lignes." + + # print(df.columns) + for val in df.columns: + if str(val).lower() not in field_list: + mycommon.myprint( + str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" + + # Verification des champs obligatoires dans le fichier + field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] + + for val in field_list_obligatoire_file: + if val not in df.columns: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire") + return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire " + + """ + # Recuperation des info de la session. + session_data = MYSY_GV.dbname['session_formation'].find_one({'formation_session_id':str(session_id)}) + if( session_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La session de formation n'existe pas : Impossible d'importer la liste des participants ") + return False, "la session de formation n'existe pas. Impossible d'importer la liste des participants" + + #print(" #### session_data = ",session_data) + """ + x = range(0, total_rows) + for n in x: + mydata = {} + mydata['prenom'] = str(df['prenom'].values[n]) + mydata['nom'] = str(df['nom'].values[n]) + mydata['employeur'] = str(df['employeur'].values[n]) + mydata['telephone'] = str(df['telephone'].values[n]) + mydata['email'] = str(df['email'].values[n]) + regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' + if (not re.fullmatch(regex, str(df['email'].values[n]))): + mycommon.myprint( + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" + + mydata['session_id'] = str(session_data['_id']) + mydata['token'] = str(my_token) + + modefinancement = "" + if ("modefinancement" in df.keys()): + if (str(df['modefinancement'].values[n])): + modefinancement = str(df['modefinancement'].values[n]) + mydata['modefinancement'] = modefinancement + + formation_code_externe = "" + if ("formation_code_externe" in df.keys()): + if (str(df['formation_code_externe'].values[n])): + formation_code_externe = str(df['formation_code_externe'].values[n]).strip() + + if (str(formation_code_externe).lower() != str(MyClass_external_code).lower()): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Le code externe de la formation" + str( + df['formation_code_externe'].values[ + n]) + " ne correspond pas la formation en cours") + return False, " Le code externe de la formation" + str( + df['formation_code_externe'].values[n]) + " ne correspond pas la formation en cours" + + local_code_session = "" + if ("code_session" in df.keys()): + if (str(df['code_session'].values[n])): + local_code_session = str(df['code_session'].values[n]).strip() + + if (str(local_code_session).lower() != str(code_session).lower()): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Le code session de la formation" + str( + df['code_session'].values[n]) + " ne correspond pas au code de la session en cours") + return False, " Le code externer de la formation" + str( + df['code_session'].values[n]) + " ne correspond pas au code de la session en cours" + + opco = "" + if ("opco" in df.keys()): + if (str(df['opco'].values[n])): + opco = str(df['opco'].values[n]) + mydata['opco'] = opco + + adresse = "" + if ("adresse" in df.keys()): + if (str(df['adresse'].values[n])): + adresse = str(df['adresse'].values[n]) + mydata['adresse'] = adresse + + code_postal = "" + if ("code_postal" in df.keys()): + if (str(df['code_postal'].values[n])): + code_postal = str(df['code_postal'].values[n]) + mydata['code_postal'] = code_postal + + ville = "" + if ("ville" in df.keys()): + if (str(df['ville'].values[n])): + ville = str(df['ville'].values[n]) + mydata['ville'] = ville + + pays = "" + if ("pays" in df.keys()): + if (str(df['pays'].values[n])): + pays = str(df['pays'].values[n]) + mydata['pays'] = pays + + """" + Gestion du client de rattachement/ + Avec l'email et le nom, on va aller recuperer l'_id du client + """ + client_rattachement_email = "" + if ("client_rattachement_email" in df.keys()): + if (str(df['client_rattachement_email'].values[n]) and str( + df['client_rattachement_email'].values[n]) != "nan"): + client_rattachement_email = str(df['client_rattachement_email'].values[n]) + + client_rattachement_nom = "" + if ("client_rattachement_nom" in df.keys() and str(df['client_rattachement_nom'].values[n]) != "nan"): + if (str(df['client_rattachement_nom'].values[n])): + client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) + + if (client_rattachement_email and client_rattachement_nom): + local_client_retval_qry = {'email': str(client_rattachement_email), + 'nom': str(client_rattachement_nom), 'valide': '1', + 'locked': '0', 'partner_recid': str(partner_recid)} + + local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents( + local_client_retval_qry) + + if (local_client_retval_count > 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : " + str( + n) + ". Plusieurs clients correspondent aux critère de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email)) + return False, "Ligne : " + str( + n) + ". Plusieurs clients correspondent aux critère de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email) + + if (local_client_retval_count < 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : " + str( + n) + ". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email)) + return False, "Ligne : " + str(n) + ". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email) + + local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) + if (local_client_retval_data is not None): + mydata['client_rattachement_id'] = local_client_retval_data['_id'] + + mydata['status'] = str(df['status'].values[n]).strip() + if (str(mydata['status']) != "0" and str(mydata['status']) != "1" and str(mydata['status']) != "2"): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le champs 'status' de ligne " + str( + n) + " est incorrecte. Valeurs acceptées : 0,1,2") + return False, " Le champs status de la ligne " + str( + n) + " est incorrecte. Valeurs acceptées : 0,1,2" + + if (str(df['status'].values[n]).strip() == "1"): + mydata['inscription_validation_date'] = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + + mydata['class_internal_url'] = str(class_internal_url) + + local_price = str(df['prix'].values[n]).strip() + local_status, new_price = mycommon.IsFloat(local_price) + if (local_status is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le champs 'prix' de ligne " + str(n) + " est incorrecte.") + return False, " Le champs prix de ligne " + str(n) + " est incorrecte. " + + mydata['price'] = local_price + + + + return True, str(total_rows) + " participants lus dans le fichier excel" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint( + str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de controler le fichier " """ @@ -1980,7 +2344,7 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv.La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] @@ -2296,7 +2660,7 @@ def Controle_AddStagiairetoClass_mass_for_many_session(saved_file=None, Folder=N if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] @@ -3816,7 +4180,7 @@ def DeleteAttendeeInscription(diction): # Recuperation des données de la session local_session = MYSY_GV.dbname['session_formation'].find_one( - {'code_session': str(diction['session_id']), 'class_internal_url': str(diction['class_internal_url']), 'valide':'1',}) + {'_id': ObjectId(str(diction['session_id'])), 'class_internal_url': str(diction['class_internal_url']), 'valide':'1',}) if (local_session is None): mycommon.myprint(str(inspect.stack()[0][3]) + " - Impossible de recuperer les données de la session ") diff --git a/Log/log_file.log b/Log/log_file.log index b74adef..2889a5f 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1802826,3 +1802826,2254 @@ INFO:root:2023-09-13 18:00:09.180996 : ++ FLASK PORT 5001 ++ INFO:root:2023-09-13 18:00:09.180996 : ++ LMS_BAS_URL mysy-training.com/ ++ WARNING:werkzeug: * Debugger is active! INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 09:08:05.393696 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 09:08:05.394695 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 09:08:05.394695 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 09:08:05.394695 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 09:08:05.394695 : ++ 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:2023-09-14 09:08:23.218766 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 09:08:23.218766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 09:08:23.218766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 09:08:23.218766 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 09:08:23.218766 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 09:08:42.316151 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:08:42.317332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:08:42.318850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:08:54] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:08:54] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:08:54] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:08:59.236298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:09:05.478696 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:09:05] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:23.490208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:23.492722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:23.493720 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:23] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:23] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:23] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.535046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.536061 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.954344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.957365 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.961883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.962894 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.965908 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.972246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.979044 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.981538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.990535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:24] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:24.993074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:24.996649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:25.001238 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.005547 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.014212 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:25.016701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.022004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.026645 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.031107 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:25.034279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:25.041516 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:25] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:33.260127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:33.423553 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:33.427972 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:33.433254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:12:33.436972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:33.451347 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:12:33.524575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:12:33] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:13:01.627388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:13:01] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:13:01.631550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:13:01] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:13:01.635085 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:13:01] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:13:09.461524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:13:09] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:20:25.850884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:20:25] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:20:25.856057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:20:25.859504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:20:25] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:20:25] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:21:00.461006 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:21:00.464042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:21:00.466558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:21:00.475122 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:21:00.586420 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:21:00.590191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:21:00.592276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:00] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:21:04.049216 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:21:04] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:16.113842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:16.118843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:24:16.120838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:16] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:30.025453 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:24:30.028108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:30.032121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:24:30.039736 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:30.143139 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:30.147456 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:24:30.150468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/Get_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:24:33.897367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:24:33] "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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 09:58:08.997280 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 09:58:08.998772 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 09:58:08.998772 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 09:58:08.998772 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 09:58:08.998772 : ++ 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:2023-09-14 09:58:18.515365 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 09:58:18.515365 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 09:58:18.515365 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 09:58:18.515365 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 09:58:18.515365 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 09:58:28.938880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:58:28.943103 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:58:28.946124 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:28] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:58:43.858727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:58:43.861740 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:58:43.866741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:58:43.873741 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:58:43.978697 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:43] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:58:43.988073 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 09:58:43.992076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:43] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:58:44] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 09:59:13.951917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 09:59:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:01:02.659188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:01:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:01:02.667756 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:01:02.671074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:01:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:01:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:11.983861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:11] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:11.987889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:06:11.992367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:11] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:12] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:54.746035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:54.762679 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:06:54.765675 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:06:54.772053 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:54.907482 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:06:54.910785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:06:54.912940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:06:54] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:07:02.011881 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:07:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:07:50.565065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:07:50] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:07:50.569867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:07:50.576200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:07:50] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:07:50] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:08:15.554765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:08:15] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:09:40.902949 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:09:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:09:40.910329 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:09:40.915324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:09:40] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:09:40] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:13:58.034814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:13:58.038819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:13:58.042899 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:13:58.051050 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:13:58.217410 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:13:58.222484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:13:58.224921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:13:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:15:56.544741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:15:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:15:56.554636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:15:56.557507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:15:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:15:56] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:02.816245 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:16:02.822240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:16:02.826244 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:02.834246 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:02.946568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:02.950062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:16:02.953564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/Get_Personnalisable_Collection_Fields_v2/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:11.686974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:11] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:16.633218 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:16] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:47.551764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:47] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:48.467396 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:16:59.660896 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:16:59.674561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:16:59.686561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:59] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:59] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:16:59] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:01.080860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:01.084857 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:01.089371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:01.096229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:01.116669 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:01.170363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:01] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:03.646319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:03.651003 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:03.657043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:03.662029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:03] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:03] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:05.762087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 10:17:05.765118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:05] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:05] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2023-09-14 10:17:16.161749 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n


2, place des magnolis
77680
roissy-en-brie

\n

 

\n

TEST : commande

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix
PRATICIEN EN OLFACTOTHERAPIE53
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Part_Order_Order_26.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:Col widths: [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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:17:17] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 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:2023-09-14 10:19:19.827892 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:19:19.827892 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:19:19.827892 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:19:19.827892 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:19:19.827892 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 10:19:19.871414 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n


2, place des magnolis
77680
roissy-en-brie

\n

 

\n

TEST : commande

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix
PRATICIEN EN OLFACTOTHERAPIE53
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Part_Order_Order_26.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:Col widths: [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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:19:20] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 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:2023-09-14 10:30:31.007000 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:30:31.008000 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:30:31.008000 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:30:31.008000 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:30:31.008000 : ++ 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:2023-09-14 10:30:39.673740 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:30:39.673740 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:30:39.673740 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:30:39.673740 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:30:39.673740 : ++ 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:2023-09-14 10:31:16.249878 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:31:16.249878 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:31:16.249878 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:31:16.249878 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:31:16.249878 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 10:31:16.296415 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n


2, place des magnolis
77680
roissy-en-brie

\n

 

\n

TEST : commande

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix
PRATICIEN EN OLFACTOTHERAPIE53
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Order_26.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:Col widths: [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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 10:31:16] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 10:56:44.577168 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:56:44.577168 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:56:44.578170 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:56:44.578170 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:56:44.578170 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 10:58:00.371722 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 10:58:00.371722 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 10:58:00.371722 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 10:58:00.371722 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 10:58:00.371722 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 11:00:13.052106 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:00:13.052106 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:00:13.052106 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:00:13.052106 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:00:13.052106 : ++ 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:2023-09-14 11:01:10.071100 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:01:10.072108 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:01:10.072108 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:01:10.072108 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:01:10.072108 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 11:06:54.799312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:06:54] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:06:54.803984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:06:54.807415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:06:54] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:06:54] "POST /myclass/api/Get_All_Personnalisable_Collection_Fields/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:06.326280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:06] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:06.331284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:06] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:31.629166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:07:31.633160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:07:31.637023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:31.643249 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:31.793695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:31] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:31.798091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:31] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:38.556894 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:07:51.049654 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:07:51] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:09:30.437605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:09:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:09:30.441278 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:09:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:09:38.612524 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:09:38] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:09:45.019229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:09:45] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:31.280280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:31] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:31.283269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:31] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:37.796949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:10:37.800261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:10:37.803789 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:37] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:37.813561 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:37] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:37] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:37.984667 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:37] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:37.993416 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:38] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:44.337838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:44] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:10:50.200510 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:10:50] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:11:30.922480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:11:30] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:11:40.982649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:11:40] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:12:42.818833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:12:42] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:12:43.770167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:12:43] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:12:50.861808 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n

 sdfsd

\n

 dfdsfdsfds 
2, place des magnolis
77680
roissy-en-brie

\n

 

\n

TEST : commande --- 28/10/2023  +  dfdsfdsfds 

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrix
PRATICIEN EN OLFACTOTHERAPIE53
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Order_26.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:Col widths: [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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:12:51] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 HTTP/1.1" 200 - +INFO:root:2023-09-14 11:13:28.511289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:13:28] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:14:01.696966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:14:01] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:14:02.494132 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:14:02] "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:2023-09-14 11:14:41.258153 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:14:41.258153 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:14:41.258153 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:14:41.258153 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:14:41.258153 : ++ 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:2023-09-14 11:14:56.049018 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:14:56.049018 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:14:56.049018 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:14:56.049018 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:14:56.049018 : ++ 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:2023-09-14 11:15:21.337191 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:15:21.337191 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:15:21.337191 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:15:21.337191 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:15:21.337191 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 11:16:35.759942 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:16:35.763271 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:16:35.765466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:16:35.776831 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:16:35.884105 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:35] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:16:35.888104 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:35] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:16:40.690484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:40] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:16:45.626554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:16:45] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:17:56.622923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:17:56] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:17:57.515849 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:17:57] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:18:03.323078 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n

 sdfsd

\n

 dfdsfdsfds 
2, place des magnolis
77680
roissy-en-brie

\n

 

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrixMontant
 
PRATICIEN EN OLFACTOTHERAPIE53 15.000 
 
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222 264.000 
 
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Order_26.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: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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:18:03] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 HTTP/1.1" 200 - +INFO:root:2023-09-14 11:18:38.780363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:18:38] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:19:53.791821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:19:53] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:19:54.489411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:19:54] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:19:58.617338 : Security check : IP adresse '127.0.0.1' connected +DEBUG:xhtml2pdf:pisaDocument options: + src = '

Confirmation de votre commande n° Order_26

\n

 sdfsd

\n

 dfdsfdsfds 
2, place des magnolis
77680
roissy-en-brie

\n

 

\n

Commande n°
Date de commande : 20/09/2023
 

\n

 Expiration : 28/10/2023
 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
DescriptionQtyPrixReductionMontant HT
  
PRATICIEN EN OLFACTOTHERAPIE53 0.900  15.000 
  
PRATICIEN EN AROMATHERAPIE INTEGRATIVE1222 26.400  264.000 
  
\n

 

\n

 

\n

 

\n

 

\n

 

\n\n\n\n\n\n\n\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
Montant Remise( 18.878 )
Total HT232.822
TVATVA 20% €
Total279.387 €
\n
\n

 

\n

Cordialement

MySy Training Technology
Téléphone : +331 77 00 38 57
Email : contact@mysy-training.com
Site : https://www.mysy-training.com/

\n

 

' + dest = <_io.BufferedRandom name='./temp_direct/Partner_Order_Order_26.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:None +DEBUG:xhtml2pdf:Col widths: [None, 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:None +DEBUG:xhtml2pdf:None +DEBUG:xhtml2pdf:Col widths: [None, None] +DEBUG:xhtml2pdf:Col widths: [None, None] +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:19:58] "GET /myclass/api/GerneratePDF_Partner_Order/PnCLFYZNmf4WnmyBOjzOky1KKeVT7stmiQ/64fb175cb00968241dfc7446 HTTP/1.1" 200 - +INFO:root:2023-09-14 11:22:50.040607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:22:50] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:22:50.043608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:22:50] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:23:41.391280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:23:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:23:41.395374 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:23:41] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:23:43.906330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:23:43] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:23:51.601774 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:23:51] "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\\main.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 11:38:40.183756 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:38:40.183756 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:38:40.184760 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:38:40.184760 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:38:40.184760 : ++ 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:2023-09-14 11:38:49.980479 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:38:49.980479 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:38:49.980479 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:38:49.980479 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:38:49.980479 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 11:47:09.106835 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:09] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:09.111286 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:09] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.331579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.334933 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.338191 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.353291 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.566056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.569770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.573917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.577088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.609674 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.614697 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:47:41.618694 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.628719 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.774039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:47:41.778403 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:47:41] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:26.145142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:26.148163 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:26] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:40.576617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:48:40.579684 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:48:40.582982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:40.591120 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:40.714529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:40] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:48:40.717533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:48:40] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:07.498480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:07.501673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:13.479368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:50:13.482767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:50:13.485034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:13.496557 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:13.593782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:13.596060 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:16.931449 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:16] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:50:41.718993 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:50:41] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:51:41.258248 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:51:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:51:41.263091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:51:41] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 11:52:21.933141 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:52:21.933141 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:52:21.934141 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:52:21.934141 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:52:21.934141 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 11:52:34.690171 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:52:34.694243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 11:52:34.698298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:52:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:52:34.709016 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:52:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:52:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:52:34.838094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:52:34] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:52:34.841614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:52:34] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:57:52.020172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:57:52] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 11:58:00.010042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 11:58:00] "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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 11:59:16.821959 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 11:59:16.821959 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 11:59:16.821959 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 11:59:16.822944 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 11:59:16.822944 : ++ 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:2023-09-14 12:01:13.814891 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 12:01:13.814891 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 12:01:13.814891 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 12:01:13.814891 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 12:01:13.814891 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 12:06:11.236873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:06:11.241847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:11] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:11.255418 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:11] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:11.284055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:11] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:11.413782 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:11] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:11.418302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:11] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:15.147740 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:15] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:20.983609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:20] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:06:52.845143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:06:53.792984 : Update_Partner_Document -'nom' - Line : 228 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:06:53] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:15.234415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:15.236409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:23.467694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:23.473218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:23.476653 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:23.491561 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:23.663485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:23.667065 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:26.756687 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:26] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:34.731550 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:34] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:59.685551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:59.689300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:59.690312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:59.700463 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:28:59.871484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:28:59.873775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:59] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:28:59] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:29:01.646533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:29:01] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:29:17.995565 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:29:18] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:15.219446 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:15] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:15.225466 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:15] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:22.699875 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:30:22.704592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:22] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:22.712512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:30:22.721065 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:22] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:22.811240 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:22] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:22.816264 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:22] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:24.843611 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:24] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:30:31.302632 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:30:31] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:12.945737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:12] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:19.368404 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:31:19.373570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:31:19.379820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:19.395567 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:19.594051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:19] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:19.598468 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:19] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:31:22.079854 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:31:22] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:39:03.707941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:39:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:39:03.712029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:39:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:39:56.780915 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:39:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:39:56.785282 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:39:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:16.858291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:16] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:16.863293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:16] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:27.765633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:40:27.770171 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:27.776063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:40:27.783670 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:27.977231 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:27] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:27.980358 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:27] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:31.931961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:31] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:36.694784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:36] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:40:44.864614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:40:44] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:01.270450 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:41:01.274036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:41:01.276354 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:41:01.284290 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:01.434625 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:01] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:01.439161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:01] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:04.866582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:04] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:10.107204 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:10] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:18.035521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:41:18.059089 : Add_Partner_Document - Il existe déjà un document avec la meme reference interne +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:18] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:26.688219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:26] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:31.534101 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:31] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:39.110232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:39] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:48.511851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:48] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:41:52.395109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:41:52] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:42:04.217130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:42:04] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:45:24.268189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:45:24] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:45:24.272186 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:45:24] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:45:27.330076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:45:27] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:04.840041 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:04.843546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:10.965525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:10] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:23.833628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:23] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:31.359049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:46:31.363054 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:31.370056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:46:31.377732 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:31.523401 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:31] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:31.527669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:31] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:35.327850 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:35] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:49.122613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:49] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:46:54.855109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:46:54] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:47:03.791294 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:47:03] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:47:19.538530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:47:19] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:36.369160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:48:36.377008 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:36.385997 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:48:36.392733 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:36.632525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:36.639795 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:36] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:41.887962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:41] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:48.049151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:48] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:54.006683 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:54] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:48:57.231421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:48:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:02.625261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:49:02.633903 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:02.638901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:49:02.646908 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:02.837364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:02.842349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:30.492534 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:49:30.498958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:49:30.505366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:30.515250 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:30.657438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:30.663035 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:33.506370 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:33] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:49:40.788379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:49:40] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:54:29.131289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:54:29] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:54:29.137078 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:54:29] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:55:12.173559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:55:12] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:55:12.178039 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:55:12] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:03.795644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:03.807887 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:08.246149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:57:08.252116 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 12:57:08.256641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:08] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:08.267117 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:08] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:08] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:08.407977 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:08] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:08.415794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:08] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:11.052609 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:11] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:15.241118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:15] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:21.943702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:21] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 12:57:25.030044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 12:57:25] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:00:37.996543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:00:38] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:00:38.002963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:00:38] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:04.622324 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:04] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:04.629339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:04] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:17.439564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:02:17.446559 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:17.456101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:02:17.463833 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:17.611492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:17] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:17.616174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:17] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:22.385349 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:22] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:26.969959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:26] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:31.014500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:31] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:02:33.257161 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:02:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\partner_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:04:49.154640 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:04:49.154640 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:04:49.154640 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:04:49.154640 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:04:49.154640 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 13:05:26.388017 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:05:26.392406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:05:26.395573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:26.414166 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:26.581320 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:26.591398 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:26] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:28.679051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:28] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:34.987539 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:34] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:39.786109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:39] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:05:42.673138 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:05:42] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:06:09.804496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:06:09] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:48.414804 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:48] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:48.418119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:48] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:58.712448 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:09:58.716457 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:58.719872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:09:58.727311 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:58.881444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:09:58.884460 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:09:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:00.659965 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:00] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:08.619858 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:08] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:14.390744 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:14] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:17.237825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:17] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:19.731246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:19] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:21.472266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:21] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:10:23.573552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:10:23] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:28.226508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:28] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:28.229999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:28] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:36.323691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:12:36.328256 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:36.333244 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:12:36.339607 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:36.482057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:36] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:36.485055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:36] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:41.175072 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:41] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:12:53.246730 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:12:53.252955 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:53] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:12:53] "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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:15:21.768189 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:15:21.768189 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:15:21.768189 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:15:21.768189 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:15:21.769164 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:16:28.850882 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:16:28.850882 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:16:28.850882 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:16:28.850882 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:16:28.850882 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:17:13.473305 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:17:13.473305 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:17:13.473305 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:17:13.473305 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:17:13.473305 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:17:50.905639 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:17:50.905639 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:17:50.905639 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:17:50.905639 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:17:50.905639 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:18:06.384874 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:18:06.384874 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:18:06.384874 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:18:06.384874 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:18:06.384874 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:19:41.269307 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:19:41.270303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:19:41.270303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:19:41.270303 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:19:41.270303 : ++ 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_document_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 13:24:22.051375 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:24:22.051375 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:24:22.051375 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:24:22.052379 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:24:22.052379 : ++ 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:2023-09-14 13:24:31.833146 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 13:24:31.833146 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 13:24:31.833146 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 13:24:31.833146 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 13:24:31.833146 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 13:26:37.510766 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:26:37.513439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:26:37] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:26:37] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:06.075488 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:27:06.078607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:06.085018 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:06.093225 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:06.248038 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:06] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:06.252351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:06] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:07.498341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:07] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:27:24.292416 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:27:24.300921 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:24] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:27:24] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:13.132241 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:13.137699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:17.300771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:17] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:23.173328 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:29:23.177330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:23] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:23] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:33.096181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:29:33.101178 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:29:33.108180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:33] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:33] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:33.165744 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:33] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:33.349925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:33] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:33.354928 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:29:52.236464 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:29:52] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:30:02.345529 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:30:02.349959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:30:02] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:30:02] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:49.110602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:49] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:49.114279 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:49] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:57.364428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:31:57.368257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:31:57.372749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:57.382261 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:57.534508 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:57.546693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:31:59.906144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:31:59] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:32:07.673219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:32:07.677869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:32:07] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:32:07] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:32:52.537959 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:32:52] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:32:52.541871 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:32:52] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:33:13.487612 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:33:13.490615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:33:13.494616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:33:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:33:13.503620 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:33:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:33:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:33:13.642738 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:33:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:33:13.645767 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:33:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:35:34.365866 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:35:34] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:35:53.351217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:35:53.358034 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:35:53] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:35:53] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:36:11.704313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:36:11] "POST /myclass/api/Get_List_Default_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:36:15.117929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 13:36:15.123187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:36:15] "POST /myclass/api/Get_Given_DFAULT_Partner_Document/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:36:15] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:36:21.112367 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:36:21] "POST /myclass/api/Add_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 13:36:23.880091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 13:36:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:26:44.830223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:26:44.839422 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:26:44.860594 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:26:44.872724 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:26:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:26:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:26:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:26:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:30.473429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:30.484046 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:30.489572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:30.508179 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:30.662280 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:30] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:30.670646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:30] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:41.341696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:41.345375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:41.351219 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:41.364377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:41] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:41] "POST /myclass/api/Get_List_Manager_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:41] "POST /myclass/api/Get_List_Profil_Ressource_Humaine/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:41] "POST /myclass/api/Get_Related_Target_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:43.289336 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:43.295200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:43] "POST /myclass/api/Get_List_Ressource_Materielle_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:43] "POST /myclass/api/Get_Related_Target_Materiel_Collection_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:47.357001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:47.362143 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:47.369005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:47.374506 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:47] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:47] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:53:49.988060 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:53:49.997748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:50] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:53:50] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:13.774723 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:13.781421 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:17.899722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:30.688842 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:30] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:40.294780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:40] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:54:47.988342 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:54:48] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:55:37.320629 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:55:37] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:55:49.451922 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:55:49] "POST /myclass/api/Update_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:55:50.645108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:55:50] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 14:56:19.153625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:56:19.156676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:56:19.162879 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 14:56:19.168692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:56:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:56:19] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:56:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 14:56:19] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:05:49.215544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:05:49.220001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:05:49.227231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:05:49.234177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:05:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:05:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:05:49] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:05:49] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:08:50.512588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:08:50.519811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:08:50.530110 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:08:50.537383 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:08:54.933269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:08:54.941322 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:08:54.947669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:08:57.086885 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:08:57] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:09:16.911449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:09:16.915606 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:09:16.922566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:09:16.924591 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:09:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:09:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:09:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:09:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:15:11.813033 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:15:11.818282 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:15:11.823829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:15:11.833180 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:15:11] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:15:11] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:15:11] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:15:11] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:17:03.394737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:17:03.401207 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:17:03.407281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:17:03.414283 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:17:03] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:17:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:17:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:17:03] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:17:06.037763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:17:07] "POST /myclass/api/DeleteAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:22:10.462524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:22:10.473185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:22:10.475187 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:22:10.480700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:22:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:22:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:22:10] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:22:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:23:30.335939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:30.341221 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:30.347102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:30.348567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:23:35.295330 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:35.299655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:35.310321 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:23:35.321278 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:23:35.435757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:35.441302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:35.445303 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:35.449701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:23:55.951243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:23:55.985732 : DeleteAttendeeInscription - Impossible de recuperer les données de la session +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:23:55] "POST /myclass/api/DeleteAttendeeInscription/ 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:2023-09-14 15:27:48.496715 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 15:27:48.496715 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 15:27:48.496715 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 15:27:48.496715 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 15:27:48.496715 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 15:27:48.551716 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:27:48] "POST /myclass/api/DeleteAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:27:48.889892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:27:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:29:08.875841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:29:08.878843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:29:08.881667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:29:08.886226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:29:54.070272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:29:54.072888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:29:54.076705 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:29:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:02.534250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:02.537351 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:02.539901 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:02] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:02] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:02] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:12.451158 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:12.453434 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:12.456781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:12.460793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:19.182317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:19] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:23.191586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:23.195551 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:23.199445 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:42.935174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:42] "POST /myclass/api/DeleteAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:43.319521 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:43.323093 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:30:53.643762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:53.646804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:53.649823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:30:53.655028 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:30:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:07.458598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:07.516189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:07] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:12.035564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:12] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:14.425884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:14.428591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:14.432145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:14.436144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:14] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:14] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:18.794608 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:18.798890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:18.801888 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 15:31:18.803895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:18.809197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:18] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:18] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:37.183345 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:37] "POST /myclass/api/DeleteAttendeeInscription/ HTTP/1.1" 200 - +INFO:root:2023-09-14 15:31:37.892373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 15:31:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 15:35:32.049256 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 15:35:32.049256 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 15:35:32.049256 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 15:35:32.049256 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 15:35:32.050259 : ++ 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\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 15:35:53.742748 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 15:35:53.742748 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 15:35:53.742748 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 15:35:53.742748 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 15:35:53.742748 : ++ 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\\class_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-09-14 19:22:02.677748 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:22:02.678822 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:22:02.678822 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:22:02.678822 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:22:02.678822 : ++ 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:2023-09-14 19:22:14.256759 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:22:14.257766 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:22:14.257766 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:22:14.257766 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:22:14.257766 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 19:23:09.582218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:09.582218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:09.583232 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:09] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:09] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:09] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:09.843246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:09.845752 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:09] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:10.894176 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:10.895218 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:10.896200 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:10.897276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:10.898666 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:10.900514 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:10] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.221304 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:11.224305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.229304 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.233302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.237302 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.243648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.532336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.539650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.543540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.547767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:11.552147 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.557721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.841407 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:11.846605 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:11] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:16.440927 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:16.442932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:16.443927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:16] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:16] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:16] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.065707 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.067708 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.467058 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.471573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.476764 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.480762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.484168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.493189 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.497183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.503183 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.509363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.518169 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.522239 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.527298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.533296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.537295 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.543525 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.550763 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.554588 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:17.558972 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.564535 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:17.573736 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:17] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:23.694014 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:23] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:24.030765 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:24.034796 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:24.041223 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:23:24.048352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:24.078492 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:23:24.181205 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:23:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:24:44.098142 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:24:44] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:24:47.667345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:24:47.677603 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:24:47.682131 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:24:47.686680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:24:47] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:24:47] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:24:47] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:24:47] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:04.077331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:04] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:07.391226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:07.396216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:07.401375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:07.408876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:07] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:23.950671 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:23.953670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:23.963668 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:23.971254 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:23.979359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:24] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:26.131533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:26] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:25:41.025077 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:25:42.592830 : AddStagiairetoClass_mass Le champ 'session_id' n'existe pas, Creation participants annulée +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:25:42] "POST /myclass/api/AddStagiairetoClass_mass/ 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:2023-09-14 19:26:49.286934 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:26:49.287933 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:26:49.287933 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:26:49.287933 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:26:49.287933 : ++ 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:2023-09-14 19:38:41.726580 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:38:41.726580 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:38:41.726580 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:38:41.726580 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:38:41.726580 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 19:38:41.770443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:38:42.398480 : AddStagiairetoClass_mass Le champ 'session_id' n'existe pas, Creation participants annulée +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:38:42] "POST /myclass/api/AddStagiairetoClass_mass/ 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:2023-09-14 19:39:27.509628 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:39:27.509628 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:39:27.509628 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:39:27.509628 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:39:27.509628 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 19:39:27.681747 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:39:29.058339 : AddStagiairetoClass_mass -'session_data' - ERRORRRR AT Line : 1683 +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:39:29] "POST /myclass/api/AddStagiairetoClass_mass/ 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:2023-09-14 19:40:54.840511 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 19:40:54.840511 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 19:40:54.841519 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 19:40:54.841519 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 19:40:54.841519 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 19:40:54.914534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:40:58] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:40:59.069003 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:40:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:00.128382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:00.153920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:00.158916 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:00] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:00] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:53.836154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:53.843037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:53.846032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:53.854576 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:53] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:57.431283 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:57.437810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:41:57.445184 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:57.456059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:41:57.465544 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:57] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:41:57] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:42:00.230026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:00] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:42:04.958428 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:34] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:42:35.185511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:42:35.538135 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:42:35.543137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:42:35.548130 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:35] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:35] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:42:35] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:33.737074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:34.775167 : Controle_AddStagiairetoClass_massLe code session de la formationAR02 ne correspond pas au code de la session en cours +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:34] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:46.066704 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:46.072379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:46.076226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:46.084554 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:46] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:46] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:49.040246 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:49.048470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:49.053402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:49.065045 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:49.069678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:49] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:49] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:51.301451 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:43:55.471686 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:43:55.529493 : Controle_AddStagiairetoClass_massLe code session de la formationAR02 ne correspond pas au code de la session en cours +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:43:55] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:45:12.976226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:12.981990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:12.989998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:13.000378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:13] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:45:14.513513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:14.515004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:14.517586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:45:14.840368 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:14.847384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:45:14.852735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:45:14.868957 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:45:14.987402 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:45:15] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:55:11.140805 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:55:11.145816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:55:11.151822 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:55:11.157813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:11] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:55:11.164754 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:11] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:11] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:11] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:55:12.700206 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:55:12] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:56:04.189679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:56:07] "POST /myclass/api/AddStagiairetoClass_mass/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:56:07.572907 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:56:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:56:07.951943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:56:07.958067 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:56:07.965586 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:56:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:56:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:56:07] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-09-14 19:58:33.155386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:58:33.163390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:58:33.167627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 19:58:33.174051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:58:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:58:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:58:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 19:58:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:02:56.045839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:02:56.050851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:02:56.054462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:02:56.057575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:02:56.070177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:56] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:56] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:02:57.578791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:02:57] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:03:28.174160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:03:28.178604 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:03:28.183031 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:03:28.187043 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:03:38.781111 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:03:38.785132 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:03:38.789313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:03:41.314507 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:03:41] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:04:02.076009 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:04:02.080023 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:04:04.789895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:04] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:04:15.341327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:04:15.345631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:04:15.346988 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:04:15.351700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:15] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:15] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:04:17.894437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:04:17.898346 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:17] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:04:17] "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:2023-09-14 20:10:57.023279 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:10:57.024279 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:10:57.024279 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:10:57.024279 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:10:57.024279 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:11:29.328032 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:11:29.331409 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:11:29] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:11:29] "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:2023-09-14 20:13:01.693732 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:13:01.693732 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:13:01.693732 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:13:01.693732 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:13:01.693732 : ++ 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:2023-09-14 20:13:18.811542 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:13:18.811542 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:13:18.811542 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:13:18.811542 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:13:18.811542 : ++ 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:2023-09-14 20:14:32.650462 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:14:32.650462 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:14:32.650462 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:14:32.650462 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:14:32.650462 : ++ 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:2023-09-14 20:15:03.764913 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:15:03.764913 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:15:03.764913 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:15:03.764913 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:15:03.764913 : ++ 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:2023-09-14 20:16:41.263912 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:16:41.263912 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:16:41.263912 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:16:41.263912 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:16:41.264455 : ++ 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:2023-09-14 20:17:23.065088 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:17:23.065088 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:17:23.065088 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:17:23.065088 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:17:23.066085 : ++ 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:2023-09-14 20:18:26.165771 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:18:26.165771 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:18:26.165771 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:18:26.165771 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:18:26.165771 : ++ 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:2023-09-14 20:19:29.166076 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:19:29.166076 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:19:29.166076 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:19:29.166076 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:19:29.166076 : ++ 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:2023-09-14 20:19:54.919984 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:19:54.919984 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:19:54.919984 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:19:54.919984 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:19:54.919984 : ++ 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:2023-09-14 20:22:21.380001 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:22:21.380001 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:22:21.380001 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:22:21.381000 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:22:21.381000 : ++ 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:2023-09-14 20:23:03.348895 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:23:03.348895 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:23:03.348895 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:23:03.348895 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:23:03.348895 : ++ 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:2023-09-14 20:33:56.382663 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:33:56.383664 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:33:56.383664 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:33:56.383664 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:33:56.383664 : ++ 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:2023-09-14 20:34:09.349358 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:34:09.349358 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:34:09.349358 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:34:09.349871 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:34:09.349871 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:35:05.262564 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:35:05] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:35:05.274971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:35:06] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:36:01.079163 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:36:01.080161 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:36:01.080161 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:36:01.080161 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:36:01.080161 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:36:07.249187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:36:07] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:36:07.259190 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:36:08.239778 : Add_Partner_Order Le champ 'partner_owner_recid' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:36:08] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:37:00.279824 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:37:00.279824 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:37:00.279824 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:37:00.279824 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:37:00.279824 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:37:06.067293 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:37:06] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:37:06.073296 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:37:06.765639 : Add_Partner_Order Le champ 'valide' n'est pas autorisé +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:37:06] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:41:36.482243 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:41:36.482243 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:41:36.482243 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:41:36.483423 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:41:36.483423 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:41:36.530329 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:41:36] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:41:36.536708 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:41:37.187241 : Add_Partner_Order - La valeur 'token' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:41:37] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:42:33.695978 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:42:33.695978 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:42:33.695978 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:42:33.695978 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:42:33.695978 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:42:33.746780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:42:33] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:42:33.756832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:42:34] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:43:07.735404 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:43:07.735404 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:43:07.736411 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:43:07.736411 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:43:07.736411 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:43:25.322097 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:43:25] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:43:25.336062 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:43:26.710987 : Add_Update_Partner_Order_Line - La valeur 'order_line_id' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:43:26] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:46:03.751796 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:46:03.752808 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:46:03.752808 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:46:03.752808 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:46:03.752808 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:46:07.582575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:46:07] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:46:07.591566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:46:08.631866 : Add_Update_Partner_Order_Line - La valeur 'order_line_status' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:46:08] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:46:41.009680 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:46:41.010810 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:46:41.010810 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:46:41.010810 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:46:41.010810 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:46:41.056193 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:46:41] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:46:41.063865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:46:41.714360 : Add_Update_Partner_Order_Line - La valeur 'order_line_status' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:46:41] "GET /myclass/api/Convert_Quotation_to_Order/ 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:2023-09-14 20:47:09.485181 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-09-14 20:47:09.485181 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-09-14 20:47:09.485181 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-09-14 20:47:09.486193 : ++ FLASK PORT 5001 ++ +INFO:root:2023-09-14 20:47:09.486193 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 877-541-979 +INFO:root:2023-09-14 20:47:09.534076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:09] "GET /myclass/api/Convert_Quotation_to_Order HTTP/1.1" 308 - +INFO:root:2023-09-14 20:47:09.543394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:09] "GET /myclass/api/Convert_Quotation_to_Order/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:47:43.553272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:43.556292 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:47:43.572463 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:43.573940 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:47:43.801163 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:43.806586 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:43.810585 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:43.815737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/Get_List_Ressource_Humaine_no_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:43] "POST /myclass/api/Get_List_Partner_Order_no_filter/ HTTP/1.1" 200 - +INFO:root:2023-09-14 20:47:49.739739 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-09-14 20:47:49.746151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:49] "POST /myclass/api/Get_Given_Partner_Order/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [14/Sep/2023 20:47:49] "POST /myclass/api/Get_Given_Partner_Order_Lines/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index ce3a486..d86e3f2 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -1161,12 +1161,6 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): 3]) + " Le code de la formation est vide : Impossible d'importer la liste des sessions ") return False, "Le code de la formation est vide. Impossible d'importer la liste des sessions" - # Verifier la validité du token - retval = mycommon.check_partner_token_validity("", my_token) - - if retval is False: - return "Err_Connexion", " La session de connexion n'est pas valide" - partner_recid = mycommon.get_parnter_recid_from_token(my_token) if (partner_recid is False): @@ -1219,7 +1213,7 @@ def Add_Update_SessionFormation_mass(file=None, Folder=None, diction=None): if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier @@ -1630,11 +1624,6 @@ def Controle_Add_Update_SessionFormation_mass(saved_file=None, Folder=None, dict 3]) + " Le code de la formation est vide : Impossible d'importer la liste des sessions ") return False, "Le code de la formation est vide. Impossible d'importer la liste des sessions" - # Verifier la validité du token - retval = mycommon.check_partner_token_validity("", my_token) - - if retval is False: - return "Err_Connexion", " La session de connexion n'est pas valide" partner_recid = mycommon.get_parnter_recid_from_token(my_token) if (partner_recid is False): @@ -1668,7 +1657,7 @@ def Controle_Add_Update_SessionFormation_mass(saved_file=None, Folder=None, dict if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier field_list_obligatoire_file = ['date_debut', 'date_fin', 'session_status', 'code_session', @@ -1795,7 +1784,7 @@ def Controle_Add_Update_SessionFormation_mass(saved_file=None, Folder=None, dict mycommon.myprint( str(inspect.stack()[0][3]) + " Le champs 'nb_participant' de ligne " + str( n + 2) + " est incorrecte.") - return False, " Le champs nb_participant de ligne " + str(n + 2) + " est incorrecte. " + return False, " Le champs nb_participant de ligne " + str(n + 2) + " est incorrecte. Un nombre Entier Positif doit être fourni " mydata['nb_participant'] = str(new_participants) @@ -2098,7 +2087,7 @@ def Add_Update_SessionFormation_mass_for_many_class(file=None, Folder=None, dict if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Verification des champs obligatoires dans le fichier field_list_obligatoire_file = ['date_debut', 'date_fin', 'session_status', 'code_session', 'formation_code_externe'] diff --git a/class_mgt.py b/class_mgt.py index 17b4c14..bc20107 100644 --- a/class_mgt.py +++ b/class_mgt.py @@ -2659,7 +2659,17 @@ def add_class_mass(file=None, Folder=None, diction=None): 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, " Verifier votre API" + return False, " Les informations de connexion sont invalides" + + # Verifier la validité du token + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + retval = mycommon.check_partner_token_validity("", my_token) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" status, saved_file = mycommon.Upload_Save_CSV_File(file, Folder) @@ -2670,6 +2680,15 @@ def add_class_mass(file=None, Folder=None, diction=None): #print(" Lecture du fichier : "+saved_file) nb_line = 0 + """" + update du 31/08/23 : Controle de l'integrité du fichier avant import + """ + local_controle_status, local_controle_message = Controle_add_class_mass(saved_file, Folder, diction) + + if (local_controle_status is False): + return local_controle_status, local_controle_message + + print(" #### local_controle_message = ", local_controle_message) df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') df = df.fillna('') @@ -2690,7 +2709,7 @@ def add_class_mass(file=None, Folder=None, diction=None): if str(val).lower() not in field_list: mycommon.myprint( str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") - return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" # Recuperation du recid de l'utilisateur user_recid = mycommon.get_parnter_recid_from_token(diction['token']) @@ -3026,6 +3045,361 @@ def add_class_mass(file=None, Folder=None, diction=None): return False, "Impossible d'inserer les formation en masse -" + str(e) +""" +Fonction qui permet de controler le fichier a importer avant import +""" + + +def Controle_add_class_mass(saved_file=None, Folder=None, diction=None): + try: + + ''' + # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés + # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API + # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste + # field_list. + ''' + field_list = ['token'] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str(inspect.stack()[0][ + 3]) + " - Creation formation : Le champ '" + val + "' n'existe pas, Creation formation annulée") + return False, " Le champ '" + val + "' n'existe pas, Creation formation annulée" + + ''' + Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, + On controle que les champs obligatoires sont presents dans la liste + ''' + field_list_obligatoire = ['token'] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Verifier votre API" + + # " Lecture du fichier " + # print(" Lecture du fichier : "+saved_file) + nb_line = 0 + + + df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') + df = df.fillna('') + # Dictionnaire des champs utilisables + ''' + # Verification que les noms des colonne sont bien corrects" + ''' + field_list = ['external_code', 'titre', 'description', 'formateur', 'institut_formation', + 'distantiel', 'presentiel', 'prix', 'domaine', 'url', 'duree', 'duree_unite', 'plus_produit', + 'mots_cle', 'zone_diffusion', 'metier', 'publie', 'img_url', + 'objectif', 'programme', 'prerequis', 'formateur', 'note', 'cpf', 'certif', + 'class_inscription_url', 'pourqui', 'support', 'img_banner_detail_class'] + + total_rows = len(df) + + # print(df.columns) + for val in df.columns: + if str(val).lower() not in field_list: + mycommon.myprint( + str(inspect.stack()[0][3]) + " : entete du fichier csv. '" + val + "' n'est pas acceptée") + return False, " Entete du fichier csv. La Colonne '" + val + "' n'est pas acceptée" + + # Recuperation du recid de l'utilisateur + user_recid = mycommon.get_parnter_recid_from_token(diction['token']) + if user_recid is False: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - Impossible de recuperer le token du partenaire") + return False, " Les informations d'identification sont incorrectes" + + x = range(0, total_rows) + ignored_line = "" + nb_inserted_line = 0 + + for n in x: + mydata = {} + + if ("external_code" not in df.keys()): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - Absence de 'external_code' pour la formation à la ligne " + str(n + 2)) + return False, " Absence de 'external_code' pour la formation à la ligne " + str(n + 2) + + if ("titre" not in df.keys()): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - Absence de 'titre' pour la formation à la ligne " + str(n + 2)) + return False, " Absence de 'titre' pour la formation à la ligne " + str(n + 2) + + if ("domaine" not in df.keys()): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - Absence de 'domaine' pour la formation à la ligne " + str(n + 2)) + return False, " Absence de 'domaine' pour la formation à la ligne " + str(n + 2) + + if ("description" not in df.keys()): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - Absence de 'description' pour la formation à la ligne " + str(n + 2)) + return False, " Absence de 'description' pour la formation à la ligne " + str(n + 2) + + nb_inserted_line = nb_inserted_line + 1 + # Si une ligne n'a aucune information obligatoire, alors on ignore la ligne + if (str(df['external_code'].values[n]) == "nan" or str(df['titre'].values[n]) == "nan"): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - La ligne " + str(n + 2) + " a été ignorée") + ignored_line = str(n + 2) + " , " + str(ignored_line) + + nb_inserted_line = nb_inserted_line - 1 + continue + + mydata['external_code'] = str(df['external_code'].values[n]).strip() + mydata['title'] = str(df['titre'].values[n]).strip() + mydata['domaine'] = str(df['domaine'].values[n]).strip() + tmp_desc = str(df['description'].values[n]).strip() + tmp_desc = mycommon.format_MySy_Text_Tag(tmp_desc) + mydata['description'] = tmp_desc + + """ + Verifier que le domaine est bien dans la liste acceptée + """ + count_domaine = MYSY_GV.dbname['liste_domaine_metier'].count_documents( + {'domaine': str(mydata['domaine']).lower(), 'valide': '1', 'locked': '0'}) + if (count_domaine <= 0): + mycommon.myprint(str( + inspect.stack()[0][ + 3]) + " - Le domaine '" + str(mydata['domaine']) + "' pour la formation à la ligne " + str( + n + 2) + " n'est pas autorisé. Verifier la liste des domaines autorisés") + return False, " - Le domaine '" + str(mydata['domaine']) + "' pour la formation à la ligne " + str( + n + 2) + " n'est pas autorisé. Verifier la liste des domaines autorisés" + + formateur = "" + if ("formateur" in df.keys()): + if (str(df['formateur'].values[n])): + formateur = str(df['formateur'].values[n]).strip() + mydata['trainer'] = formateur + + institut_formation = "" + if ("institut_formation" in df.keys()): + if (str(df['institut_formation'].values[n])): + institut_formation = str(df['institut_formation'].values[n]).strip() + mydata['institut_formation'] = institut_formation + + # mydata['duration'] = float(str(df['duree'].values[n])) + + url = "" + if ("url" in df.keys()): + if (str(df['url'].values[n])): + url = str(df['url'].values[n]).strip() + mydata['url'] = url + + duration = "0" + if ("duree" in df.keys()): + if (str(df['duree'].values[n])): + duration = str(df['duree'].values[n]).strip() + mydata['duration'] = duration + + plus_produit = "" + if ("plus_produit" in df.keys()): + if (str(df['plus_produit'].values[n])): + plus_produit = str(df['plus_produit'].values[n]).strip() + plus_produit = mycommon.format_MySy_Text_Tag(plus_produit) + + mydata['plus_produit'] = plus_produit + + presentiel = "0" + if ("presentiel" in df.keys()): + if (str(df['presentiel'].values[n])): + presentiel = str(df['presentiel'].values[n]).strip() + mydata['presentiel'] = presentiel + + distantiel = "0" + if ("distantiel" in df.keys()): + if (str(df['distantiel'].values[n])): + distantiel = str(df['distantiel'].values[n]).strip() + mydata['distantiel'] = distantiel + + price = "0" + if ("prix" in df.keys()): + if (str(df['prix'].values[n])): + price = str(df['prix'].values[n]).strip() + mydata['price'] = price + + metier = "" + if ("metier" in df.keys()): + if (str(df['metier'].values[n])): + metier = str(df['metier'].values[n]).strip() + """ + Verifier que le metier est bien dans la liste acceptée + """ + count_domaine = MYSY_GV.dbname['liste_domaine_metier'].count_documents( + {'metier': str(metier).lower(), 'valide': '1', 'locked': '0'}) + if (count_domaine <= 0): + mycommon.myprint(str( + inspect.stack()[0][3]) + " - Le metier '" + str( + metier) + "' pour la formation à la ligne " + str( + n + 2) + " n'est pas autorisé. Verifier la liste des domaines autorisés") + return False, " - Le metier '" + str(metier) + "' pour la formation à la ligne " + str( + n + 2) + " n'est pas autorisé. Verifier la liste des domaines autorisés" + + mydata['metier'] = metier + + published = "1" + if ("published" in df.keys()): + if (str(df['published'].values[n])): + published = str(df['published'].values[n]).strip() + mydata['published'] = published + + mycpf = "0" + if ("cpf" in df.keys()): + if (str(df['cpf'].values[n])): + mycpf = str(df['cpf'].values[n]).strip() + mydata['cpf'] = mycpf + + class_inscription_url = "" + if ("class_inscription_url" in df.keys()): + if (str(df['class_inscription_url'].values[n])): + class_inscription_url = str(df['class_inscription_url'].values[n]).strip() + mydata['class_inscription_url'] = class_inscription_url + + certif = "0" + if ("certif" in df.keys()): + if (str(df['certif'].values[n])): + certif = str(df['certif'].values[n]).strip() + mydata['certif'] = certif + + objectif = "" + if ("objectif" in df.keys()): + if (str(df['objectif'].values[n])): + objectif = str(df['objectif'].values[n]).strip() + objectif = mycommon.format_MySy_Text_Tag(objectif) + + mydata['objectif'] = objectif + + note = "" + if ("note" in df.keys()): + if (str(df['note'].values[n])): + note = str(df['note'].values[n]).strip() + mydata['note'] = note + + programme = "" + if ("programme" in df.keys()): + if (str(df['programme'].values[n])): + programme = str(df['programme'].values[n]).strip() + programme = mycommon.format_MySy_Text_Tag(programme) + + mydata['programme'] = programme + + prerequis = "" + if ("prerequis" in df.keys()): + if (str(df['prerequis'].values[n])): + prerequis = str(df['prerequis'].values[n]).strip() + prerequis = mycommon.format_MySy_Text_Tag(prerequis) + + mydata['prerequis'] = prerequis + + pourqui = "" + if ("pourqui" in df.keys()): + if (str(df['pourqui'].values[n])): + pourqui = str(df['pourqui'].values[n]).strip() + pourqui = mycommon.format_MySy_Text_Tag(pourqui) + + mydata['pourqui'] = pourqui + + support = "" + if ("support" in df.keys()): + if (str(df['support'].values[n])): + support = str(df['support'].values[n]).strip() + mydata['support'] = support + + img_banner_detail_class = "" + if ("img_banner_detail_class" in df.keys()): + if (str(df['img_banner_detail_class'].values[n])): + img_banner_detail_class = str(df['img_banner_detail_class'].values[n]).strip() + mydata['img_banner_detail_class'] = img_banner_detail_class + + if ("duree_unite" in df.keys()): + if (str(df['duree_unite'].values[n]).strip() not in MYSY_GV.CLASS_DURATION_UNIT): + mycommon.myprint( + str(inspect.stack()[0][3]) + " : le champ 'duration_unit' contient une valeur erronées." + " Les valeurs acceptées sont " + str( + MYSY_GV.CLASS_DURATION_UNIT) + " ") + return False, " : le champ 'duration_unit' contient une valeur erronées." \ + " Les valeurs acceptées sont " + str(MYSY_GV.CLASS_DURATION_UNIT) + + mydata['duration_unit'] = str(df['duree_unite'].values[n]).strip() + else: + mydata['duration_unit'] = "jour" + + ''' + Verification de l'image + ''' + if ("img_url" in df.keys()): + mydata['img_url'] = str(df['img_url'].values[n]).strip() + if (str(df['img_url'].values[n]) == 'nan'): + mydata['img_url'] = "" + + # print(" ### mydata['img_url'] = '"+str(mydata['img_url'])+"' ") + if (len(str(mydata['img_url'])) > 0): + # Verifier si l'image existe + status_tmp, img = mycommon.TryUrlImage(str(mydata['img_url'])) + if (status_tmp is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " : l'url de l'image de la formation " + str( + mydata['external_code']) + " est incorrecte ") + return False, " l'url de l'image de la formation " + str( + mydata['external_code']) + " est incorrecte " + + ''' + Verification du nombre de mots clée : limite MYSY_GV.MAX_KEYWORD (3) + ''' + mots_cle = "" + if ("mots_cle" in df.keys()): + if (str(df['mots_cle'].values[n])): + mots_cle = str(df['mots_cle'].values[n]).strip() + + if (mots_cle.endswith(';')): + mots_cle = mots_cle[:-1] + + nb_keyword = mots_cle.split(";") + if (len(str(mots_cle).strip()) > 0 and len(nb_keyword) > 0): + for local_nb_keyword in nb_keyword: + if (len(str(local_nb_keyword).strip()) <= 0): + mycommon.myprint( + str(inspect.stack()[0][3]) + " : La formation " + str( + mydata['external_code']) + " contient des valeur vide (2)") + + return False, " La formation " + str(mydata['external_code']) + " contient des valeurs vides" + + if (len(nb_keyword) > MYSY_GV.MAX_KEYWORD): + mycommon.myprint( + str(inspect.stack()[0][3]) + " : La formation " + str( + mydata['external_code']) + " a plus de " + str(MYSY_GV.MAX_KEYWORD) + " mots clés") + return False, " La formation " + str(mydata['external_code']) + " a plus de " + str( + MYSY_GV.MAX_KEYWORD) + " mots clés" + + mydata['mots_cle'] = mots_cle + + ''' + Traitement de la zone de diffusion + ''' + zone_diffusion = "" + if ("zone_diffusion" in df.keys()): + if (str(df['zone_diffusion'].values[n])): + zone_diffusion = str(df['zone_diffusion'].values[n]).strip() + + + + return True, str(nb_inserted_line) + " formations ont été controlé / Mises à jour. " + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible de controler le fichier à importer " + + + ''' Cette fonction retourne les formation par metier diff --git a/main.py b/main.py index 378f426..1cc810c 100644 --- a/main.py +++ b/main.py @@ -4447,6 +4447,19 @@ def Get_Given_Partner_Document(): return jsonify(status=status, message=retval) +""" +API de recuperation d'un document par default : un document par defaut qui EST UNIQUEMENT paramettré avec un "partner_owner_recid" = "default" +""" +@app.route('/myclass/api/Get_Given_DFAULT_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_DFAULT_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_DFAULT_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Get_Given_DFAULT_Partner_Document(payload) + return jsonify(status=status, message=retval) + + """ API de recuperation d'un document d'orignine (template) """ @@ -4536,6 +4549,73 @@ def Send_Partner_Order_By_Email(): status, message = partner_order.Send_Partner_Order_By_Email(payload) return jsonify(status=status, message=message) +""" +Conversion d'un devis en commande +""" +@app.route('/myclass/api/Convert_Quotation_to_Order/', methods=['GET','POST']) +@crossdomain(origin='*') +def Convert_Quotation_to_Order(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Convert_Quotation_to_Order payload = ", str(payload)) + status, message = partner_order.Convert_Quotation_to_Order(payload) + return jsonify(status=status, message=message) + + + +""" +API de recuperation de tous les champs personnalisables dans un document +""" +@app.route('/myclass/api/Get_All_Personnalisable_Collection_Fields/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_All_Personnalisable_Collection_Fields(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_All_Personnalisable_Collection_Fields payload = ",payload) + status, retval = partner_document_mgt.Get_All_Personnalisable_Collection_Fields(payload) + return jsonify(status=status, message=retval) + +""" +API de recuperation des champs personnalisable d'un 'courrier_template_ref_interne' donné +""" +@app.route('/myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_Personnalisable_Fields_By_template_ref_interne(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_Personnalisable_Fields_By_template_ref_interne payload = ",payload) + status, retval = partner_document_mgt.Get_Given_Personnalisable_Fields_By_template_ref_interne(payload) + return jsonify(status=status, message=retval) + + + +""" +API de Recuperation des champs personnalisable d'un 'courrier_template_id' donné, avec un partner_owner_recid = "default" +""" +@app.route('/myclass/api/Get_Given_Personnalisable_Fields_By_courrier_template_id/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_Given_Personnalisable_Fields_By_courrier_template_id(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_Given_Personnalisable_Fields_By_courrier_template_id payload = ",payload) + status, retval = partner_document_mgt.Get_Given_Personnalisable_Fields_By_courrier_template_id(payload) + return jsonify(status=status, message=retval) + + + + +""" +API de recuperation de la liste des documents par defautl +""" +@app.route('/myclass/api/Get_List_Default_Partner_Document/', methods=['POST','GET']) +@crossdomain(origin='*') +def Get_List_Default_Partner_Document(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### Get_List_Default_Partner_Document payload = ",payload) + status, retval = partner_document_mgt.Get_List_Default_Partner_Document(payload) + return jsonify(status=status, message=retval) + diff --git a/partner_document_mgt.py b/partner_document_mgt.py index 06221df..840b75a 100644 --- a/partner_document_mgt.py +++ b/partner_document_mgt.py @@ -113,6 +113,19 @@ def Add_Partner_Document(diction): data['sujet'] = diction['sujet'] + cible = "" + if ("cible" in diction.keys()): + if diction['cible']: + cible = diction['cible'] + if (len(str(cible)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'cible' fait plus de 255 caractères ") + + return False, " - Le champ 'cible' fait plus de 255 caractères " + data['cible'] = diction['cible'] + + type_doc = "" if ("type_doc" in diction.keys()): if diction['type_doc']: @@ -271,6 +284,20 @@ def Update_Partner_Document(diction): return False, " - Le champ 'sujet' fait plus de 255 caractères " data_update['sujet'] = diction['sujet'] + cible = "" + if ("cible" in diction.keys()): + if diction['cible']: + cible = diction['cible'] + if (len(str(cible)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'cible' fait plus de 255 caractères ") + + return False, " - Le champ 'cible' fait plus de 255 caractères " + data_update['cible'] = diction['cible'] + + + type_doc = "" if ("type_doc" in diction.keys()): if diction['type_doc']: @@ -470,6 +497,77 @@ def Get_List_Partner_Document(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de recuperer la liste des modèles de document " + +""" +Recuperation de la liste des documents par defaut +""" +def Get_List_Default_Partner_Document(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', ] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = "default" + + data_cle['locked'] = "0" + data_cle['valide'] = "1" + + RetObject = [] + val_tmp = 1 + + for retval in MYSY_GV.dbname['courrier_template'].find(data_cle, {'_id':1, 'nom':1, 'ref_interne':1 }): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + RetObject.append(mycommon.JSONEncoder().encode(user)) + + return True, RetObject + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer la liste des modèles de document " + + + """ Recuperation d'un modèle de dcument donnée en se basant sur on token, _id, """ @@ -526,7 +624,7 @@ def Get_Given_Partner_Document(diction): RetObject = [] val_tmp = 1 - #print(" ### data_cle = ", data_cle) + print(" ### Get_Given_Partner_Documentdata_cle = ", data_cle) for retval in MYSY_GV.dbname['courrier_template'].find(data_cle): user = retval user['id'] = str(val_tmp) @@ -543,6 +641,78 @@ def Get_Given_Partner_Document(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de recuperer le modèle de document " +""" +Recuperation d'un document par defaut qui EST UNIQUEMENT paramettré avec un "partner_owner_recid" = "default" +""" +def Get_Given_DFAULT_Partner_Document(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', '_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', '_id'] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = "default" + data_cle['_id'] = ObjectId(str(diction['_id'])) + + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 1 + + print(" ### Get_Given_DFAULT_Partner_Document = ", data_cle) + for retval in MYSY_GV.dbname['courrier_template'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### RetObject = ", RetObject) + return True, RetObject + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer le modèle de document " """ @@ -693,3 +863,242 @@ def Get_Default_Partner_Document_By_Internal_Ref(diction): mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) return False, " Impossible de recuperer le modèle de document d'origine " + + +""" +Recuperation de tous les champs personnalisables +""" +def Get_All_Personnalisable_Collection_Fields(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token',] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = 'default' + + + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 1 + + #print(" ### data_cle = ", data_cle) + for retval in MYSY_GV.dbname['courrier_template_champ_config'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### RetObject = ", RetObject) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer les champs personnalisables " + + + + +""" +Recuperation des champs personnalisable d'un 'courrier_template_ref_interne' donné +""" +def Get_Given_Personnalisable_Fields_By_template_ref_interne(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token','courrier_template_ref_interne'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'courrier_template_ref_interne' ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = 'default' + data_cle['courrier_template_ref_interne'] = diction['courrier_template_ref_interne'] + + + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 1 + + #print(" ### data_cle = ", data_cle) + for retval in MYSY_GV.dbname['courrier_template_champ_config'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### RetObject = ", RetObject) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer les champs personnalisables de l'objet " + + + +""" +Recuperation des champs personnalisable d'un 'courrier_template_id' donné, avec un partner_owner_recid = "default" +""" +def Get_Given_Personnalisable_Fields_By_courrier_template_id(diction): + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token','courrier_template_id'] + + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str( + inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', 'courrier_template_id' ] + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + + # Recuperation du ref interne du courrie_template, avec un partner_owner_recid = "default" + + courrier_template_data = MYSY_GV.dbname['courrier_template'].find_one({'partner_owner_recid':'default', '_id':ObjectId(str(diction['courrier_template_id'])), + 'valide':'1', 'locked':'0'}) + + if( courrier_template_data is None): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - L'Id du modèle de courrier est invalide ") + return False, " L'Id du modèle de courrier est invalide", + + if( "ref_interne" not in courrier_template_data.keys() ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La ref_interne du modèle de courrier est invalide ") + return False, " La ref_interne du modèle de courrier est invalide", + + + """ + Clés de mise à jour + """ + data_cle = {} + data_cle['partner_owner_recid'] = 'default' + data_cle['courrier_template_ref_interne'] = courrier_template_data['ref_interne'] + + + data_cle['valide'] = "1" + data_cle['locked'] = "0" + + RetObject = [] + val_tmp = 1 + + #print(" ### data_cle = ", data_cle) + for retval in MYSY_GV.dbname['courrier_template_champ_config'].find(data_cle): + user = retval + user['id'] = str(val_tmp) + val_tmp = val_tmp + 1 + + RetObject.append(mycommon.JSONEncoder().encode(user)) + + #print(" ### RetObject = ", RetObject) + return True, RetObject + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible de recuperer les champs personnalisables de l'objet " + diff --git a/partner_order.py b/partner_order.py index 5a80a15..926d602 100644 --- a/partner_order.py +++ b/partner_order.py @@ -59,7 +59,7 @@ def Add_Partner_Order(diction): 'order_header_condition_paiement', 'order_header_ref_client', 'order_header_vendeur_id', 'order_header_ref_interne', 'order_header_total_ht', 'order_header_total_tax', 'order_header_total_ttc', 'order_header_status', 'order_header_type_reduction', 'order_header_type_reduction_valeur', 'order_header_montant_reduction', 'order_lines', 'order_header_type', - 'order_header_location_type'] + 'order_header_location_type', 'order_header_origin'] """ /!\ A noter que "order_lines" est tableau [] qui peut contenir les keys suivantes : 'order_line_formation', 'order_line_qty', 'order_line_prix_unitaire', 'order_line_tax', 'order_line_type_reduction', 'order_line_type_valeur', 'order_line_montant_reduction' @@ -187,6 +187,18 @@ def Add_Partner_Order(diction): data['order_header_status'] = "0" + order_header_origin = "" + if ("order_header_origin" in diction.keys()): + if diction['order_header_origin']: + order_header_origin = diction['order_header_origin'] + if (len(str(order_header_origin)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'order_header_origin' fait plus de 255 caractères ") + + return False, " - Le champ 'order_header_origin' fait plus de 255 caractères " + data['order_header_origin'] = diction['order_header_origin'] + order_header_ref_externe = "" if ("order_header_ref_externe" in diction.keys()): if diction['order_header_ref_externe']: @@ -199,6 +211,8 @@ def Add_Partner_Order(diction): return False, " - Le champ 'ref_externe' fait plus de 255 caractères " data['order_header_ref_externe'] = diction['order_header_ref_externe'] + + order_header_location_type = "" if ("order_header_location_type" in diction.keys()): if diction['order_header_location_type']: @@ -521,7 +535,7 @@ def Add_Partner_Quotation(diction): 'order_header_ref_interne', 'order_header_total_ht', 'order_header_total_tax', 'order_header_total_ttc', 'order_header_status', 'order_header_type_reduction', 'order_header_type_reduction_valeur', 'order_header_montant_reduction', 'order_lines', - 'order_header_type', 'order_header_location_type'] + 'order_header_type', 'order_header_location_type', 'order_header_origin'] """ /!\ A noter que "order_lines" est tableau [] qui peut contenir les keys suivantes : 'order_line_formation', 'order_line_qty', 'order_line_prix_unitaire', 'order_line_tax', 'order_line_type_reduction', 'order_line_type_valeur', 'order_line_montant_reduction' @@ -669,6 +683,20 @@ def Add_Partner_Quotation(diction): return False, " - Le champ 'ref_externe' fait plus de 255 caractères " data['order_header_ref_externe'] = diction['order_header_ref_externe'] + order_header_origin = "" + if ("order_header_origin" in diction.keys()): + if diction['order_header_origin']: + order_header_origin = diction['order_header_origin'] + if (len(str(order_header_origin)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'order_header_origin' fait plus de 255 caractères ") + + return False, " - Le champ 'order_header_origin' fait plus de 255 caractères " + data['order_header_origin'] = diction['order_header_origin'] + + + order_header_vendeur_id = "" if ("order_header_vendeur_id" in diction.keys()): if diction['order_header_vendeur_id']: @@ -976,7 +1004,7 @@ def Update_Partner_Order_Header(diction): 'order_header_ref_interne', 'order_header_total_ht', 'order_header_total_tax', 'order_header_total_ttc', 'order_header_status', 'order_header_type_reduction', 'order_header_type_reduction_valeur', 'order_header_montant_reduction', - 'order_header_id', 'order_header_type', 'order_header_location_type'] + 'order_header_id', 'order_header_type', 'order_header_location_type', 'order_header_origin'] @@ -1145,6 +1173,18 @@ def Update_Partner_Order_Header(diction): return False, " - Le champ 'ref_externe' fait plus de 255 caractères " data['order_header_ref_externe'] = diction['order_header_ref_externe'] + order_header_origin = "" + if ("order_header_origin" in diction.keys()): + order_header_origin = diction['order_header_origin'] + if (len(str(order_header_origin)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'order_header_origin' fait plus de 255 caractères ") + + return False, " - Le champ 'order_header_origin' fait plus de 255 caractères " + data['order_header_origin'] = diction['order_header_origin'] + + order_header_type_reduction = "" if ("order_header_type_reduction" in diction.keys()): order_header_type_reduction = diction['order_header_type_reduction'] @@ -1417,7 +1457,7 @@ def Update_Partner_Quotation_Header(diction): 'order_header_ref_interne', 'order_header_total_ht', 'order_header_total_tax', 'order_header_total_ttc', 'order_header_status', 'order_header_type_reduction', 'order_header_type_reduction_valeur', 'order_header_montant_reduction', - 'order_header_id', 'order_header_type', 'order_header_location_type'] + 'order_header_id', 'order_header_type', 'order_header_location_type', 'order_header_origin'] incom_keys = diction.keys() for val in incom_keys: @@ -1589,6 +1629,18 @@ def Update_Partner_Quotation_Header(diction): return False, " - Le champ 'ref_externe' fait plus de 255 caractères " data['order_header_ref_externe'] = diction['order_header_ref_externe'] + order_header_origin = "" + if ("order_header_origin" in diction.keys()): + order_header_origin = diction['order_header_origin'] + if (len(str(order_header_origin)) > 255): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Le champ 'order_header_origin' fait plus de 255 caractères ") + + return False, " - Le champ 'order_header_origin' fait plus de 255 caractères " + data['order_header_origin'] = diction['order_header_origin'] + + order_header_type_reduction = "" if ("order_header_type_reduction" in diction.keys()): order_header_type_reduction = diction['order_header_type_reduction'] @@ -3692,6 +3744,17 @@ def GerneratePDF_Partner_Order(diction): 3]) + " - Le client est invalide") return False, " Le client est invalide" + ### Ajout des données du client sur l'entete de la commande, exemple : le nom, email, etc + if("raison_sociale" in Order_header_client_data.keys() ): + Order_header_data['client_raison_sociale'] = Order_header_client_data['raison_sociale'] + + if ("nom" in Order_header_client_data.keys()): + Order_header_data['client_nom'] = Order_header_client_data['nom'] + + if ("email" in Order_header_client_data.keys()): + Order_header_data['client_email'] = Order_header_client_data['email'] + + # Recuperation des details de lignes de : partner_order_line filt_class_partner_recid = {'partner_owner_recid': str(my_partner['recid'])} filt_order_header_order_id = {'order_header_id': str(diction['order_id'])} @@ -3815,7 +3878,7 @@ def GerneratePDF_Partner_Order(diction): sourceHtml = contenu_doc_Template.render(params=Order_header_data, param_order_lines=Order_header_lines_data) - orig_file_name = "Part_Order_"+str(Order_header_data['order_header_ref_interne'])+".pdf" + orig_file_name = "Partner_Order_"+str(Order_header_data['order_header_ref_interne'])+".pdf" outputFilename = str(MYSY_GV.TEMPORARY_DIRECTORY) +"/"+ str(orig_file_name) # open output file for writing (truncated binary) @@ -4095,3 +4158,113 @@ def Send_Partner_Order_By_Email(diction): +""" +Conversion un devis en commande. +Cette fonction prends uniquement un devis, le duplique avec en mettant le type = commande +""" +def Convert_Quotation_to_Order(diction): + try: + field_list = ['order_id', 'token', ] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, "Les informations fournies sont incorrectes" + + """ + Verification de la liste des champs obligatoires + """ + field_list_obligatoire = ['order_id', 'token', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint( + str(inspect.stack()[0][3]) + " - : La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Les informations fournies sont incorrectes " + + query_get_data = {} + mytoken = "" + if ("token" in diction.keys()): + if diction['token']: + mytoken = diction['token'] + + local_status, my_partner = mycommon.Check_Connexion_And_Return_Partner_Data(diction) + if (local_status is not True): + return local_status, my_partner + + # Verification de la validité de l'order + qry = {'_id': ObjectId(str(diction['order_id'])), 'valide': '1', 'locked': '0','order_header_type':'devis', + 'partner_owner_recid': str(my_partner['recid'])} + print(" ### qry = ", qry) + + is_Order_Existe_Count = MYSY_GV.dbname['partner_order_header'].count_documents( + {'_id': ObjectId(str(diction['order_id'])), + 'valide': '1', 'locked': '0','order_header_type':'devis', + 'partner_owner_recid': str(my_partner['recid'])}) + + if (is_Order_Existe_Count != 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - La commande n'est pas valide ") + return False, " La commande n'est pas valide", + + Quotation_header_data_tmp = MYSY_GV.dbname['partner_order_header'].find_one( + {'_id': ObjectId(str(diction['order_id'])), + 'valide': '1', 'locked': '0', + 'order_header_type': 'devis', + 'partner_owner_recid': str( + my_partner['recid'])}, + ) + + + Quotation_header_data = MYSY_GV.dbname['partner_order_header'].find_one({'_id': ObjectId(str(diction['order_id'])), + 'valide': '1', 'locked': '0', + 'order_header_type':'devis', + 'partner_owner_recid': str( + my_partner['recid'])}, + {'order_header_comment':0, '_id':0, 'date_update':0, + 'order_header_type':0, 'order_header_ref_interne':0, + 'partner_owner_recid':0, + 'valide':0, 'locked':0}) + + New_Order_Header = Quotation_header_data + New_Order_Header['order_header_origin'] = Quotation_header_data_tmp['order_header_ref_interne'] + New_Order_Header['order_header_type'] = "commande" + New_Order_Header['token'] = mytoken + + local_status, local_retval = Add_Partner_Order(New_Order_Header) + + if( local_status is False ): + return local_status, local_retval + + new_created_order = MYSY_GV.dbname['partner_order_header'].find_one({'order_header_origin':str(Quotation_header_data_tmp['order_header_ref_interne'])}) + print(" La nouvelle Entete a été créer le num_order = ", new_created_order['order_header_ref_interne']) + + + # Traitement des ligne + for Quotation_line_data in MYSY_GV.dbname['partner_order_line'].find({'order_header_id': str(diction['order_id']), + 'valide': '1', 'locked': '0', + 'order_line_type':'devis', + 'partner_owner_recid': str( + my_partner['recid'])}, + {'order_header_comment':0, '_id':0, 'date_update':0, + 'order_line_status':0, 'order_line_type':0, + 'order_header_ref_interne':0, 'partner_owner_recid':0, + 'valide':0, 'locked':0}): + New_Order_Line = Quotation_line_data + New_Order_Line['order_header_ref_interne'] = new_created_order['order_header_ref_interne'] + New_Order_Line['order_header_id'] = str(new_created_order['_id']) + New_Order_Line['order_line_type'] = "commande" + New_Order_Line['token'] = mytoken + New_Order_Line['order_line_id'] = "" + New_Order_Line['order_line_status'] = "0" + local_add_line_status, local_add_line_retval = Add_Update_Partner_Order_Line(New_Order_Line) + + + return True, " Le devis a été correctement convertit en commande " + + + 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 convertir le devis en commande"