summaryrefslogtreecommitdiffstats
path: root/data/templates/cashbox/selection.html
diff options
context:
space:
mode:
authorHolger Cremer <HolgerCremer@gmail.com>2020-01-04 21:56:53 +0100
committerHolger Cremer <HolgerCremer@gmail.com>2020-01-04 21:56:53 +0100
commit5094fc329619895583227de6b9f8bb0242503d07 (patch)
treef6f3701892fcf6389482223e2e96ac8cafe64a02 /data/templates/cashbox/selection.html
parentd92aa9d79a3f80557119b660f7191e96b7d79878 (diff)
downloadserial-barcode-scanner-5094fc329619895583227de6b9f8bb0242503d07.tar.bz2
improves the cashbox detail view
Diffstat (limited to 'data/templates/cashbox/selection.html')
-rw-r--r--data/templates/cashbox/selection.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/data/templates/cashbox/selection.html b/data/templates/cashbox/selection.html
deleted file mode 100644
index e15ee75..0000000
--- a/data/templates/cashbox/selection.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<h1>Cashbox Account</h1>
-
-<script>
-function onSubmit() {
- d = document.getElementsByName("date")[0].value
- if (d.indexOf("-") > 0) {
- var split = d.split("-")
- var uri = location.protocol + '//' + location.host + location.pathname + "/" + split[0] + "/" + split[1]
- self.location = uri;
- }
-}
-</script>
-
-<form>
- <input type="month" name="date" />
- <input type="button" value="Go" onclick="onSubmit()" />
-</form>