Compare commits
5 Commits
20230616-1
...
20230620-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb0e4b4429 | ||
|
|
4387a1d00b | ||
|
|
c722af1091 | ||
|
|
92b3a76733 | ||
|
|
5adbc77555 |
@@ -25,36 +25,44 @@ class cls_Invoice:
|
||||
if debitor["name"] is not None:
|
||||
concat_str += con + debitor["name"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\r\n"
|
||||
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 = "\r\n"
|
||||
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 = "\r\n"
|
||||
con = "\n"
|
||||
if debitor["complement"] is not None:
|
||||
concat_str += con + debitor["complement"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\r\n"
|
||||
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 = "\r\n"
|
||||
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 = "\r\n"
|
||||
con = "\n"
|
||||
if debitor["country_name"] != "Suisse":
|
||||
concat_str += con + debitor["country_name"]
|
||||
# con = "#chr(13)##chr(10)#"
|
||||
con = "\r\n"
|
||||
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 = self.ifNotNull(patient['lastname']).replace('.','') + self.ifNotNull(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
|
||||
|
||||
@@ -46,7 +46,7 @@ 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))
|
||||
|
||||
@@ -114,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 @@
|
||||
20230616-1729
|
||||
20230620-1502
|
||||
35
main.py
35
main.py
@@ -303,7 +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"])
|
||||
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:
|
||||
@@ -397,26 +397,37 @@ class ClercAttrib2Biz():
|
||||
|
||||
return ret
|
||||
|
||||
def compare_old_and_new_adresses(self, new, old):
|
||||
def compare_old_and_new_adresses(self, new, old, code):
|
||||
|
||||
if new['insurance_policy_number'].replace('.','') != old.AVS:
|
||||
if self.ifNotNull(new['insurance_policy_number']).replace('.','') != old.AVS:
|
||||
print("compare adresse exit avs")
|
||||
return False
|
||||
if new['lastname'].replace('.','') != old.lastName:
|
||||
if self.ifNotNull(new['lastname']).replace('.','') != old.lastName:
|
||||
print("compare adresse exit lastname")
|
||||
return False
|
||||
if new['firstname'].replace('.','') != old.firstName:
|
||||
if self.ifNotNull(new['firstname']).replace('.','') != old.firstName:
|
||||
print("compare adresse exit firstname")
|
||||
return False
|
||||
if datetime.strptime(new['birthdate'], "%Y-%m-%d").strftime("%d.%m.%Y") != old.birth:
|
||||
if datetime.strptime(self.ifNotNull(new['birthdate']), "%Y-%m-%d").strftime("%d.%m.%Y") != old.birth:
|
||||
print("compare adresse exit date")
|
||||
return False
|
||||
if f"{new['street'].strip()} {new['street_number'].strip()}" != f"{old.street.strip()}":
|
||||
print(f"({new['street'].strip()} {new['street_number'].strip()}) != [" + old.street.strip()+"]")
|
||||
if f"{self.ifNotNull(new['street']).strip()} {self.ifNotNull(new['street_number']).strip()}" != f"{self.ifNotNull(old.street).strip()}":
|
||||
print(f"compare adresse exit ({self.ifNotNull(new['street']).strip()} {self.ifNotNull(new['street_number']).strip()}) != [" + self.ifNotNull(old.street).strip()+"]")
|
||||
return False
|
||||
if f"{new['postal_code']} {new['city']}" != f"{old.npa} {old.city}":
|
||||
if f"{self.ifNotNull(new['postal_code'])} {self.ifNotNull(new['city'])}" != f"{self.ifNotNull(old.npa)} {self.ifNotNull(old.city)}":
|
||||
print("compare adresse exit city")
|
||||
return False
|
||||
if new["addr_2"] != old.addr_2:
|
||||
if new["addr_2"] != old.addr_2 and int(code) < 100:
|
||||
if not new["selfish"]:
|
||||
print(f"Exit selfish")
|
||||
return False
|
||||
elif old.addr_2 == None:
|
||||
print(f"Exit addr_2 = {old.addr_2}/{new['selfish']}")
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
|
||||
def parseFile(self, data, filename):
|
||||
self.progress_bar["value"] = 0
|
||||
self.index_counter += 1
|
||||
@@ -546,7 +557,7 @@ class ClercAttrib2Biz():
|
||||
|
||||
if self.check_addresses.get():
|
||||
addresses_exist = self.addresses.get_item_by_AVS(data.Patient['insurance_policy_number'].replace(".", ""))
|
||||
if addresses_exist is not None and not self.compare_old_and_new_adresses(new=data.Patient, old=addresses_exist):
|
||||
if addresses_exist is not None and not self.compare_old_and_new_adresses(new=data.Patient, old=addresses_exist, code=data.Debtor['code']):
|
||||
|
||||
popup = Check_addresses_popup(self.fenetre, item_1=data.Patient, item_2=addresses_exist, debitor=data.Debtor, factureID=data.data['id'])
|
||||
b_address_update = popup.show()
|
||||
@@ -645,7 +656,7 @@ class ClercAttrib2Biz():
|
||||
print("NON mise à jour de l'adresse")
|
||||
|
||||
if int(data.Debtor["code"]) > 1:
|
||||
csv_col.data[42] = data.Patient["addr_2"].replace("\r\n", "#chr(13)##chr(10)#") #Adresse de livraison
|
||||
csv_col.data[42] = data.Patient["addr_2"].replace("\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 = "20230616-1729"
|
||||
VERSION = "20230620-1502"
|
||||
Reference in New Issue
Block a user