Include more monetary information in reports.
This commit is contained in:
parent
e2a5d48d1c
commit
4b123d38b4
20
render.py
20
render.py
|
@ -66,16 +66,30 @@ def render_template(path, week=None):
|
|||
else:
|
||||
good.append(u)
|
||||
|
||||
def get_balance(acct):
|
||||
p = subprocess.Popen(['ledger', '-f', os.path.join(HERE,'ledger'),
|
||||
'-n', 'balance', 'Pool'],
|
||||
'-n', 'balance', acct],
|
||||
stdout=subprocess.PIPE)
|
||||
(out, _) = p.communicate()
|
||||
pool = int(out.split()[0][1:])
|
||||
return int(out.split()[0][1:])
|
||||
|
||||
p = subprocess.Popen(['ledger', '-f', os.path.join(HERE,'ledger'),
|
||||
'-n', 'balance', 'Pool:Owed:'],
|
||||
stdout=subprocess.PIPE)
|
||||
(out, _) = p.communicate()
|
||||
debts = []
|
||||
for line in out.split("\n"):
|
||||
if not line: continue
|
||||
(val, acct) = line.split()
|
||||
user = acct[len("Pool:Owed:"):]
|
||||
val = int(val[len("$"):])
|
||||
debts.append((user, val))
|
||||
|
||||
return Template(filename=path, output_encoding='utf-8').render(
|
||||
week=week, week_start=week_start,week_end=week_end,
|
||||
good=good, lame=lame, skip=skip, userlist=userlist,
|
||||
pool=pool)
|
||||
pool=get_balance('Pool'), paid=get_balance('Pool:Paid'),
|
||||
debts=debts)
|
||||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) < 2:
|
||||
|
|
|
@ -21,3 +21,9 @@ People who have not yet started:
|
|||
Beer pool:
|
||||
This week: $${5 * len(lame)}.00
|
||||
Total: $${pool}.00
|
||||
Paid: $${paid}.00
|
||||
|
||||
Individual debts:
|
||||
% for (u, v) in sorted(debts, key=lambda p:p[1], reverse=True):
|
||||
${"%20s $%d" % (u, v)}
|
||||
% endfor
|
||||
|
|
|
@ -31,5 +31,13 @@ Results for week beginning ${week_start.strftime("%F")}
|
|||
<h2>Beer pool:</h2>
|
||||
<table>
|
||||
<tr> <td> This week: </td> <td> $${5 * len(lame)}.00 </td> </tr>
|
||||
<tr> <td> Total: </td> <td> ${pool}.00 </td> </tr>
|
||||
<tr> <td> Total: </td> <td> $${pool}.00 </td> </tr>
|
||||
<tr> <td> Paid: </td> <td> $${paid}.00 </td> </tr>
|
||||
</table>
|
||||
|
||||
<h2>Debts:</h2>
|
||||
<table>
|
||||
% for (u, v) in sorted(debts, key=lambda p:p[1], reverse=True):
|
||||
<tr><td>${u}</td> <td>${v}</td></tr>
|
||||
% endfor
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue