11/04/2024 - 17h02

master
cherif 2024-04-11 17:02:48 +02:00
parent 5ce4aa4e4d
commit 12ea821678
3 changed files with 2744 additions and 17 deletions

View File

@ -1,13 +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="10/04/2024 - 11h50">
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="10/04/2024 - 22h50">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" 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$/class_mgt.py" beforeDir="false" afterPath="$PROJECT_DIR$/class_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" />
<change beforePath="$PROJECT_DIR$/wrapper.py" beforeDir="false" afterPath="$PROJECT_DIR$/wrapper.py" afterDir="false" />
<change beforePath="$PROJECT_DIR$/ressources_humaines.py" beforeDir="false" afterPath="$PROJECT_DIR$/ressources_humaines.py" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -77,13 +74,6 @@
<option name="presentableId" value="Default" />
<updated>1680804787304</updated>
</task>
<task id="LOCAL-00216" summary="08/02/2024 -20h">
<created>1707425449893</created>
<option name="number" value="00216" />
<option name="presentableId" value="LOCAL-00216" />
<option name="project" value="LOCAL" />
<updated>1707425449894</updated>
</task>
<task id="LOCAL-00217" summary="09/02/24 - 22h">
<created>1707512374459</created>
<option name="number" value="00217" />
@ -420,7 +410,14 @@
<option name="project" value="LOCAL" />
<updated>1712742562301</updated>
</task>
<option name="localTasksCounter" value="265" />
<task id="LOCAL-00265" summary="10/04/2024 - 22h50">
<created>1712781951218</created>
<option name="number" value="00265" />
<option name="presentableId" value="LOCAL-00265" />
<option name="project" value="LOCAL" />
<updated>1712781951219</updated>
</task>
<option name="localTasksCounter" value="266" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -462,7 +459,6 @@
</option>
</component>
<component name="VcsManagerConfiguration">
<MESSAGE value="07/03/2024 - 22h30" />
<MESSAGE value="ddd" />
<MESSAGE value="ddds" />
<MESSAGE value="10/03/24 - 21h" />
@ -487,6 +483,7 @@
<MESSAGE value="09/04/2024 - 15h19" />
<MESSAGE value="09/04/2024 - 23h50" />
<MESSAGE value="10/04/2024 - 11h50" />
<option name="LAST_COMMIT_MESSAGE" value="10/04/2024 - 11h50" />
<MESSAGE value="10/04/2024 - 22h50" />
<option name="LAST_COMMIT_MESSAGE" value="10/04/2024 - 22h50" />
</component>
</project>

File diff suppressed because it is too large Load Diff

View File

@ -2488,7 +2488,7 @@ def Add_Ressource_Humaine_mass(file=None, Folder=None, diction=None):
df['civilite'].values[n]) + "- est invalide. Les valeurs autorisées : 'm', 'mme', 'neutre' "
mydata['civilite'] = civilite
mydata['civilite'] = str(civilite).lower()
ville = ""
@ -2548,7 +2548,7 @@ def Add_Ressource_Humaine_mass(file=None, Folder=None, diction=None):
clean_dict = {k: mydata[k] for k in mydata if ( str(mydata[k]) != "nan") }
print( "#### clean_dict ", clean_dict)
#print( "#### clean_dict ", clean_dict)
is_employe_exist_count = MYSY_GV.dbname['ressource_humaine'].count_documents({'email':str(mydata['email']), 'partner_recid':str(partner_recid),
'valide':'1', 'locked':'0'})