fixed a litle bug of documentId representation
This commit is contained in:
parent
2619f88a9f
commit
a0546e284e
|
@ -83,4 +83,4 @@ class Deliverynote(Thing):
|
||||||
db.session.delete(self)
|
db.session.delete(self)
|
||||||
|
|
||||||
def __repr__(self) -> str:
|
def __repr__(self) -> str:
|
||||||
return '<Deliverynote {0.documentID}>'.format(self)
|
return '<Deliverynote {0.document_id}>'.format(self)
|
||||||
|
|
Reference in New Issue