Ignore:
Timestamp:
Jan 7, 2010, 3:38:24 AM (16 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, client
Children:
42d0bf6
Parents:
169d7b5
git-author:
Alex Dehnert <adehnert@…> (01/07/10 03:38:24)
git-committer:
Alex Dehnert <adehnert@…> (01/07/10 03:38:24)
Message:

Reimbursement submission workflow mostly works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • treasury/vouchers/models.py

    r6a867b3 r6b8d891  
    1111    check_to_email = models.EmailField(verbose_name="email address for check pickup")
    1212    check_to_addr = models.TextField(blank=True, verbose_name="address for check mailing", help_text="For most requests, this should be blank for pickup in SAO (W20-549)")
    13     amount = models.DecimalField(max_digits=7, decimal_places=2)
     13    amount = models.DecimalField(max_digits=7, decimal_places=2, help_text='Do not include "$"')
    1414    budget_area = models.ForeignKey(BudgetArea)
    1515    budget_term = models.ForeignKey(BudgetTerm)
    1616    request_time = models.DateTimeField(default=datetime.datetime.now)
    17     approval_time = models.DateTimeField(blank=True)
    18     printing_time = models.DateTimeField(blank=True)
    19     name = models.CharField(max_length=50,)
    20     description = models.TextField(blank=True)
     17    approval_time = models.DateTimeField(blank=True, null=True,)
     18    printing_time = models.DateTimeField(blank=True, null=True,)
     19    name = models.CharField(max_length=50, verbose_name='short description', )
     20    description = models.TextField(blank=True, verbose_name='long description', )
    2121
    2222    def __unicode__(self, ):
Note: See TracChangeset for help on using the changeset viewer.