makes creation of receivable invoices as possible
This commit is contained in:
3
src/cljc/auto_ap/routes/outgoing_invoice.cljc
Normal file
3
src/cljc/auto_ap/routes/outgoing_invoice.cljc
Normal file
@@ -0,0 +1,3 @@
|
||||
(ns auto-ap.routes.outgoing-invoice)
|
||||
(def routes {"/" {"new" {:get ::new
|
||||
:post ::new-submit} }})
|
||||
@@ -4,6 +4,7 @@
|
||||
[auto-ap.routes.admin.import-batch :as ib-routes]
|
||||
[auto-ap.routes.indicators :as indicator-routes]
|
||||
[auto-ap.routes.admin.vendors :as v-routes]
|
||||
[auto-ap.routes.outgoing-invoice :as oi-routes]
|
||||
[auto-ap.routes.payments :as p-routes]
|
||||
[auto-ap.routes.invoice :as i-routes]
|
||||
[auto-ap.routes.admin.clients :as ac-routes]
|
||||
@@ -14,7 +15,7 @@
|
||||
"logout" :logout
|
||||
"search" :search
|
||||
"indicators" indicator-routes/routes
|
||||
|
||||
|
||||
"account" {"/search" {:get :account-search}}
|
||||
"admin" {"" :auto-ap.routes.admin/page
|
||||
"/client" ac-routes/routes
|
||||
@@ -64,6 +65,7 @@
|
||||
"/cash-drawer-shifts" {"" {:get :pos-cash-drawer-shifts}
|
||||
"/table" {:get :pos-cash-drawer-shift-table}}}
|
||||
|
||||
"outgoing-invoice" oi-routes/routes
|
||||
"payment" p-routes/routes
|
||||
"invoice" i-routes/routes
|
||||
"vendor" {"/search" :vendor-search}
|
||||
|
||||
Reference in New Issue
Block a user