and made last export work correctly.

This commit is contained in:
Bryce Covert
2019-01-28 17:43:49 -08:00
parent d10b97e68e
commit 2356a9e439

View File

@@ -58,11 +58,11 @@
(let [[transactions] (d-transactions/get-graphql {:client-code (query-params "client-code")
#_#_:original-id (Integer/parseInt (query-params "original"))
:limit Integer/MAX_VALUE})
transactions (map <-graphql transactions)]
(map (fn [i]
]
(map (comp ->graphql (fn [i]
(-> i
(update :transaction/date to-date)
(update :transaction/post-date to-date)))
(update :transaction/post-date to-date))))
transactions))))