17/04/2024 - 21h04

master
cherif 2024-04-17 21:05:06 +02:00
parent f62711ebb3
commit 9e03bbd6f1
4 changed files with 4270 additions and 14 deletions

View File

@ -1,12 +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="12/04/2024 - 15h05">
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="14/04/2024 - 23h05">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/GlobalVariable.py" beforeDir="false" afterPath="$PROJECT_DIR$/GlobalVariable.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/E_Sign_Document.py" beforeDir="false" afterPath="$PROJECT_DIR$/E_Sign_Document.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$/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/main.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/survey_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/survey_mgt.py" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
@ -77,13 +75,6 @@
<option name="presentableId" value="Default" />
<updated>1680804787304</updated>
</task>
<task id="LOCAL-00219" summary="11/02/2024 - 22h">
<created>1707685370013</created>
<option name="number" value="00219" />
<option name="presentableId" value="LOCAL-00219" />
<option name="project" value="LOCAL" />
<updated>1707685370016</updated>
</task>
<task id="LOCAL-00220" summary="sdsdqs">
<created>1707775980253</created>
<option name="number" value="00220" />
@ -420,7 +411,14 @@
<option name="project" value="LOCAL" />
<updated>1712927149482</updated>
</task>
<option name="localTasksCounter" value="268" />
<task id="LOCAL-00268" summary="14/04/2024 - 23h05">
<created>1713129649065</created>
<option name="number" value="00268" />
<option name="presentableId" value="LOCAL-00268" />
<option name="project" value="LOCAL" />
<updated>1713129649067</updated>
</task>
<option name="localTasksCounter" value="269" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -462,7 +460,6 @@
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="10/03/24 - 21h" />
<MESSAGE value="11/03/2024 - 15h" />
<MESSAGE value="12/03/2024 - 20h30" />
<MESSAGE value="19/03/2024 - 17h30" />
@ -487,6 +484,7 @@
<MESSAGE value="10/04/2024 - 22h50" />
<MESSAGE value="11/04/2024 - 17h02" />
<MESSAGE value="12/04/2024 - 15h05" />
<option name="LAST_COMMIT_MESSAGE" value="12/04/2024 - 15h05" />
<MESSAGE value="14/04/2024 - 23h05" />
<option name="LAST_COMMIT_MESSAGE" value="14/04/2024 - 23h05" />
</component>
</project>

View File

@ -650,6 +650,9 @@ def Create_E_Signature_For_E_Document(file_img=None, Folder=None, diction=None):
'secret_key_signature': str(diction['secret_key_signature']),
'email_destinataire': str(diction['email_destinataire'])}
print(" ### new_data = ", new_data)
print(" ### qry_key = ", qry_key)
result = MYSY_GV.dbname['e_document_signe'].find_one_and_update(
qry_key,

File diff suppressed because one or more lines are too long

View File

@ -94,6 +94,8 @@ def Get_Given_Survey_Data_No_Token(diction):
class_title = ""
class_internal_url = ""
class_id = ""
session_code = ""
session_title = ""
session_code_date_debut = ""
@ -110,6 +112,8 @@ def Get_Given_Survey_Data_No_Token(diction):
if( my_class_data and "title" in my_class_data.keys() ):
class_title = my_class_data['title']
class_internal_url = my_class_data['internal_url']
class_id = str(my_class_data['_id'])
session_code = my_session_data['code_session']
session_title = my_session_data['titre']
session_code_date_debut = my_session_data['date_debut']
@ -117,6 +121,8 @@ def Get_Given_Survey_Data_No_Token(diction):
user['class_title'] = class_title
user['class_internal_url'] = class_internal_url
user['class_id'] = class_id
user['session_code'] = session_code
user['session_title'] = session_title
user['session_code_date_debut'] = session_code_date_debut