Merge branch 'master' into add-general-ledger

This commit is contained in:
Bryce Covert
2019-04-11 19:48:09 -07:00
2 changed files with 9 additions and 2 deletions

View File

@@ -38,6 +38,13 @@
[]
clients))))
(re-frame/reg-sub
::real-bank-accounts
:<- [::client]
(fn [client]
(->> client :bank-accounts (filter #(= (:type %) :check)) (sort-by :sort-order))))
(re-frame/reg-sub
::clients-by-id
(fn [db]