1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
from __future__ import with_statement
import web
from model import *
from helper import appdir
from renderer import render
import datetime
from sqlalchemy import sql
class Show:
def GET(self, year = '', month = ''):
if year:
return self.render([self.calc(year, month)])
else:
d = datetime.date.today()
first = self.calc(d.year, d.month)
if d.month == 1:
second = self.calc(d.year - 1, 12)
else:
second = self.calc(d.year, d.month - 1)
return self.render([first, second])
def calc(self, year, month):
ssum = sql.functions.sum(SingleExpense.expense)
csum = sql.functions.sum(ConstExpense.monthly)
query = SingleExpense.of_month(month, year).\
group_by(SingleExpense.category_id).\
values(SingleExpense.category_id, ssum)
exps = [CatExpense(Category.query.get(c), s) for c,s in query]
consts = ConstExpense.of_month(month, year).value(csum)
if consts is None: consts = 0
return MonthExpense(datetime.date(int(year), int(month), 1), consts, exps)
def render(self, exps):
return render("show", exps = exps)
class Add:
def GET(self):
return "Add new"
class Edit:
def GET(self, id):
return "Edit " + id
class Const:
def GET(self):
return "Const"
class ConstAdd:
def GET(self):
return "Add new const"
class ConstEdit:
def GET(self, id):
return "Const Edit " + id
class Cat:
def GET(self, id = '/'):
if id:
id = id[1:]
if not id: return "Add new cat"
else: return "Edit cat " + id
class FourOhFour:
"""
404 error page.
"""
def GET (self, p):
raise self.catch(p)
@staticmethod
def catch (page = "?"):
return web.notfound(render("404", page = page))
|