26/09/23 - 23h

master
cherif 2023-09-26 22:59:28 +02:00
parent 5b80750454
commit e720bed603
4 changed files with 421 additions and 15 deletions

View File

@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="25/09/2023 - 16h40">
<change afterPath="$PROJECT_DIR$/user_access_right.py" afterDir="false" />
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="26/09/23 - 19h">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Inscription_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/Inscription_mgt.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/Log/log_file.log" beforeDir="false" afterPath="$PROJECT_DIR$/Log/log_file.log" afterDir="false" />
<change beforePath="$PROJECT_DIR$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/prj_common.py" beforeDir="false" afterPath="$PROJECT_DIR$/prj_common.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/email_inscription_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/email_inscription_mgt.py" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -70,13 +69,6 @@
<option name="presentableId" value="Default" />
<updated>1680804787304</updated>
</task>
<task id="LOCAL-00063" summary="10/08/23 - 16h">
<created>1691675826292</created>
<option name="number" value="00063" />
<option name="presentableId" value="LOCAL-00063" />
<option name="project" value="LOCAL" />
<updated>1691675826292</updated>
</task>
<task id="LOCAL-00064" summary="11/08/23 - 16h">
<created>1691772404815</created>
<option name="number" value="00064" />
@ -413,7 +405,14 @@
<option name="project" value="LOCAL" />
<updated>1695652896870</updated>
</task>
<option name="localTasksCounter" value="112" />
<task id="LOCAL-00112" summary="26/09/23 - 19h">
<created>1695748133845</created>
<option name="number" value="00112" />
<option name="presentableId" value="LOCAL-00112" />
<option name="project" value="LOCAL" />
<updated>1695748133845</updated>
</task>
<option name="localTasksCounter" value="113" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -428,7 +427,6 @@
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="28/08/23 - 13h30" />
<MESSAGE value="28/08/23 - 20h30" />
<MESSAGE value="28/08/23 - 19h30" />
<MESSAGE value="30/08/23 - 14h" />
@ -453,6 +451,7 @@
<MESSAGE value="22/09/2023 - 18h53" />
<MESSAGE value="25/09/2023 - 12h40" />
<MESSAGE value="25/09/2023 - 16h40" />
<option name="LAST_COMMIT_MESSAGE" value="25/09/2023 - 16h40" />
<MESSAGE value="26/09/23 - 19h" />
<option name="LAST_COMMIT_MESSAGE" value="26/09/23 - 19h" />
</component>
</project>

View File

@ -595,6 +595,36 @@ def UpdateStagiairetoClass(diction):
if diction['comment']:
email_data['comment'] = diction['comment']
if ("code_session" in local_tmp_session_data.keys()):
if local_tmp_session_data['code_session']:
email_data['code_session'] = local_tmp_session_data['code_session']
if ("date_debut" in local_tmp_session_data.keys()):
if local_tmp_session_data['date_debut']:
email_data['date_debut'] = str(local_tmp_session_data['date_debut'])[0:10]
if ("date_fin" in local_tmp_session_data.keys()):
if local_tmp_session_data['date_fin']:
email_data['date_fin'] = str(local_tmp_session_data['date_fin'])[0:10]
if ("adresse" in local_tmp_session_data.keys()):
if local_tmp_session_data['adresse']:
email_data['adresse'] = local_tmp_session_data['adresse']
if ("code_postal" in local_tmp_session_data.keys()):
if local_tmp_session_data['code_postal']:
email_data['code_postal'] = local_tmp_session_data['code_postal']
if ("ville" in local_tmp_session_data.keys()):
if local_tmp_session_data['ville']:
email_data['ville'] = local_tmp_session_data['ville']
if ("session_ondemande" in local_tmp_session_data.keys()):
if local_tmp_session_data['session_ondemande']:
email_data['session_ondemande'] = local_tmp_session_data['session_ondemande']
# ici recup du titre
lms_class_code = ""
for local_tmp_myclass in MYSY_GV.dbname['myclass'].find(
@ -945,6 +975,14 @@ def SendInscriptionConfirmation(diction):
session_ondemande = local_info_session[0]['session_ondemande']
data_mail['session_ondemande'] = session_ondemande
code_session = ""
if ("code_session" in local_info_session[0].keys()):
if local_info_session[0]['code_session']:
code_session = local_info_session[0]['code_session']
data_mail['code_session'] = code_session
local_status, local_message = email_session.incription_training_confirmation_mail(data_mail)
@ -1042,6 +1080,12 @@ def SendPre_InscriptionEmail(diction):
code_postal = local_info_session['code_postal']
data_mail['code_postal'] = code_postal
code_session = ""
if ("code_session" in local_info_session.keys()):
if local_info_session['code_session']:
code_session = local_info_session['code_session']
data_mail['code_session'] = code_postal
date_debut = ""
if ("date_debut" in local_info_session.keys()):

View File

@ -1821139,3 +1821139,365 @@ INFO:root:2023-09-26 19:04:51.934123 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 19:04:51.934123 : ++ LMS_BAS_URL mysy-training.com/ ++
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 877-541-979
INFO:root:2023-09-26 21:32:47.971458 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 21:32:47.972466 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 21:32:47.972466 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 21:32:47.973456 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 21:32:47.973456 : ++ 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-26 21:33:07.442258 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 21:33:07.442258 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 21:33:07.442258 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 21:33:07.442258 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 21:33:07.442258 : ++ LMS_BAS_URL mysy-training.com/ ++
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 877-541-979
INFO:root:2023-09-26 21:36:21.268351 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:36:21.270351 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:36:21.272358 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:36:21] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:36:21] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:36:21] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:38:55.290292 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/partner_login/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:38:55.578274 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:38:55.582526 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:38:55.590035 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:38:55.599293 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:38:55.603289 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:38:55.693139 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:38:55] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:39:12.847468 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:39:12] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:39:12.852725 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:39:12] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:39:16.876565 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:39:16] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:39:37.248775 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:39:37] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:03.973768 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:03.977760 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:20.318866 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:42:20.324401 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:42:20.327892 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:20] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:20.336669 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:20] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:20] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:20.463427 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:20] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:20.465987 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:20] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:42:23.913692 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:42:23] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:43:51.118337 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:43:51] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:43:51.123034 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:43:51] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:47:17.730597 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:47:17] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:47:17.736816 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:47:17] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:49:44.813519 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:44] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:49:58.431806 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:49:58.436651 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:49:58.443276 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:58] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:49:58.453733 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:58] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:58] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:49:58.612315 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:58] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:49:58.617660 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:49:58] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:50:02.080249 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:50:02] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:50:14.564402 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:50:14] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:51:00.990925 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:51:00] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:51:00.993924 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:51:01] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:55:26.331354 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:55:26.335281 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:55:26.342054 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:55:26.349372 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:55:26.499902 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:26] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:55:26.503091 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:26] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:55:41.244133 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:55:41] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:56:05.684016 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:56:05] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:23.578777 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:23] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:23.605020 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:57:23.612177 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 21:57:23.620181 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:23] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:23] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:23.863786 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:23.870290 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:30.161536 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:30] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:57:55.478992 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:57:55] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:58:56.534535 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:58:56] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:58:56.539920 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:58:56] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:59:33.543692 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:59:33] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 21:59:33.548508 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 21:59:33] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:00:23.727858 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:00:23] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:00:23.736990 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:00:23] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:00:46.885436 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:00:46] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:00:46.901648 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:00:46] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:03:29.727278 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:03:29] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:03:29.732443 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:03:29] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:03:40.555026 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:03:40] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:05:05.339271 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:05:05] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:05:05.346064 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:05:05] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:06:43.083352 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:06:43.091670 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:43] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:43] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:06:56.946030 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:06:56.956344 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:06:56.958550 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:06:56.973930 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:06:57.087800 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:57] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:06:57.096453 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:06:57] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:07:08.776706 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:07:08] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:10:07.251804 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:10:07] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:10:07.262960 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:10:07] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:12:37.364943 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:12:37] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:12:37.371173 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:12:37] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:13.953832 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:13:13.960209 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:13:13.969881 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:13.977739 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:14.171697 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:14] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:14.177697 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:14] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:17.749101 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:17] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:13:31.238560 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:13:31] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:14:02.676809 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:14:02.681378 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:14:02.689489 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:02] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:02] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:14:02.703263 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:02] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:14:02.925244 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:14:02.930239 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:02] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:02] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:14:13.033848 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:13] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:14:18.952612 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:14:18] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:16:03.475991 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:16:03] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:16:03.481882 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:16:03] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:17:32.817267 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:17:32.823780 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:17:32.827317 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:17:32] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:17:32] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:17:32.842665 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:17:32] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:17:32.967155 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:17:32] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:17:32.983788 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:17:32] "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\\Inscription_mgt.py', reloading
INFO:werkzeug: * Restarting with stat
INFO:root:2023-09-26 22:26:27.636425 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:26:27.637751 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:26:27.637751 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:26:27.637751 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:26:27.637751 : ++ 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\\email_inscription_mgt.py', reloading
INFO:werkzeug: * Restarting with stat
INFO:root:2023-09-26 22:27:45.759863 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:27:45.760855 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:27:45.760855 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:27:45.760855 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:27:45.760855 : ++ 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-26 22:35:42.257533 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:35:42.257533 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:35:42.257533 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:35:42.257533 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:35:42.257533 : ++ 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-26 22:41:17.084963 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:41:17.084963 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:41:17.084963 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:41:17.084963 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:41:17.084963 : ++ 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-26 22:41:40.904192 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:41:40.904192 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:41:40.905198 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:41:40.905198 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:41:40.905198 : ++ 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-26 22:42:36.163528 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:42:36.163528 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:42:36.163528 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:42:36.163528 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:42:36.163528 : ++ 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-26 22:43:11.946554 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:43:11.947545 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:43:11.947545 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:43:11.947545 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:43:11.947545 : ++ 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-26 22:44:00.859188 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:44:00.859188 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:44:00.859188 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:44:00.859188 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:44:00.859188 : ++ 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-26 22:44:52.994544 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:44:52.994544 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:44:52.994544 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:44:52.994544 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:44:52.995544 : ++ 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-26 22:45:42.864070 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:45:42.865065 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:45:42.865065 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:45:42.865065 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:45:42.865065 : ++ 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-26 22:46:09.295252 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:46:09.295252 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:46:09.295252 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:46:09.295252 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:46:09.296260 : ++ 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-26 22:46:49.317263 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:46:49.317263 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:46:49.317263 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:46:49.317263 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:46:49.317263 : ++ 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-26 22:50:09.936129 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++
INFO:root:2023-09-26 22:50:09.936644 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++
INFO:root:2023-09-26 22:50:09.936644 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++
INFO:root:2023-09-26 22:50:09.936644 : ++ FLASK PORT 5001 ++
INFO:root:2023-09-26 22:50:09.936644 : ++ LMS_BAS_URL mysy-training.com/ ++
WARNING:werkzeug: * Debugger is active!
INFO:werkzeug: * Debugger PIN: 877-541-979
INFO:root:2023-09-26 22:52:40.860983 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:52:40.864076 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:52:40.868627 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:40] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:40] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:52:40.889453 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:40] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:52:41.048922 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:41] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:52:41.053489 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:41] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:52:46.664097 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:46] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:52:52.787195 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:52:52] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:58:13.308113 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:58:13.309346 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:58:13.311360 : Security check : IP adresse '127.0.0.1' connected
INFO:root:2023-09-26 22:58:13.324540 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:13] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:13] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 -
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:13] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:58:13.452420 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:13] "POST /myclass/api/Get_Personnalisable_Collection/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:58:13.455416 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:13] "POST /myclass/api/Get_List_Partner_Document_no_filter/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:58:21.144137 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:21] "POST /myclass/api/Get_Given_Partner_Document/ HTTP/1.1" 200 -
INFO:root:2023-09-26 22:58:27.516311 : Security check : IP adresse '127.0.0.1' connected
INFO:werkzeug:127.0.0.1 - - [26/Sep/2023 22:58:27] "POST /myclass/api/Get_Given_Personnalisable_Fields_By_template_ref_interne/ HTTP/1.1" 200 -

View File

@ -509,7 +509,7 @@ def Pre_incription_training_confirmation_mail(diction):
"""
Verification de la liste des champs obligatoires
"""
field_list_obligatoire = ['nom', 'prenom', 'email', 'date_du', 'date_au', 'title', 'distantiel', 'presentiel', 'partner_owner_recid']
field_list_obligatoire = ['nom', 'prenom', 'email', 'date_du', 'code_session', 'date_au', 'title', 'distantiel', 'presentiel', 'partner_owner_recid']
for val in field_list_obligatoire:
if val not in diction:
mycommon.myprint(
@ -564,6 +564,7 @@ def Pre_incription_training_confirmation_mail(diction):
"adresse":str(local_adress),
"email": str(diction['email']),
"session_ondemande": str(session_ondemande),
"code_session": str(diction['code_session']),
},
}