Changeset 6b8d891 for treasury/vouchers/models.py
- Timestamp:
- Jan 7, 2010, 3:38:24 AM (16 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
treasury/vouchers/models.py
r6a867b3 r6b8d891 11 11 check_to_email = models.EmailField(verbose_name="email address for check pickup") 12 12 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 "$"') 14 14 budget_area = models.ForeignKey(BudgetArea) 15 15 budget_term = models.ForeignKey(BudgetTerm) 16 16 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', ) 21 21 22 22 def __unicode__(self, ):
Note: See TracChangeset
for help on using the changeset viewer.