source: treasury/vouchers/models.py @ f468e6d

client
Last change on this file since f468e6d was f468e6d, checked in by Alex Dehnert <adehnert@…>, 16 years ago

Split vouchers off into a finance_core app too

  • Property mode set to 100644
File size: 730 bytes
Line 
1from django.db import models
2import settings
3from finance_core.models import BudgetArea, BudgetTerm
4
5
6class ReimbursementRequest(models.Model):
7    submitter = models.CharField(max_length=10) # MIT username of submitter
8    check_to_name = models.CharField(max_length=50, verbose_name="check recipient's name")
9    check_to_email = models.EmailField(verbose_name="email address for check pickup")
10    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)")
11    amount = models.DecimalField(max_digits=7, decimal_places=2)
12    budget_area = models.ForeignKey(BudgetArea)
13    budget_term = models.ForeignKey(BudgetTerm)
Note: See TracBrowser for help on using the repository browser.