07/10/2023 - 22h40

master
cherif 2023-10-07 22:41:11 +02:00
parent e3aac2ba0c
commit a27718bc27
3 changed files with 1391 additions and 14 deletions

View File

@ -1,11 +1,10 @@
<?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="06/10/2023 - 21h40">
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="07/10/2023 - 16h40">
<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$/email_inscription_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/email_inscription_mgt.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/lms_chamilo/mysy_lms.py" beforeDir="false" afterPath="$PROJECT_DIR$/lms_chamilo/mysy_lms.py" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -69,13 +68,6 @@
<option name="presentableId" value="Default" />
<updated>1680804787304</updated>
</task>
<task id="LOCAL-00077" summary="21/08/23 - 15h">
<created>1692623620293</created>
<option name="number" value="00077" />
<option name="presentableId" value="LOCAL-00077" />
<option name="project" value="LOCAL" />
<updated>1692623620294</updated>
</task>
<task id="LOCAL-00078" summary="21/08/23 - 21h">
<created>1692643343193</created>
<option name="number" value="00078" />
@ -412,7 +404,14 @@
<option name="project" value="LOCAL" />
<updated>1696628469998</updated>
</task>
<option name="localTasksCounter" value="126" />
<task id="LOCAL-00126" summary="07/10/2023 - 16h40">
<created>1696690295543</created>
<option name="number" value="00126" />
<option name="presentableId" value="LOCAL-00126" />
<option name="project" value="LOCAL" />
<updated>1696690295544</updated>
</task>
<option name="localTasksCounter" value="127" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -427,7 +426,6 @@
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="08/09/2023 - 18h30" />
<MESSAGE value="11/09/23 - 12h30" />
<MESSAGE value="11/09/23 - 19h" />
<MESSAGE value="12/09/2023 - 18h" />
@ -452,6 +450,7 @@
<MESSAGE value="03/10/2023 - 21h40" />
<MESSAGE value="04/10/2023 - 21h40" />
<MESSAGE value="06/10/2023 - 21h40" />
<option name="LAST_COMMIT_MESSAGE" value="06/10/2023 - 21h40" />
<MESSAGE value="07/10/2023 - 16h40" />
<option name="LAST_COMMIT_MESSAGE" value="07/10/2023 - 16h40" />
</component>
</project>

File diff suppressed because one or more lines are too long

View File

@ -3580,7 +3580,7 @@ def Push_Class_To_MySy_LMS(diction):
new_class_id = str(cur.lastrowid)
query_access_url_rel_course = " INSERT INTO access_url_rel_course (c_id,access_url_id) VALUES ('"+str(new_class_id)+"', '1') " #, ('"+str(new_class_id)+"', '"+ str( data_to_push['lms_virtualhost_id']) +"')) "
query_access_url_rel_course = " INSERT INTO access_url_rel_course (c_id,access_url_id) VALUES ('"+str(new_class_id)+"', '1') , ('"+str(new_class_id)+"', '"+ str( data_to_push['lms_virtualhost_id']) +"') "
print(" #### query_access_url_rel_course = ", query_access_url_rel_course)
try:
cur.execute(query_access_url_rel_course)