Commit f2e7a6e9 by Yvon

fix added columns in export comptable by removing semicolons if found in coop name

parent 4ceedb8c
Pipeline #3015 failed with stage
in 1 minute 8 seconds
......@@ -182,7 +182,7 @@ def retrieve_odoo_coop_data (coop_ids):
for coop in coops:
if not (str(coop['barcode_base']) in coops_dict.keys()):
coops_dict[str(coop['barcode_base'])] = \
str(coop['barcode_base']) + ' - ' + coop['name']
str(coop['barcode_base']) + ' - ' + coop['name'].replace(';','')
return coops_dict
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment