[billreminder] Modular filtering of dates for alarms and dueDates.
- From: Og B. Maciel <ogmaciel src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [billreminder] Modular filtering of dates for alarms and dueDates.
- Date: Sun, 20 Dec 2009 20:13:50 +0000 (UTC)
commit 8cb6656719056721b501f86875c3abbea9719231
Author: Og B. Maciel <ogmaciel gnome org>
Date: Sun Dec 20 15:09:03 2009 -0500
Modular filtering of dates for alarms and dueDates.
src/lib/actions.py | 34 ++++++++++++++++++++++++++++++++--
1 files changed, 32 insertions(+), 2 deletions(-)
---
diff --git a/src/lib/actions.py b/src/lib/actions.py
index b37e2df..95a7329 100644
--- a/src/lib/actions.py
+++ b/src/lib/actions.py
@@ -22,7 +22,7 @@ class Actions(object):
self.dal = databaselayer
- def get_interval_bills(self, start, end, paid = None):
+ def get_interval_bills(self, start=None, end=None, paid=None):
"""
"""
@@ -32,7 +32,37 @@ class Actions(object):
try:
session = self.dal.Session()
- q = session.query(Bill).options(eagerload('category')).filter(Bill.dueDate >= start).filter(Bill.dueDate <= end)
+ q = session.query(Bill).options(eagerload('category'))
+ if start:
+ q = q.filter(Bill.dueDate >= start)
+ if end:
+ q = q.filter(Bill.dueDate <= end)
+ if paid is not None:
+ q = q.filter(Bill.paid == paid)
+ records = q.order_by(Bill.dueDate.desc()).all()
+ except Exception, e:
+ print str(e)
+ pass
+ finally:
+ session.close()
+
+ return records
+
+ def get_alarm_bills(self, start=None, end=None, paid=None):
+ """
+ """
+
+ records = []
+
+ paid = bool(paid) if paid in (0,1) else None
+
+ try:
+ session = self.dal.Session()
+ q = session.query(Bill).options(eagerload('category'))
+ if start:
+ q = q.filter(Bill.alarmDate >= start)
+ if end:
+ q = q.filter(Bill.alarmDate <= end)
if paid is not None:
q = q.filter(Bill.paid == paid)
records = q.order_by(Bill.dueDate.desc()).all()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]