Compare commits
3 Commits
20220615-1
...
20220705-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0d499cd0f6 | ||
|
|
94c8c64ced | ||
|
|
79f6c3df6d |
@@ -1 +1 @@
|
||||
20220615-1544
|
||||
20220705-1341
|
||||
7
main.py
7
main.py
@@ -475,6 +475,7 @@ class ClercAttrib2Biz():
|
||||
csv_col.data[2] = datetime.strptime(data.data["date"], "%Y-%m-%d").strftime("%d.%m.%Y") # Date du document
|
||||
csv_col.data[4] = data.Patient["fip_number"] # Référence
|
||||
csv_col.data[10] = "<AUTO>" # Compte collectif du tiers = <AUTO>
|
||||
csv_col.data[139] = "COND-30" # Conditions de payement à 30, COND-30 selon config dans winbiz
|
||||
|
||||
|
||||
if "without_transportation" in data.Intervention.keys() and data.Intervention["without_transportation"] == True:
|
||||
@@ -545,12 +546,12 @@ class ClercAttrib2Biz():
|
||||
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["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["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)#"
|
||||
|
||||
@@ -1 +1 @@
|
||||
VERSION = "20220615-1544"
|
||||
VERSION = "20220705-1341"
|
||||
Reference in New Issue
Block a user