POS Design and use of Barcode

Hello Team,

I am new to ERPNEXT using in food/Healthcare/Hospital Industry. I would like to check the best way to design the POS as i have lot of items and want to make it easire for cashier to search item as they would be using tablets also i wanted to know if i can disable images as we dont require them the space can be used for items. Please let me know. also how does barcode work if you can share me a video

Hello there, you can use this CSS to remove image and to make make it look like a list

$(“.image-view-item”).css({“border”:“none”})
$(“.image-field”).css({“display”:“none”})
$(“.image-view-row”).css({“display”:“inline”})
$(“.price-info”).css({“margin-left”:“460px”});

To use barcode, just click on the search item field make it focus, then scan the barcode(Make sure to check if the Item ,have barcode in the barcode table)

Hope this helps.