Understanding the users and companies data model
Users and companies are central elements of the Odoo data model. They can be accessed in the Settings | Users & Companies menu. The menu options available are listed here:
- User, or
res.users
, stores the system users. These have an implicit partner record in thepartner_id
field, where the name, email, image, and other contact details are stored. - Access Group, or
res.group
, stores the security access groups. This menu is only available with the developer mode enabled. Users belonging to a group will be granted that group's privileges. Groups can inherit other groups, meaning that they will also provide the privileges from these inherited groups. - Company, or
res.company
, stores the organization's details and the company-specific configurations. It has an implicit partner record, holding the address and contact details, stored in thepartner_id
field. A default company is provided on new databases, with the...