Return newest item when scanning barcode linked to multiple items
This commit is contained in:
parent
cd77aaf313
commit
fce7734df6
@ -111,6 +111,7 @@ public class TransactionsController : Controller
|
||||
{
|
||||
var item = await dbContext.Items
|
||||
.Where(item => item.Barcodes.Any(barcode => barcode.BarcodeData == barcodeData))
|
||||
.OrderByDescending(item => item.UpdatedAt)
|
||||
.FirstOrDefaultAsync();
|
||||
|
||||
item ??= new Item(id: default);
|
||||
|
Loading…
x
Reference in New Issue
Block a user