30/10/23 - 16h
parent
e527e2df5d
commit
58b5ad4e4e
|
@ -3,13 +3,8 @@
|
|||
<component name="ChangeListManager">
|
||||
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="23/10/2023 - 16h">
|
||||
<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$/base_specific_fields.py" beforeDir="false" afterPath="$PROJECT_DIR$/base_specific_fields.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/class_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/class_mgt.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/partner_client.py" beforeDir="false" afterPath="$PROJECT_DIR$/partner_client.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" />
|
||||
|
|
1030
Log/log_file.log
1030
Log/log_file.log
File diff suppressed because it is too large
Load Diff
|
@ -115,7 +115,7 @@ def Add_Update_SessionFormation(diction):
|
|||
|
||||
|
||||
if ("date_debut" in diction.keys()):
|
||||
mydata['date_debut'] = diction['date_debut']
|
||||
mydata['date_debut'] = str(diction['date_debut'])[0:10]
|
||||
|
||||
etape = "0"
|
||||
if ("session_etape" in diction.keys()):
|
||||
|
@ -129,7 +129,7 @@ def Add_Update_SessionFormation(diction):
|
|||
|
||||
|
||||
if ("date_fin" in diction.keys()):
|
||||
mydata['date_fin'] = diction['date_fin']
|
||||
mydata['date_fin'] = str(diction['date_fin'])[0:10]
|
||||
|
||||
|
||||
if ("distantiel" in diction.keys()):
|
||||
|
@ -194,10 +194,10 @@ def Add_Update_SessionFormation(diction):
|
|||
mydata['session_status'] = str(mycommon.tryInt(str(diction['session_status'])))
|
||||
|
||||
if ("date_debut_inscription" in diction.keys()):
|
||||
mydata['date_debut_inscription'] = diction['date_debut_inscription']
|
||||
mydata['date_debut_inscription'] = str(diction['date_debut_inscription'])[0:10]
|
||||
|
||||
if ("date_fin_inscription" in diction.keys()):
|
||||
mydata['date_fin_inscription'] = diction['date_fin_inscription']
|
||||
mydata['date_fin_inscription'] = str(diction['date_fin_inscription'])[0:10]
|
||||
|
||||
if ("formateur" in diction.keys()):
|
||||
mydata['formateur'] = diction['formateur']
|
||||
|
|
Loading…
Reference in New Issue