wire request review log for ccpo review screen

This commit is contained in:
dandds
2018-09-10 16:23:27 -04:00
parent 5a7ca5e887
commit c158e9fc35
3 changed files with 41 additions and 50 deletions

View File

@@ -20,3 +20,11 @@ class RequestReview(Base):
phone_mao = Column(String)
fname_ccpo = Column(String)
lname_ccpo = Column(String)
@property
def full_name_mao(self):
return "{} {}".format(self.fname_mao, self.lname_mao)
@property
def full_name_ccpo(self):
return "{} {}".format(self.fname_ccpo, self.lname_ccpo)