From e8b75956d0ca641537ba455276235d089915910e Mon Sep 17 00:00:00 2001 From: flfeders Date: Fri, 14 Jun 2024 17:23:09 +0200 Subject: [PATCH] added articleNumber to barcode input --- pages/inventory/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/inventory/index.vue b/pages/inventory/index.vue index 5021140..c474531 100644 --- a/pages/inventory/index.vue +++ b/pages/inventory/index.vue @@ -133,7 +133,7 @@ function changeFocusToBarcode() { const findProductByBarcodeOrEAN = (input) => { - return dataStore.products.find(i => i.barcode === input || i.ean === input) + return dataStore.products.find(i => i.barcode === input || i.ean === input || i.articleNumber === input) } const findSpaceBySpaceNumber = (input) => {