master
cherif 2024-08-24 22:22:15 +02:00
parent 89a59f490b
commit 586e52504d
4 changed files with 9273 additions and 13 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="ss">
<list default="true" id="c6d0259a-16e1-410d-91a1-830590ee2a08" name="Changes" comment="ddd">
<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$/base_partner_catalog_config.py" beforeDir="false" afterPath="$PROJECT_DIR$/base_partner_catalog_config.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" />
</list>
<option name="SHOW_DIALOG" value="false" />
@ -76,13 +75,6 @@
<option name="presentableId" value="Default" />
<updated>1680804787304</updated>
</task>
<task id="LOCAL-00331" summary="12/06/2024 - 21h30">
<created>1718220447607</created>
<option name="number" value="00331" />
<option name="presentableId" value="LOCAL-00331" />
<option name="project" value="LOCAL" />
<updated>1718220447608</updated>
</task>
<task id="LOCAL-00332" summary="15/06/2024 - 21h30">
<created>1718490413169</created>
<option name="number" value="00332" />
@ -419,7 +411,14 @@
<option name="project" value="LOCAL" />
<updated>1724424786373</updated>
</task>
<option name="localTasksCounter" value="380" />
<task id="LOCAL-00380" summary="ddd">
<created>1724497994599</created>
<option name="number" value="00380" />
<option name="presentableId" value="LOCAL-00380" />
<option name="project" value="LOCAL" />
<updated>1724497994600</updated>
</task>
<option name="localTasksCounter" value="381" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
@ -477,7 +476,6 @@
<MESSAGE value="11/08/2024 - 12h32s" />
<MESSAGE value="11/08/2024 - 18h32s" />
<MESSAGE value="dd" />
<MESSAGE value="ddd" />
<MESSAGE value="dddss" />
<MESSAGE value="17/08/2024 - 20h55" />
<MESSAGE value="18/08/2024 - 16h55" />
@ -486,6 +484,7 @@
<MESSAGE value="20/08/2024 - 21h55" />
<MESSAGE value="21/08/2024 - 13h55" />
<MESSAGE value="ss" />
<option name="LAST_COMMIT_MESSAGE" value="ss" />
<MESSAGE value="ddd" />
<option name="LAST_COMMIT_MESSAGE" value="ddd" />
</component>
</project>

File diff suppressed because it is too large Load Diff

View File

@ -106,7 +106,8 @@ def Add_Update_Partner_Catalog_Pub_Config(diction):
"""
Verification des input acceptés
"""
field_list = ['token', '_id','logo', 'message_1_txt', 'theme_id', 'banniere_img', 'message_2_txt']
field_list = ['token', '_id','logo', 'message_1_txt', 'theme_id', 'banniere_img', 'message_2_txt',
'message_3_txt']
incom_keys = diction.keys()
for val in incom_keys:

View File

@ -6397,6 +6397,11 @@ def Get_Partner_Data_From_Subdomain(diction):
if (config_partner_catalog_data and "message_2_txt" in config_partner_catalog_data.keys()):
user['catalog_pub_message_2_txt'] = config_partner_catalog_data['message_2_txt']
user['catalog_pub_message_3_txt'] = ""
if (config_partner_catalog_data and "message_3_txt" in config_partner_catalog_data.keys()):
user['catalog_pub_message_3_txt'] = config_partner_catalog_data['message_3_txt']
user['catalog_pub_banniere_img'] = ""
if (config_partner_catalog_data and "banniere_img" in config_partner_catalog_data.keys()):
user['catalog_pub_banniere_img'] = config_partner_catalog_data['banniere_img']