Merge branch 'staging' into remove-invoiced-from-task-orders

This commit is contained in:
leigh-mil
2020-02-13 14:07:14 -05:00
committed by GitHub
14 changed files with 100 additions and 22 deletions

View File

@@ -76,7 +76,7 @@ class TaskOrder(Base, mixins.TimestampsMixin):
@property
def is_draft(self):
return self.status == Status.DRAFT
return self.status == Status.DRAFT or self.status == Status.UNSIGNED
@property
def is_active(self):