Adds the ability to export sales data

This commit is contained in:
2023-11-16 22:27:17 -08:00
parent fc9cd09533
commit d3477c3fce
3 changed files with 109 additions and 9 deletions

View File

@@ -12,6 +12,7 @@
(com/field {:label "Processor"}
(com/radio {:size :small
:name "processor"
:value (:processor (:parsed-query-params request))
:options [{:value ""
:content "All"}
{:value "square"
@@ -35,7 +36,7 @@
(com/money-input {:name "total-gte"
:id "total-gte"
:hx-preserve "true"
:class "hot-filter"
:class "hot-filter w-20"
:value (:total-gte (:parsed-query-params request))
:placeholder "0.01"
:size :small})
@@ -44,7 +45,7 @@
(com/money-input {:name "total-lte"
:hx-preserve "true"
:id "total-lte"
:class "hot-filter"
:class "hot-filter w-20"
:value (:total-lte (:parsed-query-params request))
:placeholder "9999.34"
:size :small})]))