Online POS won't fetch items from item groups selected in POS Profile

Hello,

I’ve been dealing with an issue for a while. The POS wouldn’t fetch items from item groups selected in POS Profile witch would result in no products displayed if the user would not manually define a Item Group. After trying many options, the issue was solved by re-enabling the Offline POS…

Seems like there is an issue with the online POS (using latest version and a few previous versions since over a month)

Hope this helps you find where the problem is with the Online POS which I prefer to use.

Thanks!

G.

@bardbq

Seems there is an issue in the hierarchy of item groups.
To fix this, run below commands

bench console
from frappe.utils.nestedset import rebuild_tree
rebuild_tree("Item Group", "parent_item_group")
frappe.db.commit()
2 Likes

Problem solved by running these commands in bench console!

THANK YOU!

1 Like