Ajoutez des fichiers projet.

This commit is contained in:
33inform
2021-12-17 09:49:53 +01:00
parent f820e2dbbe
commit a140a1d5c9
15 changed files with 4018 additions and 0 deletions

24
class_invoices.py Normal file
View File

@@ -0,0 +1,24 @@
class cls_Invoice:
Intervention = None
Patient = None
Debtor = None
Articles = None
data = None
def __init__(self):
pass
def parse_item(self, obj: object):
self.Intervention = obj["intervention"]
self.Patient = obj["patient"]
self.Debtor = obj["debtor"]
self.Articles = obj["articles"]
self.data = obj
class cls_Col:
data = []
def __init__(self):
self.data = []
for x in range(130):
self.data.append("")