Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] portal_backend: add help comments on portal_backend type users and portal_holidays and portal_timesheet #241

Open
wants to merge 3 commits into
base: 18.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion portal_backend/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Portal Backend",
"version": "18.0.1.0.0",
"version": "18.0.1.1.0",
"category": "Base",
"sequence": 14,
"summary": "",
Expand Down
1 change: 1 addition & 0 deletions portal_backend/security/res_groups.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<!-- Portal backend user group -->
<record id="group_portal_backend" model="res.groups">
<field name="name">Portal Backend</field>
<field name="comment">Portal backend users have specific access rights. They usually do not belong to the usual Odoo groups but are able to access certain applications.</field>
<field name="category_id" ref="category_portal_advanced"/>
<field name="implied_ids" eval="[Command.link(ref('base.group_portal'))]"/>
</record>
Expand Down
2 changes: 1 addition & 1 deletion portal_holidays/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Portal Holidays",
"version": "18.0.1.2.0",
"version": "18.0.1.3.0",
"category": "Base",
"sequence": 14,
"summary": "",
Expand Down
5 changes: 3 additions & 2 deletions portal_holidays/security/res_groups.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.module.category" id="category_portal_holiday">
<field name="name">Portal Holiday</field>
<field name="name">Portal Holidays</field>
<field name="parent_id" ref="portal_backend.category_portal_advanced"/>
</record>

<record id="group_portal_backend_holiday" model="res.groups">
<field name="name">Portal Holiday</field>
<field name="name">Portal Holidays</field>
<field name="comment">Allows portal backend users to access the application dashboard to request leave days.</field>
<field name="category_id" ref="category_portal_holiday"/>
</record>
</odoo>
2 changes: 1 addition & 1 deletion portal_timesheet/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
##############################################################################
{
"name": "Portal Timesheet",
"version": "18.0.1.1.0",
"version": "18.0.1.2.0",
"category": "Base",
"sequence": 14,
"summary": "",
Expand Down
1 change: 1 addition & 0 deletions portal_timesheet/security/res_groups.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<record id="group_portal_backend_timesheet" model="res.groups">
<field name="name">Portal Timesheet</field>
<field name="comment">Allows portal backend users to access the application dashboard to record hours worked on tasks and projects that have been shared with them.</field>
<field name="category_id" ref="category_portal_timesheet"/>
</record>
</odoo>