Ignore:
Timestamp:
Jan 6, 2010, 3:23:47 AM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
27fe6c6
Parents:
d7e325a
git-author:
Alex Dehnert <adehnert@…> (01/06/10 03:23:47)
git-committer:
Alex Dehnert <adehnert@…> (01/06/10 03:23:47)
Message:

Add time fields to ReimbursementRequest?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/vouchers/models.py

    rd7e325a r93e2ab9  
    22import settings
    33from finance_core.models import BudgetArea, BudgetTerm
     4
     5import datetime
    46
    57
     
    1214    budget_area = models.ForeignKey(BudgetArea)
    1315    budget_term = models.ForeignKey(BudgetTerm)
     16    request_time = models.DateTimeField(default=datetime.datetime.now)
     17    approval_time = models.DateTimeField(blank=True)
     18    printing_time = models.DateTimeField(blank=True)
    1419
    1520    def __unicode__(self, ):
Note: See TracChangeset for help on using the changeset viewer.