From 1812657faf21adf9b991e80fb7cc90335d225e2a Mon Sep 17 00:00:00 2001 From: Ambulance Clerc Date: Wed, 11 May 2022 18:03:30 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20print=20de=20d=C3=A9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 0cc9454..ccef4f5 100644 --- a/main.py +++ b/main.py @@ -18,7 +18,7 @@ from threading import * from class_invoices import * -VERSION = "202200511 - 1022" +VERSION = "202200511 - 1803" @@ -629,8 +629,10 @@ class ClercAttrib2Biz(): data.Patient[elem] = "Patient inconnu" if elem == "street_number": + print(f"ADRESS: data.Patient[elem]") if data.Patient[elem] != None and "-" in data.Patient[elem] and "\t" not in data.Patient[elem]: data.Patient[elem] = f"\t{data.Patient[elem]}" + print(f"ERROR DEBUG ADRESS: { data.Patient[elem]}") self.addToIndexs(obj=csv_col, data=data.Patient[elem], cat="patient", key=elem)