2015-03-09 00:40:24 +00:00
|
|
|
from django.db import models
|
2015-03-09 04:28:44 +00:00
|
|
|
from decimal import *
|
2015-03-09 00:40:24 +00:00
|
|
|
|
|
|
|
class FundraisingGoal(models.Model):
|
|
|
|
"""Conservancy fundraiser Goal"""
|
|
|
|
|
|
|
|
fundraiser_code_name = models.CharField(max_length=200, blank=False, unique=True)
|
|
|
|
fundraiser_goal_amount = models.DecimalField(max_digits=10, decimal_places=2)
|
|
|
|
fundraiser_so_far_amount = models.DecimalField(max_digits=10, decimal_places=2)
|
2015-03-12 01:10:28 +00:00
|
|
|
fundraiser_donation_count = models.IntegerField()
|
|
|
|
fundraiser_donation_count_disclose_threshold = models.IntegerField()
|
2015-03-09 00:40:24 +00:00
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return self.fundraiser_code_name
|
|
|
|
|
2015-03-09 04:21:58 +00:00
|
|
|
def percentage_there(self):
|
2015-03-09 04:27:13 +00:00
|
|
|
return (self.fundraiser_so_far_amount / self.fundraiser_goal_amount ) * Decimal('100.00')
|
2015-03-09 04:21:58 +00:00
|
|
|
|
2015-03-09 00:40:24 +00:00
|
|
|
class Meta:
|
|
|
|
ordering = ('fundraiser_code_name',)
|