(cloud) adds transaction insights

This commit is contained in:
2023-04-18 11:32:58 -07:00
parent ed37b19d6a
commit 69eaf42eda
11 changed files with 518 additions and 3 deletions

View File

@@ -25,4 +25,28 @@
:db/doc "Used to find sales orders quickly",
:db/noHistory true
}
{:db/valueType :db.type/ref
:db/cardinality :db.cardinality/one
:db/ident :transaction/recommended-account
:db/doc "The recommended account from the ML alogorithm"
:db/noHistory true}
{:db/valueType :db.type/ref
:db/cardinality :db.cardinality/one
:db/ident :transaction/recommended-vendor
:db/doc "The recommended vendor from the ML alogorithm"
:db/noHistory true}
{:db/valueType :db.type/double
:db/cardinality :db.cardinality/one
:db/ident :transaction/vendor-confidence
:db/doc "The confidence from the ML alogorithm"
:db/noHistory true}
{:db/valueType :db.type/double
:db/cardinality :db.cardinality/one
:db/ident :transaction/account-confidence
:db/doc "The confidence from the ML alogorithm"
:db/noHistory true}
]

View File

@@ -11060,4 +11060,8 @@ tbody tr.live-added {
opacity: 1 !important;
}
.htmx-request .htmx-indicator {
opacity: 1 !important;
}
/*# sourceMappingURL=bulma.min.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -187,6 +187,10 @@ tbody tr.live-added {
.htmx-indicator.button {
opacity: 1.0 !important
}
.htmx-request .htmx-indicator {
opacity: 1.0 !important
}
.htmx-request .button.htmx-indicator {
@extend .is-loading
}