18 lines
445 B
Clojure
18 lines
445 B
Clojure
(ns auto-ap.views.pages.transactions.common)
|
|
|
|
(def transaction-read
|
|
[:id
|
|
:amount
|
|
:location
|
|
:exclude-from-ledger
|
|
[:vendor [:name :id]]
|
|
[:accounts [:id :amount :location [:account [:name :id :location :numeric-code]]]]
|
|
:date
|
|
[:yodlee_merchant [:name :yodlee-id]]
|
|
:post_date
|
|
:status
|
|
:description_original
|
|
[:payment [:check_number :s3_url]]
|
|
[:client [:name :id]]
|
|
[:bank-account [:name :yodlee-account-id]]])
|