Skip to content

Commit

Permalink
[ADD] provelo_timesheet_hide_to_review
Browse files Browse the repository at this point in the history
Signed-off-by: Carmen Bianca Bakker <[email protected]>
  • Loading branch information
carmenbianca committed Sep 29, 2022
1 parent 03118cc commit 4d1e4fb
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions provelo_timesheet_hide_to_review/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: 2022 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
25 changes: 25 additions & 0 deletions provelo_timesheet_hide_to_review/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# SPDX-FileCopyrightText: 2022 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

{
"name": "Pro Velo Timesheet Hide To Review",
"summary": """
Hide 'To Review' menu from the top bar.""",
"version": "12.0.1.0.0",
"category": "Human Resources",
"website": "https://coopiteasy.be",
"author": "Coop IT Easy SC",
"maintainers": ["carmenbianca"],
"license": "AGPL-3",
"application": False,
"depends": [
"hr_timesheet_sheet",
],
"excludes": [],
"data": [
"views/hr_timesheet_sheet_views.xml",
],
"demo": [],
"qweb": [],
}
3 changes: 3 additions & 0 deletions provelo_timesheet_hide_to_review/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `Coop IT Easy SC <https://coopiteasy.be>`_:

* Carmen Bianca Bakker
1 change: 1 addition & 0 deletions provelo_timesheet_hide_to_review/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hide 'To Review' menu from the top bar.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
SPDX-FileCopyrightText: 2022 Coop IT Easy SC
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<odoo>
<record id="hr_timesheet_sheet.menu_hr_to_review" model="ir.ui.menu">
<field name="active">False</field>
</record>
</odoo>
6 changes: 6 additions & 0 deletions setup/provelo_timesheet_hide_to_review/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit 4d1e4fb

Please sign in to comment.