Adds expands expense account report

This commit is contained in:
2024-04-22 14:33:10 -07:00
parent de6e6f1572
commit 85833d1156
3 changed files with 74 additions and 25 deletions

View File

@@ -59,7 +59,7 @@
(defn last-monday []
(loop [current (local-now)]
(loop [current (local-today)]
(if (= 1 (time/day-of-week current))
current
(recur (time/minus current (time/days 1))))))