fixes for kyle, ben, and cashflows.

This commit is contained in:
2023-03-14 20:42:09 -07:00
parent 437cbdcada
commit 12d9acba59
3 changed files with 10 additions and 4 deletions

View File

@@ -121,9 +121,14 @@
(<= start account-code end)))
first
last)]
(if (= operation :add)
amount
(- amount))))
(cond (= operation :add)
amount
(= operation :subtract)
(- amount)
:else
amount)))
(defn min-numeric-code [category]
(->> (groupings category)