diff options
| author | A.Avenel <avenel.alexandre@gmail.com> | 2011-12-03 22:25:19 +0100 |
|---|---|---|
| committer | A.Avenel <avenel.alexandre@gmail.com> | 2011-12-03 22:25:19 +0100 |
| commit | 1a5abcfbf2c9ceb137b42c177013bd0f54d571fe (patch) | |
| tree | 27b66d35575d5157d2c72a32409987eea0ed5264 /budget/models.py | |
| parent | 0633b153f604d973d1b8a6b5c25d9b048a3de0bb (diff) | |
| download | ihatemoney-mirror-1a5abcfbf2c9ceb137b42c177013bd0f54d571fe.zip ihatemoney-mirror-1a5abcfbf2c9ceb137b42c177013bd0f54d571fe.tar.gz ihatemoney-mirror-1a5abcfbf2c9ceb137b42c177013bd0f54d571fe.tar.bz2 | |
Fix for a bug introduced in last commit : crash of dashboard view when there is no bill.
Diffstat (limited to 'budget/models.py')
| -rw-r--r-- | budget/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/budget/models.py b/budget/models.py index b889794..3dcd709 100644 --- a/budget/models.py +++ b/budget/models.py @@ -44,6 +44,10 @@ class Project(db.Model): return balances + def has_bills(self): + """return if the project do have bills or not""" + return self.get_bills().count() != 0 + def get_bills(self): """Return the list of bills related to this project""" return Bill.query.join(Person, Project)\ |
