transactions page progress.

This commit is contained in:
2025-03-02 20:09:40 -08:00
parent 3d65816d9c
commit 7c7fc10a8d
11 changed files with 1340 additions and 29 deletions

View File

@@ -1,6 +1,7 @@
(ns auto-ap.routes.transactions)
(def routes {"" {:get ::page}
(def routes {"" {:get ::page
:put ::edit-wizard-navigate}
"/new" {:get ::new
:post ::new-submit
"/location-select" ::location-select
@@ -13,5 +14,18 @@
"/import" ::external-import-import}
"/table" ::table
"/csv" ::csv
"/bank-account-filter" ::bank-account-filter })
"/csv" ::csv
"/bank-account-filter" ::bank-account-filter
["/" [#"\d+" :db/id]] {"/edit" {:get ::edit-wizard
} }
"/edit-submit" ::edit-submit
"/location-select" ::location-select
"/account-total" ::account-total
"/account-balance" ::account-balance
"/edit-wizard-new-account" ::edit-wizard-new-account
"/match-payment" ::match-payment
"/match-autopay-invoices" ::match-autopay-invoices
"/match-unpaid-invoices" ::match-unpaid-invoices
"/apply-rule" ::apply-rule
"/unlink-payment" ::unlink-payment})