X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=bluechips%2Fmodel%2Fexpenditure.py;h=4669ad1090c740aaac7284c1903bd01cbac0d037;hb=7f646c692e3cd2c6d8c01eed8252ee9374082277;hp=58456fb8a71730d48c0a4936da2eabd1ee1384ca;hpb=5c9f0e33552b9420736f0d733134a1e62ef8df03;p=bluechips.git diff --git a/bluechips/model/expenditure.py b/bluechips/model/expenditure.py index 58456fb..4669ad1 100644 --- a/bluechips/model/expenditure.py +++ b/bluechips/model/expenditure.py @@ -28,16 +28,6 @@ class Expenditure(object): split_percentage = Decimal(100) / Decimal(residents.count()) self.split(dict((resident, split_percentage) for resident in residents)) - def update_split(self): - """ - Re-split an expenditure using the same percentages as what is - currently in the database - """ - - old_splits = meta.Session.query(Split).filter(Split.expenditure==self) - split_dict = dict((s.user, Decimal(int(s.share))) for s in old_splits) - self.split(split_dict) - def split(self, split_dict): """ Split up an expenditure. @@ -63,19 +53,11 @@ class Expenditure(object): for user, share in split_dict.items(): if share == 0: del split_dict[user] - else: - split_dict[user] = share / total - - for user, share in split_dict.items(): - if share == 0: - del split_dict[user] - else: - split_dict[user] = share / total amounts_dict = dict() for user, share in split_dict.iteritems(): - amounts_dict[user] = Currency(split_dict[user] * self.amount) + amounts_dict[user] = Currency((share * self.amount) / total) difference = self.amount - sum(amounts_dict.itervalues()) @@ -84,12 +66,24 @@ class Expenditure(object): winner = random.choice(amounts_dict.keys()) amounts_dict[winner] += Currency(1) elif difference < 0: - for i in xrange(difference): + for i in xrange(-difference): winner = random.choice(amounts_dict.keys()) amounts_dict[winner] -= Currency(1) for user, share in amounts_dict.iteritems(): s = Split(self, user, share) - meta.Session.save(s) + meta.Session.add(s) + + def involves(self, user): + "Returns True if ``user`` is involved in this expenditure." + return (any((split.user == user) and (split.share != 0) + for split in self.splits) or + (self.spender == user)) + + def share(self, user): + "Return the share corresponding to ``user``." + shares = dict((split.user, split.share) + for split in self.splits) + return shares.get(user, Currency(0)) __all__ = ['Expenditure']