Resubmit financial verification #159047362
This commit is contained in:
dandds
2018-09-12 11:11:06 -04:00
committed by GitHub
7 changed files with 64 additions and 27 deletions

View File

@@ -39,3 +39,10 @@ class TaskOrder(Base):
@property
def verified(self):
return self.source == Source.EDA
def to_dictionary(self):
return {
c.name: getattr(self, c.name)
for c in self.__table__.columns
if c.name not in ["id", "attachment_id"]
}