You can change categories

This commit is contained in:
Bryce Covert
2018-06-04 21:44:06 -07:00
parent 96baf78aaf
commit d5ad915e16

View File

@@ -0,0 +1,10 @@
(ns auto-ap.entities.invoices-expense-accounts
(:require [clojure.spec.alpha :as s]
[clojure.string :as str]
[auto-ap.entities.shared :as shared]))
(s/def ::vendor-id int?)
(s/def ::expense-account-id int?)
(s/def ::amount ::shared/money)
(s/def ::invoices-expense-account (s/keys :opt-un [::vendor-id ::expense-account-id ::amount]))