27/12/2023 - 13h

master
cherif 2023-12-27 13:00:51 +01:00
parent fa52f8d1de
commit 40de994880
4 changed files with 1156 additions and 3 deletions

View File

@ -5,9 +5,6 @@
<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$/Session_Formation.py" beforeDir="false" afterPath="$PROJECT_DIR$/Session_Formation.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/apprenant_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/apprenant_mgt.py" 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" />
</list>
<option name="SHOW_DIALOG" value="false" />

View File

@ -5846,6 +5846,11 @@ def GetAttendeeDetail_perSession_from_line_id(diction):
if ("session_id" in local_Insc_retval.keys()):
my_retrun_dict['session_id'] = local_Insc_retval['session_id']
if ("apprenant_id" in local_Insc_retval.keys()):
my_retrun_dict['apprenant_id'] = local_Insc_retval['apprenant_id']
else:
my_retrun_dict['apprenant_id'] = ""
if ("code_session" in local_Insc_retval['inscription_collectoin'][0].keys()):
my_retrun_dict['code_session'] = str(local_Insc_retval['inscription_collectoin'][0]['code_session'])

File diff suppressed because one or more lines are too long

View File

@ -3062,6 +3062,11 @@ def GetAttendeeDetail_perSession(diction):
if ("session_id" in local_Insc_retval.keys()):
my_retrun_dict['session_id'] = local_Insc_retval['session_id']
if ("apprenant_id" in local_Insc_retval.keys()):
my_retrun_dict['apprenant_id'] = local_Insc_retval['apprenant_id']
else:
my_retrun_dict['apprenant_id'] = ""
if ("code_session" in local_Insc_retval['inscription_collectoin'][0].keys()):
my_retrun_dict['code_session'] = str(local_Insc_retval['inscription_collectoin'][0]['code_session'])