Minor bugfixes
This commit is contained in:
parent
03fec1ebd7
commit
475690ca2b
@ -164,7 +164,7 @@ async function patch(req: Request, res: Response) {
|
|||||||
data: {
|
data: {
|
||||||
userId: value.user_id,
|
userId: value.user_id,
|
||||||
paid: value.paid,
|
paid: value.paid,
|
||||||
// !!!!! paidAt: value.paid ? new Date() : undefined
|
paidAt: value.paid ? new Date() : undefined
|
||||||
},
|
},
|
||||||
select: {
|
select: {
|
||||||
id: true
|
id: true
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 637 KiB After Width: | Height: | Size: 1.5 MiB |
@ -125,7 +125,7 @@ scannerField.addEventListener('keydown', async function(event) {
|
|||||||
console.log('Barcode scanned:', barcode);
|
console.log('Barcode scanned:', barcode);
|
||||||
scannerField.value = "";
|
scannerField.value = "";
|
||||||
// createTemporaryNotification(`Barcode ${barcode} gescannt`, 'is-info');
|
// createTemporaryNotification(`Barcode ${barcode} gescannt`, 'is-info');
|
||||||
|
waitingForScan = false;
|
||||||
|
|
||||||
// Check if barcode is in the database
|
// Check if barcode is in the database
|
||||||
let product = globalData.find(p => p.gtin == barcode);
|
let product = globalData.find(p => p.gtin == barcode);
|
||||||
@ -144,7 +144,7 @@ scannerField.addEventListener('keydown', async function(event) {
|
|||||||
form_gtin.value = barcode;
|
form_gtin.value = barcode;
|
||||||
}
|
}
|
||||||
// modal_stage_2_result.innerHTML = product ? `<i class="bi bi-check"></i> Produkt gefunden: ${product.name}` : `<i class="bi bi-x"></i> Produkt nicht gefunden`;
|
// modal_stage_2_result.innerHTML = product ? `<i class="bi bi-check"></i> Produkt gefunden: ${product.name}` : `<i class="bi bi-x"></i> Produkt nicht gefunden`;
|
||||||
waitingForScan = false;
|
|
||||||
|
|
||||||
|
|
||||||
// let product = globalData.find(p => p.gtin == barcode);
|
// let product = globalData.find(p => p.gtin == barcode);
|
||||||
|
@ -216,7 +216,7 @@ scannerField.addEventListener('keydown', async function(event) {
|
|||||||
let product = globalData.find(p => p.gtin == barcode);
|
let product = globalData.find(p => p.gtin == barcode);
|
||||||
if(product) {
|
if(product) {
|
||||||
let event = new Event('click');
|
let event = new Event('click');
|
||||||
createTemporaryNotification(`<i class="bi bi-upc-scan"></i> Barcode scan: GTIN ${barcode} gefunden`, 'is-success');
|
createTemporaryNotification(`<i class="bi bi-upc-scan"></i> Barcode scan: GTIN ${barcode} gefunden`, 'is-success', 2000);
|
||||||
document.getElementById(`product_${product.id}`).dispatchEvent(event);
|
document.getElementById(`product_${product.id}`).dispatchEvent(event);
|
||||||
} else {
|
} else {
|
||||||
createTemporaryNotification( `<i class="bi bi-upc-scan"></i> Barcode scan: GTIN ${barcode} nicht gefunden`, 'is-danger');
|
createTemporaryNotification( `<i class="bi bi-upc-scan"></i> Barcode scan: GTIN ${barcode} nicht gefunden`, 'is-danger');
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
<a href="/admin/users" class="button is-large is-fullwidth is-primary">Benutzer</a>
|
<a href="/admin/users" class="button is-large is-fullwidth is-primary">Benutzer</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-4">
|
<div class="column is-4">
|
||||||
<a href="/admin/reports" class="button is-large is-fullwidth is-primary">Berichte</a>
|
<a href="/admin/report" class="button is-large is-fullwidth is-primary">Berichte</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<button class="js-modal-trigger button" data-target="modal-js-example">
|
<button class="js-modal-trigger button" data-target="modal-js-example">
|
||||||
Neues Produkt anlegen
|
Neues Produkt anlegen
|
||||||
</button><button class="js-modal-trigger button" data-target="modal-restock" id="btn_restock">
|
</button><button class="js-modal-trigger button" data-target="modal-restock" id="btn_restock">
|
||||||
Lager nachfüllen
|
Lager nachfüllen / Anpassen
|
||||||
</button><br></p>
|
</button><br></p>
|
||||||
|
|
||||||
<input class="input" type="text" data-searchTargetId="productTable" placeholder="Nach Produkt suchen.." />
|
<input class="input" type="text" data-searchTargetId="productTable" placeholder="Nach Produkt suchen.." />
|
||||||
@ -164,6 +164,8 @@
|
|||||||
<h2 class="title">Scan erfolgreich - Produktmenge eingeben</h1>
|
<h2 class="title">Scan erfolgreich - Produktmenge eingeben</h1>
|
||||||
<h3 class="subtitle" id="stage-2-amount">Aktuelle Menge: 0</h3>
|
<h3 class="subtitle" id="stage-2-amount">Aktuelle Menge: 0</h3>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
|
<button class="button is-info" onclick="restock(-1)">-1</button>
|
||||||
|
<button class="button is-info" onclick="restock(1)">+1</button>
|
||||||
<button class="button is-info" onclick="restock(6)">+6</button>
|
<button class="button is-info" onclick="restock(6)">+6</button>
|
||||||
<button class="button is-info" onclick="restock(10)">+10</button>
|
<button class="button is-info" onclick="restock(10)">+10</button>
|
||||||
<button class="button is-info" onclick="restock(12)">+12</button>
|
<button class="button is-info" onclick="restock(12)">+12</button>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user