Skip to content

Commit 4e1d153

Browse files
committed
2 Feb 2024
DATABASE CHANGES 1) Removed item batches & expiry - Confusing and a hassle to deal with. 2) Added customers. 3) Added item unit price. 4) Added deliveries and delivery items. 5) Added delivery order ID and purchase order ID to item movement. 6) Added "delivery status code" to settings. CODE CHANGES 1) Removed item batches & expiry. 2) Cleaned up NFC scanner code and interface. 3) Small update to QR scanner - Auto start on show. 4) Combined generate QR code page into report generator. 5) Restructed main menu - Removed "entities", added into "delivery" and "purchase". 6) A few other general UI and library updates.
1 parent 8c53a48 commit 4e1d153

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1555
-1178
lines changed

CB-worker.js

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,43 @@ self.addEventListener("install", evt => {
44
evt.waitUntil(
55
caches.open("StorageBoxx")
66
.then(cache => cache.addAll([
7+
"assets/bootstrap.bundle.min.js",
8+
"assets/bootstrap.bundle.min.js.map",
9+
"assets/bootstrap.min.css",
10+
"assets/bootstrap.min.css.map",
711
"assets/CB-autocomplete.js",
8-
"assets/PAGE-batch-check.js",
9-
"assets/PAGE-batch.js",
10-
"assets/PAGE-cb.js",
12+
"assets/csv.min.js",
13+
"assets/favicon.png",
14+
"assets/head-storage-boxx.webp",
15+
"assets/html5-qrcode.min.js",
16+
"assets/ico-512.png",
17+
"assets/icomoon.woff",
1118
"assets/PAGE-cb.css",
19+
"assets/PAGE-cb.js",
1220
"assets/PAGE-check.js",
21+
"assets/PAGE-cus.js",
22+
"assets/PAGE-deliver.js",
1323
"assets/PAGE-forgot.js",
1424
"assets/PAGE-home.js",
1525
"assets/PAGE-import.js",
16-
"assets/PAGE-items-check.js",
1726
"assets/PAGE-items.js",
27+
"assets/PAGE-items-check.js",
1828
"assets/PAGE-login.css",
1929
"assets/PAGE-login.js",
2030
"assets/PAGE-move.js",
2131
"assets/PAGE-nfc.js",
2232
"assets/PAGE-push.js",
33+
"assets/PAGE-qrscan.js",
34+
"assets/PAGE-scanner.css",
2335
"assets/PAGE-settings.js",
24-
"assets/PAGE-sup-items.js",
2536
"assets/PAGE-sup.js",
37+
"assets/PAGE-sup-items.js",
2638
"assets/PAGE-users.js",
27-
"assets/PAGE-wa-helper.js",
2839
"assets/PAGE-wa.js",
29-
"assets/bootstrap.bundle.min.js",
30-
"assets/bootstrap.bundle.min.js.map",
31-
"assets/csv.min.js",
32-
"assets/html5-qrcode.min.js",
40+
"assets/PAGE-wa-helper.js",
3341
"assets/qrcode.min.js",
34-
"assets/PAGE-qrscan.css",
35-
"assets/PAGE-qrscan.js",
36-
"assets/bootstrap.min.css",
37-
"assets/bootstrap.min.css.map",
38-
"assets/favicon.png",
39-
"assets/ico-512.png",
40-
"assets/head-storage-boxx.webp",
42+
"assets/REPORT-deliver.css",
43+
"assets/REPORT-qr.css",
4144
"assets/users.webp",
4245
// @TODO - ADD MORE OF YOUR OWN TO CACHE
4346
]))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Storage Boxx is an open-source PHP Inventory Management System. With a built-in
77
2) Create item NFC tags, built-in NFC scanner.
88
3) Passwordless login - QR, NFC, Web Authentication (Biometric, PIN, Face Recognition).
99
4) Stock level monitoring, push notifications on low stock.
10-
5) Batch and expiration tracking.
10+
5) Customers and delivery order management.
1111
6) Installable progressive web app.
1212
<br><br>
1313

assets/PAGE-ai-sr.js

Lines changed: 0 additions & 53 deletions
This file was deleted.

assets/PAGE-batch-check.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

assets/PAGE-batch.js

Lines changed: 0 additions & 166 deletions
This file was deleted.

assets/PAGE-cb.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)