Merged in purchase-order (pull request #23)

Added PO field to event form #82
This commit is contained in:
Tom Price
2015-04-24 15:13:15 +01:00
4 changed files with 16 additions and 3 deletions

View File

@@ -255,8 +255,8 @@ class Event(models.Model, RevisionMixin):
# Monies
payment_method = models.CharField(max_length=255, blank=True, null=True)
payment_received = models.CharField(max_length=255, blank=True, null=True)
purchase_order = models.CharField(max_length=255, blank=True, null=True)
collector = models.CharField(max_length=255, blank=True, null=True, verbose_name='Collected By')
purchase_order = models.CharField(max_length=255, blank=True, null=True, verbose_name='PO')
collector = models.CharField(max_length=255, blank=True, null=True, verbose_name='Collected by')
# Calculated values
"""