Skip to content

Commit

Permalink
[IMP] portal_timesheet: new module
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasperalta1 committed Oct 27, 2022
1 parent 5d99a6f commit 457a3fb
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 0 deletions.
64 changes: 64 additions & 0 deletions portal_timesheet/README.rst
@@ -0,0 +1,64 @@
.. |company| replace:: ADHOC SA

.. |company_logo| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-logo.png
:alt: ADHOC SA
:target: https://www.adhoc.com.ar

.. |icon| image:: https://raw.githubusercontent.com/ingadhoc/maintainer-tools/master/resources/adhoc-icon.png

.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

================
Portal Timesheet
================

This module add an new group to use portal with absence management in backend.

#. This module creates the necessary groups to be able to give permissions to a portal user for timesheet, but the installation of the module alone does nothing, it is then necessary to choose the portal group that includes this functionality and add these groups as inheritance.

Installation
============

Only install the module.

Configuration
=============

There is nothing to configure.

Usage
=====

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: http://runbot.adhoc.com.ar/

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/ingadhoc/miscellaneous/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smashing it by providing a detailed and welcomed feedback.

Credits
=======

Images
------

* |company| |icon|

Contributors
------------

Maintainer
----------

|company_logo|

This module is maintained by the |company|.

To contribute to this module, please visit https://www.adhoc.com.ar.
6 changes: 6 additions & 0 deletions portal_timesheet/__init__.py
@@ -0,0 +1,6 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################


42 changes: 42 additions & 0 deletions portal_timesheet/__manifest__.py
@@ -0,0 +1,42 @@
##############################################################################
#
# Copyright (C) 2019 ADHOC SA (http://www.adhoc.com.ar)
# All Rights Reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Portal Timesheet',
'version': '13.0.1.0.0',
'category': 'Base',
'sequence': 14,
'summary': '',
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
'license': 'AGPL-3',
'images': [
],
'depends': [
'portal_backend',
'hr_timesheet',
],
'data': [
'security/portal_timesheet.xml',
'security/ir.model.access.csv',
],
'installable': True,
'auto_install': False,
'application': False,
}
6 changes: 6 additions & 0 deletions portal_timesheet/security/ir.model.access.csv
@@ -0,0 +1,6 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
portal_timesheet_account_analytic_account,portal-timesheet-model_account_analytic_account,analytic.model_account_analytic_account,portal_timesheet,1,1,0,0
portal_timesheet_project_project,portal-timesheet-model_project_project,project.model_project_project,portal_timesheet,1,0,0,0
portal_timesheet_project_task,portal-timesheet-model_project_task,project.model_project_task,portal_timesheet,1,1,0,0
portal_timesheet_account_analytic_line,portal-timesheet-model_account_analytic_line,analytic.model_account_analytic_line,portal_timesheet,1,1,1,1
portal_timesheet_uom_uom,portal-timesheet-model_uom_uom,uom.model_uom_uom,portal_timesheet,1,0,0,0
24 changes: 24 additions & 0 deletions portal_timesheet/security/portal_timesheet.xml
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="portal_timesheet" model="res.groups">
<field name="name">portal_timesheet</field>
<field name="category_id" ref="base.module_category_operations_timesheets"/>
</record>

<record id="hr_timesheet.timesheet_menu_root" model="ir.ui.menu">
<field name="groups_id" eval="(4, ref('portal_timesheet.portal_timesheet'))"/>
</record>

<record id="hr_timesheet.view_task_form2_inherited" model="ir.ui.view">
<field name="groups_id" eval="(4, ref('portal_timesheet.portal_timesheet'))"/>
</record>

<record id="hr_timesheet.timesheet_line_rule_user" model="ir.rule">
<field name="groups" eval="(4, ref('portal_timesheet.portal_timesheet'))"/>
</record>

<!-- La siguiente linea va en el módulo de personalizaciones de la empresa que requiera este módulo -->
<!-- <record id="base.group_portal" model="res.groups">
<field name="implied_ids" eval="[(4, ref('portal_timesheet.portal_timesheet'))]"/>
</record> -->
</odoo>

0 comments on commit 457a3fb

Please sign in to comment.