diff --git a/src/routes/api/v1/transaction/transaction.ts b/src/routes/api/v1/transaction/transaction.ts index a4e0753..4405014 100644 --- a/src/routes/api/v1/transaction/transaction.ts +++ b/src/routes/api/v1/transaction/transaction.ts @@ -164,7 +164,7 @@ async function patch(req: Request, res: Response) { data: { userId: value.user_id, paid: value.paid, - // !!!!! paidAt: value.paid ? new Date() : undefined + paidAt: value.paid ? new Date() : undefined }, select: { id: true diff --git a/static/media/showModeLockscreen.jpg b/static/media/showModeLockscreen.jpg index 82623f5..1253eac 100644 Binary files a/static/media/showModeLockscreen.jpg and b/static/media/showModeLockscreen.jpg differ diff --git a/static/pages/admin_products.js b/static/pages/admin_products.js index 00909f6..66aeb88 100644 --- a/static/pages/admin_products.js +++ b/static/pages/admin_products.js @@ -125,7 +125,7 @@ scannerField.addEventListener('keydown', async function(event) { console.log('Barcode scanned:', barcode); scannerField.value = ""; // createTemporaryNotification(`Barcode ${barcode} gescannt`, 'is-info'); - + waitingForScan = false; // Check if barcode is in the database let product = globalData.find(p => p.gtin == barcode); @@ -144,7 +144,7 @@ scannerField.addEventListener('keydown', async function(event) { form_gtin.value = barcode; } // modal_stage_2_result.innerHTML = product ? ` Produkt gefunden: ${product.name}` : ` Produkt nicht gefunden`; - waitingForScan = false; + // let product = globalData.find(p => p.gtin == barcode); diff --git a/static/pages/product_select.js b/static/pages/product_select.js index 3825dc8..a707a9b 100644 --- a/static/pages/product_select.js +++ b/static/pages/product_select.js @@ -216,7 +216,7 @@ scannerField.addEventListener('keydown', async function(event) { let product = globalData.find(p => p.gtin == barcode); if(product) { let event = new Event('click'); - createTemporaryNotification(` Barcode scan: GTIN ${barcode} gefunden`, 'is-success'); + createTemporaryNotification(` Barcode scan: GTIN ${barcode} gefunden`, 'is-success', 2000); document.getElementById(`product_${product.id}`).dispatchEvent(event); } else { createTemporaryNotification( ` Barcode scan: GTIN ${barcode} nicht gefunden`, 'is-danger'); diff --git a/views/admin/dashboard.eta b/views/admin/dashboard.eta index 305543d..f85d0a3 100644 --- a/views/admin/dashboard.eta +++ b/views/admin/dashboard.eta @@ -13,7 +13,7 @@ Benutzer
diff --git a/views/admin/products.eta b/views/admin/products.eta index 998788f..203862a 100644 --- a/views/admin/products.eta +++ b/views/admin/products.eta @@ -7,7 +7,7 @@