imports invoices one at a time to avoid duplicating them

This commit is contained in:
Bryce
2023-05-30 12:30:58 -07:00
parent c020fa2818
commit 534b6e35f2
3 changed files with 8 additions and 4 deletions

View File

@@ -4,6 +4,9 @@
(:import [java.util UUID]))
(def random-tempid iol-ion.utils/random-tempid)
(defn composite-tempid [& pieces]
(format "hashed-%d" (.hashCode (set pieces))))
(def by iol-ion.utils/by)
(def pull-many iol-ion.utils/pull-many)
(def remove-nils iol-ion.utils/remove-nils)