[billreminder] s/status/paid
- From: Og B. Maciel <ogmaciel src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [billreminder] s/status/paid
- Date: Fri, 2 Oct 2009 02:22:39 +0000 (UTC)
commit 16e1fe4f31f8f5f8468d6f41cd8f4df1ef0f381d
Author: Og B. Maciel <ogmaciel gnome org>
Date: Thu Oct 1 22:19:44 2009 -0400
s/status/paid
src/lib/actions.py | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/lib/actions.py b/src/lib/actions.py
index 0d9f952..e34fe18 100644
--- a/src/lib/actions.py
+++ b/src/lib/actions.py
@@ -30,8 +30,8 @@ class Actions(object):
try:
session = self.dal.Session()
q = session.query(Bill).options(eagerload('category')).filter(Bill.dueDate >= start).filter(Bill.dueDate <= end)
- if status:
- q = q.filter(Bill.paid == status)
+ if paid:
+ q = q.filter(Bill.paid == paid)
records = q.all()
except Exception, e:
print str(e)
@@ -55,8 +55,8 @@ class Actions(object):
session = self.dal.Session()
# records is a tuple of type Decimal
q = session.query(func.sum(Bill.amount)).filter(Bill.dueDate >= dt).filter(Bill.dueDate <= to)
- if status:
- q = q.filter(Bill.paid == status)
+ if paid:
+ q = q.filter(Bill.paid == paid)
# Got anything back?
if q.count():
# Result is of type Decimal and needs to be converted.
@@ -71,7 +71,7 @@ class Actions(object):
def get_monthly_bills(self, month, year, paid=None):
"""
- Return a list of all bills for the given month with STATUS
+ Return a list of all bills for the given month with paid
"""
records = []
@@ -82,8 +82,8 @@ class Actions(object):
try:
session = self.dal.Session()
q = session.query(Bill).filter(Bill.dueDate >= firstDay).filter(Bill.dueDate <= lastDay)
- if status:
- q = q.filter(Bill.paid == status)
+ if paid:
+ q = q.filter(Bill.paid == paid)
records = q.all()
except Exception, e:
print str(e)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]