Compare commits
2 Commits
20230103-1
...
20230124-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
894a8bbfbb | ||
|
|
4d2e2f2351 |
@@ -1 +1 @@
|
||||
20230103-1618
|
||||
20230124-1547
|
||||
7
main.py
7
main.py
@@ -353,6 +353,13 @@ class ClercAttrib2Biz():
|
||||
data.Debtor["street"] = data.Debtor["street"].strip()
|
||||
if data.data["comments"] is not None:
|
||||
data.data["comments"] = data.data["comments"].strip().replace("\n",'')
|
||||
if data.Debtor["code"] is not None:
|
||||
data.Debtor["code"] = data.Debtor["code"].strip().replace("'","").replace("*","")
|
||||
|
||||
if "name" in data.Debtor.keys() and data.Debtor["name"] is not None:
|
||||
data.Debtor["name"] = data.Debtor["name"].replace("(facturation)","")
|
||||
data.Debtor["name"] = data.Debtor["name"].strip()
|
||||
|
||||
|
||||
def check_code_validity(self, code,data):
|
||||
ret = True
|
||||
|
||||
@@ -1 +1 @@
|
||||
VERSION = "20230103-1618"
|
||||
VERSION = "20230124-1547"
|
||||
Reference in New Issue
Block a user