This commit is contained in:
Yannik Schmidt
2021-09-13 19:47:47 +02:00
parent 792806838e
commit 8b0fee5994
4 changed files with 47 additions and 3 deletions

View File

@@ -1,11 +1,14 @@
class BlowerdoorData:
def __init__(self, path, docName, location, customer, pdfDate, blowerdoorDate):
def __init__(self, path, docName, location, customer, pdfDate, blowerdoorDate, inDocumentDate=None):
self.path = path
self.docName = docName
self.location = location
self.customer = customer
self.blowerdoorDate = blowerdoorDate
self.pdfDate = pdfDate
self.inDocumentDate = inDocumentDate
self.outdated = False
#print("Bauort: " + location)