Introducing the library portal learning project
To learn about Odoo web page development, a new project will be used. The library app can use self-service features for library members. Members can be assigned a user login to have access to their book checkout requests.
The library_portal
add-on module will be created for these portal self-service features.
The first file to add is the manifest, library_portal/__manifest__.py
, which you can create with the following code:
{ "name": "Library Portal", "description": "Portal for library members", "author": "Daniel Reis", "license": "AGPL-3", "depends": [ "library_checkout", "portal" ], "data": [ "security/library_security.xml", "...