Add in basic implementation of the KO TO signature page

This commit is contained in:
George Drummond
2019-02-05 15:48:27 -05:00
parent 3c7fe2cf24
commit 8689748d10
13 changed files with 373 additions and 10 deletions

View File

@@ -2,7 +2,7 @@ from enum import Enum
from datetime import date
import pendulum
from sqlalchemy import Boolean, Column, Numeric, String, ForeignKey, Date, Integer
from sqlalchemy import Boolean, Column, Numeric, String, ForeignKey, Date, Integer, DateTime
from sqlalchemy.ext.hybrid import hybrid_property
from sqlalchemy.types import ARRAY
from sqlalchemy.orm import relationship
@@ -81,6 +81,9 @@ class TaskOrder(Base, mixins.TimestampsMixin):
loa = Column(String) # Line of Accounting (LOA)
custom_clauses = Column(String) # Custom Clauses
signer_dod_id = Column(String)
signed_at = Column(DateTime)
@hybrid_property
def csp_estimate(self):
return self._csp_estimate