Adds advanced view

This commit is contained in:
2024-11-13 20:03:04 -08:00
parent 6291a6c8cd
commit d119e01857
9 changed files with 553 additions and 60 deletions

View File

@@ -0,0 +1,17 @@
(ns auto-ap.routes.transactions)
(def routes {"" {:get ::page}
"/new" {:get ::new
:post ::new-submit
"/location-select" ::location-select
"/account-typeahead" ::account-typeahead
"/line-item" {:get ::new-line-item}}
"/external-new" ::external-page
"/external-import-new" {"" ::external-import-page
"/parse" ::external-import-parse
"/import" ::external-import-import}
"/table" ::table
"/csv" ::csv
"/bank-account-filter" ::bank-account-filter })