20/12/22 - 21h30

master
cherif 2022-12-20 22:12:00 +01:00
parent a13aea8290
commit 06c2b5870e
4 changed files with 606 additions and 4 deletions

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="1122d9e2-679f-46d6-8c4f-97e9ae4041b5" name="Changes" comment="20/12/22 - 11h30">
<list default="true" id="1122d9e2-679f-46d6-8c4f-97e9ae4041b5" name="Changes" comment="20/12/22 - 15h30">
<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" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -155,7 +155,14 @@
<option name="project" value="LOCAL" />
<updated>1671533280190</updated>
</task>
<option name="localTasksCounter" value="13" />
<task id="LOCAL-00013" summary="20/12/22 - 15h30">
<created>1671545843110</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1671545843110</updated>
</task>
<option name="localTasksCounter" value="14" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -181,7 +188,8 @@
<MESSAGE value="15/12/2022 - 22h00" />
<MESSAGE value="16/12/2022 - 22h00" />
<MESSAGE value="20/12/22 - 11h30" />
<option name="LAST_COMMIT_MESSAGE" value="20/12/22 - 11h30" />
<MESSAGE value="20/12/22 - 15h30" />
<option name="LAST_COMMIT_MESSAGE" value="20/12/22 - 15h30" />
</component>
<component name="XDebuggerManager">
<breakpoint-manager>

View File

@ -1001,6 +1001,10 @@ def PrintAttendeeDetail_perSession(diction):
my_retrun_dict['price'] = local_Insc_retval['price']
my_retrun_dict['inscription_validation_date'] = local_Insc_retval['inscription_validation_date']
my_retrun_dict['evaluation'] = local_Insc_retval['eval_eval']
my_retrun_dict['note_eval'] = local_Insc_retval['eval_note']
my_retrun_dict['date_eval'] = str(local_Insc_retval['eval_date'])[0:10]
v = local_Insc_retval['_id'].generation_time
my_retrun_dict['created_date'] = str(v.strftime("%d/%m/%Y"))

File diff suppressed because one or more lines are too long

View File

@ -2533,6 +2533,12 @@ def GetAttendeeDetail_perSession(diction):
my_retrun_dict['price'] = local_Insc_retval['price']
my_retrun_dict['inscription_validation_date'] = local_Insc_retval['inscription_validation_date']
my_retrun_dict['eval_eval'] = local_Insc_retval['eval_eval']
my_retrun_dict['eval_note'] = local_Insc_retval['eval_note']
my_retrun_dict['eval_pedagogie'] = local_Insc_retval['eval_pedagogie']
my_retrun_dict['eval_date'] = str(local_Insc_retval['eval_date'])[0:10]
v = local_Insc_retval['_id'].generation_time
my_retrun_dict['created_date'] = str(v.strftime("%d/%m/%Y"))