Compare commits
5 Commits
20230426-1
...
20230620-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92b3a76733 | ||
|
|
5adbc77555 | ||
|
|
1146ff01c7 | ||
|
|
e4c075f6ef | ||
|
|
f05a56bc5a |
@@ -20,4 +20,5 @@ class cls_addresse:
|
||||
street = None
|
||||
street_cpl = None
|
||||
npa = None
|
||||
city = None
|
||||
city = None
|
||||
addr_2 = None
|
||||
@@ -16,6 +16,57 @@ class cls_Invoice:
|
||||
self.data = obj
|
||||
self.a_index = {"invoice": [], "intervention": [], "patient": [], "debtor": [], "articles": []}
|
||||
self.index_counter = 0
|
||||
self.format_debitor_addr_2()
|
||||
def format_debitor_addr_2(self):
|
||||
debitor = self.Debtor
|
||||
con = ""
|
||||
concat_str = ""
|
||||
if "name" in debitor.keys():
|
||||
if debitor["name"] is not None:
|
||||
concat_str += con + debitor["name"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
|
||||
if debitor["gender"] is not None:
|
||||
concat_str += con + "Monsieur" if debitor["gender"] == "Masculin" else con + "Madame"
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
if debitor["lastname"] is not None:
|
||||
concat_str += con + self.ifNotNull(debitor["lastname"]) + " " + self.ifNotNull(
|
||||
debitor["firstname"])
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
if debitor["complement"] is not None:
|
||||
concat_str += con + debitor["complement"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
if debitor["street"] is not None:
|
||||
concat_str += con + self.ifNotNull(debitor["street"]) + " " + self.ifNotNull(
|
||||
debitor["street_number"])
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
if debitor["city"] is not None:
|
||||
concat_str += con + self.ifNotNull(debitor["postal_code"]) + " " + self.ifNotNull(
|
||||
debitor["city"])
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
if debitor["country_name"] != "Suisse":
|
||||
concat_str += con + debitor["country_name"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\n"
|
||||
self.Patient["addr_2"] = concat_str
|
||||
self.Patient["selfish"] = self.is_addr_2_selfish(self.Patient)
|
||||
def is_addr_2_selfish(self, patient):
|
||||
print(patient)
|
||||
temp_addr_2 = str(patient["addr_2"]).replace("Monsieur","").replace("Madame","").replace("\n","").replace(" ","")
|
||||
str_compare = patient['lastname'].replace('.','') + patient['firstname'].replace('.','') + self.ifNotNull(patient['complement']).strip()+ self.ifNotNull(patient['street']).strip() + self.ifNotNull(patient['street_number']).strip() + self.ifNotNull(patient['postal_code']).strip() +self.ifNotNull(patient['city']).strip()
|
||||
str_compare = str_compare.replace(" ","")
|
||||
print(f"is_addr_2_selfish ? {str_compare} <> {temp_addr_2} = {str_compare == temp_addr_2}")
|
||||
return str_compare == temp_addr_2
|
||||
def ifNotNull(self, value, ret=""):
|
||||
if value == None or value == "None":
|
||||
return ret
|
||||
return value.strip()
|
||||
|
||||
class cls_Col:
|
||||
data = []
|
||||
|
||||
@@ -12,7 +12,7 @@ class Check_addresses_popup(Toplevel):
|
||||
if(item_1["complement"] is None):
|
||||
item_1["complement"] = ""
|
||||
|
||||
self.geometry(f"700x300+{parent.winfo_x() + 25 }+{parent.winfo_y() +25 }")
|
||||
self.geometry(f"700x450+{parent.winfo_x() + 25 }+{parent.winfo_y() +25 }")
|
||||
self.resizable(True,True)
|
||||
self.iconbitmap("./logo_clerc_03X_icon.ico")
|
||||
self.title(f"Choix de l'adresse à conserver {item_1['fip_number']} / {factureID}. Code débiteur: {debitor['code']}")
|
||||
@@ -26,6 +26,12 @@ class Check_addresses_popup(Toplevel):
|
||||
lbf_old = LabelFrame(self, text="Données Winbiz")
|
||||
lbf_old.grid(row=0, column=1, sticky='NSEW', padx=5, pady=5)
|
||||
|
||||
lbf_addr_2_new = LabelFrame(self, text="Livraison Attrib")
|
||||
lbf_addr_2_new.grid(row=1, column=0, sticky='WE', padx=5, pady=5)
|
||||
|
||||
lbf_addr_2_old = LabelFrame(self, text="Livraison Winbiz")
|
||||
lbf_addr_2_old.grid(row=1, column=1, sticky='NSEW', padx=5, pady=5)
|
||||
|
||||
str_address_1 = ""
|
||||
|
||||
fonts = []
|
||||
@@ -40,6 +46,11 @@ class Check_addresses_popup(Toplevel):
|
||||
self.add_compares_element(new_frame=lbf_new, old_frame=lbf_old, label="NPA/Localité:", str1=f"{item_1['postal_code']} {item_1['city']}", str2=f"{item_2.npa} {item_2.city}")
|
||||
|
||||
|
||||
if int(debitor["code"]) < 100:
|
||||
self.add_compares_element(new_frame=lbf_addr_2_new, old_frame=lbf_addr_2_old, label="Adresse livraison:", str1=item_1["addr_2"],
|
||||
str2=self.ifNotNull(item_2.addr_2))
|
||||
|
||||
|
||||
str_address_1 += item_1['insurance_policy_number'].replace('.', '')
|
||||
str_address_1 += item_1['lastname'].strip()
|
||||
str_address_1 += item_1['firstname'].strip()
|
||||
@@ -63,10 +74,10 @@ class Check_addresses_popup(Toplevel):
|
||||
str_address_2 += f"{item_2.npa} {item_2.city}"
|
||||
|
||||
self.listbox = Listbox(self, height=3, width=35)
|
||||
self.listbox.grid(row=1,column=0, columnspan= 2, pady=15,padx=15, sticky='NSEW')
|
||||
self.listbox.grid(row=2,column=0, columnspan= 2, pady=15,padx=15, sticky='NSEW')
|
||||
|
||||
self.btn = Button(self, text="Valider", command=self.select)
|
||||
self.btn.grid(row=2,columnspan=2 , pady=10,padx=10, sticky='NSEW')
|
||||
self.btn.grid(row=3,columnspan=2 , pady=10,padx=10, sticky='NSEW')
|
||||
|
||||
for (idd, info) in ((0, "Winbiz"), (1, "Attrib")) :
|
||||
self.listbox.insert(END, info)
|
||||
@@ -88,8 +99,10 @@ class Check_addresses_popup(Toplevel):
|
||||
self.listbox.selection_set(1)
|
||||
print(f"adresse différente [{str_address_1}] ({str_address_2})")
|
||||
|
||||
|
||||
|
||||
def ifNotNull(self, value, ret=""):
|
||||
if value == None or value == "None":
|
||||
return ret
|
||||
return value.strip()
|
||||
|
||||
def add_compares_element(self,new_frame, old_frame,str1, str2, label):
|
||||
label_font = font.Font(weight='bold', size=9)
|
||||
@@ -101,9 +114,9 @@ class Check_addresses_popup(Toplevel):
|
||||
con = "*"
|
||||
|
||||
Label(new_frame, text=str(label), font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(new_frame, text=con + str(str1) + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(new_frame, text=con + str(str1) + con, fg=value_color, anchor="w", justify=LEFT).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(old_frame, text=str(label), font=label_font).grid(row=self.x_row, column=0, sticky="W")
|
||||
Label(old_frame, text=con + str(str2) + con, fg=value_color).grid(row=self.x_row, column=1, sticky="W")
|
||||
Label(old_frame, text=con + str(str2) + con, fg=value_color, anchor="w", justify=LEFT).grid(row=self.x_row, column=1, sticky="W")
|
||||
|
||||
self.x_row += 1
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
20230426-1114
|
||||
20230620-1109
|
||||
46
main.py
46
main.py
@@ -140,6 +140,10 @@ class ClercAttrib2Biz():
|
||||
self.delete_after_parse.set(self.read_config_element("cfg_delete_after_parse", False))
|
||||
self.export_one_file.set(self.read_config_element("cfg_export_one_file", True))
|
||||
self.winbiz_folder_path.set(self.read_config_element("winbiz_folder_path", temp_dir))
|
||||
def add_statistique(self, stat_name, stat_value):
|
||||
a_stats = None
|
||||
if "a_stats" in self.config:
|
||||
a_stats = self.config[""]
|
||||
|
||||
def read_config_element(self,name, default):
|
||||
val = self.config.get(name)
|
||||
@@ -284,7 +288,8 @@ class ClercAttrib2Biz():
|
||||
|
||||
file_addresses_path = os.path.join(temp_dir, f"adresses.dbf")
|
||||
if os.path.exists(file_addresses_path):
|
||||
for record in DBF(file_addresses_path):
|
||||
for record in DBF(file_addresses_path, load=True):
|
||||
|
||||
o_addresse = cls_addresse()
|
||||
o_addresse.AVS = str(record["AD_CODE"])
|
||||
o_addresse.lastName =str( record["AD_NOM"])
|
||||
@@ -298,6 +303,7 @@ class ClercAttrib2Biz():
|
||||
o_addresse.street_cpl =str( record["AD_RUE_1"])
|
||||
o_addresse.npa =str( record["AD_NPA"])
|
||||
o_addresse.city = str(record["AD_VILLE"])
|
||||
o_addresse.addr_2 = str(record["AD_ADR2"]).replace("\r\n","\n")
|
||||
self.addresses.add_addresse(o_addresse)
|
||||
logging.warning(f"Chargement du fichier adresses.dbf terminé ! {len(self.addresses.items)} adresses trouvées ")
|
||||
else:
|
||||
@@ -406,10 +412,12 @@ class ClercAttrib2Biz():
|
||||
return False
|
||||
if f"{new['postal_code']} {new['city']}" != f"{old.npa} {old.city}":
|
||||
return False
|
||||
|
||||
if new["addr_2"] != old.addr_2 and not new["selfish"]:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
|
||||
def parseFile(self, data, filename):
|
||||
self.progress_bar["value"] = 0
|
||||
self.index_counter += 1
|
||||
@@ -638,39 +646,7 @@ class ClercAttrib2Biz():
|
||||
print("NON mise à jour de l'adresse")
|
||||
|
||||
if int(data.Debtor["code"]) > 1:
|
||||
con = ""
|
||||
concat_str = ""
|
||||
if "name" in data.Debtor.keys():
|
||||
if data.Debtor["name"] is not None:
|
||||
concat_str += con + data.Debtor["name"]
|
||||
con = "#chr(13)##chr(10)#"
|
||||
else:
|
||||
messagebox.showerror(title="Erreur nom débiteur", message=f"Le nom débiteur de la facture {data.data['id']} est faux: [{data.Debtor['name']}], merci de le corriger ")
|
||||
|
||||
|
||||
if data.Debtor["gender"] is not None:
|
||||
concat_str += con + "Monsieur" if data.Debtor["gender"] == "Masculin" else con + "Madame"
|
||||
con = "#chr(13)##chr(10)#"
|
||||
if data.Debtor["lastname"] is not None:
|
||||
concat_str += con + self.ifNotNull(data.Debtor["lastname"]) + " " + self.ifNotNull(data.Debtor["firstname"])
|
||||
con = "#chr(13)##chr(10)#"
|
||||
if data.Debtor["complement"] is not None:
|
||||
concat_str += con + data.Debtor["complement"]
|
||||
con = "#chr(13)##chr(10)#"
|
||||
if data.Debtor["street"] is not None:
|
||||
concat_str += con + self.ifNotNull(data.Debtor["street"]) + " " + self.ifNotNull(data.Debtor["street_number"])
|
||||
con = "#chr(13)##chr(10)#"
|
||||
if data.Debtor["city"] is not None:
|
||||
concat_str += con + self.ifNotNull(data.Debtor["postal_code"]) + " " + self.ifNotNull(data.Debtor["city"])
|
||||
con = "#chr(13)##chr(10)#"
|
||||
if data.Debtor["country_name"] != "Suisse":
|
||||
concat_str += con + data.Debtor["country_name"]
|
||||
con = "#chr(13)##chr(10)#"
|
||||
|
||||
|
||||
|
||||
|
||||
csv_col.data[42] = concat_str #Adresse de livraison
|
||||
csv_col.data[42] = data.Patient["addr_2"].replace("\r\n", "#chr(13)##chr(10)#") #Adresse de livraison
|
||||
else:
|
||||
csv_col.data[19] = data.Debtor["code"] # Code adresse à récupérer dans recherche d'adresse automatisée
|
||||
csv_col.data[22] = data.Debtor["lastname"]
|
||||
|
||||
@@ -1 +1 @@
|
||||
VERSION = "20230426-1114"
|
||||
VERSION = "20230620-1109"
|
||||
Reference in New Issue
Block a user