diff --git a/hr_timesheet_type_non_billable/README.rst b/hr_timesheet_type_non_billable/README.rst new file mode 100644 index 0000000000..8d2afa179d --- /dev/null +++ b/hr_timesheet_type_non_billable/README.rst @@ -0,0 +1,106 @@ +.. image:: https://odoo-community.org/readme-banner-image + :target: https://odoo-community.org/get-involved?utm_source=readme + :alt: Odoo Community Association + +============================== +HR Timesheet Type Non Billable +============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:8bd8d899b1da2f36c476cfc8bee33223bb56e1a87fb01ff9a301284b013bfdbc + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Ftimesheet-lightgray.png?logo=github + :target: https://github.com/OCA/timesheet/tree/19.0/hr_timesheet_type_non_billable + :alt: OCA/timesheet +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/timesheet-19-0/timesheet-19-0-hr_timesheet_type_non_billable + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/timesheet&target_branch=19.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Sometimes you want to add timesheets that are not billable to clients. +With this module you can configure which timesheet type are not billable +so every timesheet with this type won't affect to project and task +remaining time computation. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +1. Go to Project > Configuration > Time Type +2. Create or edit a Time Type and mark it as Non Billable +3. Go to a project and select a task +4. Add planned hours to the task +5. Create a new timesheet with the Time Type you just created +6. You will see that the time you entered on the timesheet is not + discounted on the remaining hours or added in effective hours +7. You can also see project remaining hours are not affected by this non + billable time + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* APSL-Nagarro + +Contributors +------------ + +[APSL-Nagarro](https://apsl.tech): + +- Miquel Pascual López + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-mpascuall| image:: https://github.com/mpascuall.png?size=40px + :target: https://github.com/mpascuall + :alt: mpascuall + +Current `maintainer `__: + +|maintainer-mpascuall| + +This module is part of the `OCA/timesheet `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/hr_timesheet_type_non_billable/__init__.py b/hr_timesheet_type_non_billable/__init__.py new file mode 100644 index 0000000000..0650744f6b --- /dev/null +++ b/hr_timesheet_type_non_billable/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/hr_timesheet_type_non_billable/__manifest__.py b/hr_timesheet_type_non_billable/__manifest__.py new file mode 100644 index 0000000000..fd51f7483a --- /dev/null +++ b/hr_timesheet_type_non_billable/__manifest__.py @@ -0,0 +1,21 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "HR Timesheet Type Non Billable", + "version": "19.0.1.0.0", + "category": "Timesheet", + "website": "https://github.com/OCA/timesheet", + "author": "APSL-Nagarro, Odoo Community Association (OCA)", + "maintainers": ["mpascuall"], + "license": "AGPL-3", + "application": False, + "installable": True, + "depends": [ + "hr_timesheet", + "hr_timesheet_time_type", + "sale_timesheet_line_exclude", + ], + "data": [ + "views/project_time_type_view.xml", + ], +} diff --git a/hr_timesheet_type_non_billable/i18n/ca.po b/hr_timesheet_type_non_billable/i18n/ca.po new file mode 100644 index 0000000000..8808812a6b --- /dev/null +++ b/hr_timesheet_type_non_billable/i18n/ca.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_type_non_billable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-04-03 12:08+0000\n" +"PO-Revision-Date: 2025-04-03 12:08+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_account_analytic_line +msgid "Analytic Line" +msgstr "Línia analítica" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_time_type +msgid "Define Time Types" +msgstr "Definir ipus de temps" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_account_analytic_line__non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_project_time_type__non_billable +msgid "Non Billable" +msgstr "No Facturable" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_project +msgid "Project" +msgstr "Projecte" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_task +msgid "Task" +msgstr "Tasca" diff --git a/hr_timesheet_type_non_billable/i18n/es.po b/hr_timesheet_type_non_billable/i18n/es.po new file mode 100644 index 0000000000..45934503bf --- /dev/null +++ b/hr_timesheet_type_non_billable/i18n/es.po @@ -0,0 +1,43 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_type_non_billable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-04-03 12:09+0000\n" +"PO-Revision-Date: 2025-04-03 12:09+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_account_analytic_line +msgid "Analytic Line" +msgstr "Línea analítica" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_time_type +msgid "Define Time Types" +msgstr "Definir tipos de tiempo" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_account_analytic_line__non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_project_time_type__non_billable +msgid "Non Billable" +msgstr "No Facturable" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_project +msgid "Project" +msgstr "Proyecto" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_task +msgid "Task" +msgstr "Tarea" diff --git a/hr_timesheet_type_non_billable/i18n/hr_timesheet_type_non_billable.pot b/hr_timesheet_type_non_billable/i18n/hr_timesheet_type_non_billable.pot new file mode 100644 index 0000000000..c07a8ec44e --- /dev/null +++ b/hr_timesheet_type_non_billable/i18n/hr_timesheet_type_non_billable.pot @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_type_non_billable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_account_analytic_line +msgid "Analytic Line" +msgstr "" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_time_type +msgid "Define Time Types" +msgstr "" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_account_analytic_line__non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_project_time_type__non_billable +msgid "Non Billable" +msgstr "" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_project +msgid "Project" +msgstr "" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_task +msgid "Task" +msgstr "" diff --git a/hr_timesheet_type_non_billable/i18n/it.po b/hr_timesheet_type_non_billable/i18n/it.po new file mode 100644 index 0000000000..8db7ac8118 --- /dev/null +++ b/hr_timesheet_type_non_billable/i18n/it.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_type_non_billable +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-06-17 08:26+0000\n" +"Last-Translator: mymage \n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10.4\n" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_account_analytic_line +msgid "Analytic Line" +msgstr "Riga analitica" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_time_type +msgid "Define Time Types" +msgstr "Definizione tipi orario" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_account_analytic_line__non_billable +#: model:ir.model.fields,field_description:hr_timesheet_type_non_billable.field_project_time_type__non_billable +msgid "Non Billable" +msgstr "Non fatturabile" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_project +msgid "Project" +msgstr "Progetto" + +#. module: hr_timesheet_type_non_billable +#: model:ir.model,name:hr_timesheet_type_non_billable.model_project_task +msgid "Task" +msgstr "Lavoro" + +#~ msgid "Helpdesk Ticket" +#~ msgstr "Ticket assistenza clienti" diff --git a/hr_timesheet_type_non_billable/models/__init__.py b/hr_timesheet_type_non_billable/models/__init__.py new file mode 100644 index 0000000000..590b041e60 --- /dev/null +++ b/hr_timesheet_type_non_billable/models/__init__.py @@ -0,0 +1,7 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import project_time_type +from . import account_analytic_line +from . import project_project +from . import project_task diff --git a/hr_timesheet_type_non_billable/models/account_analytic_line.py b/hr_timesheet_type_non_billable/models/account_analytic_line.py new file mode 100644 index 0000000000..7ef9f7c4c5 --- /dev/null +++ b/hr_timesheet_type_non_billable/models/account_analytic_line.py @@ -0,0 +1,20 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AnalyticLine(models.Model): + _inherit = "account.analytic.line" + + non_billable = fields.Boolean( + related="time_type_id.non_billable", string="Non Billable", readonly=True + ) + + @api.onchange("time_type_id") + def _onchange_time_type_id_non_billable(self): + for line in self: + if line.time_type_id and line.time_type_id.non_billable: + line.exclude_from_sale_order = True + else: + line.exclude_from_sale_order = False diff --git a/hr_timesheet_type_non_billable/models/project_project.py b/hr_timesheet_type_non_billable/models/project_project.py new file mode 100644 index 0000000000..842042c544 --- /dev/null +++ b/hr_timesheet_type_non_billable/models/project_project.py @@ -0,0 +1,30 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, models +from odoo.fields import Domain + + +class Project(models.Model): + _inherit = "project.project" + + @api.depends("allow_timesheets", "timesheet_ids") + def _compute_remaining_hours(self): + res = super()._compute_remaining_hours() + + timesheets_read_group = self.env["account.analytic.line"]._read_group( + Domain([("project_id", "in", self.ids), ("non_billable", "=", False)]), + ["project_id"], + ["unit_amount:sum"], + ) + timesheet_time_dict = { + project.id: unit_amount_sum + for project, unit_amount_sum in timesheets_read_group + } + for project in self: + project.remaining_hours = project.allocated_hours - timesheet_time_dict.get( + project.id, 0 + ) + project.is_project_overtime = project.remaining_hours < 0 + + return res diff --git a/hr_timesheet_type_non_billable/models/project_task.py b/hr_timesheet_type_non_billable/models/project_task.py new file mode 100644 index 0000000000..ff22dd95d6 --- /dev/null +++ b/hr_timesheet_type_non_billable/models/project_task.py @@ -0,0 +1,22 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, models + + +class ProjectTask(models.Model): + _inherit = "project.task" + + @api.depends("timesheet_ids.unit_amount") + def _compute_effective_hours(self): + res = super()._compute_effective_hours() + + for task in self: + non_billable_hours = sum( + timesheet.unit_amount + for timesheet in task.timesheet_ids + if timesheet.non_billable + ) + task.effective_hours -= non_billable_hours + + return res diff --git a/hr_timesheet_type_non_billable/models/project_time_type.py b/hr_timesheet_type_non_billable/models/project_time_type.py new file mode 100644 index 0000000000..c1c6fd10f1 --- /dev/null +++ b/hr_timesheet_type_non_billable/models/project_time_type.py @@ -0,0 +1,10 @@ +# Copyright 2025 Miquel Pascual López(APSL-Nagarro) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ProjectTimeType(models.Model): + _inherit = "project.time.type" + + non_billable = fields.Boolean(default=False) diff --git a/hr_timesheet_type_non_billable/pyproject.toml b/hr_timesheet_type_non_billable/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/hr_timesheet_type_non_billable/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/hr_timesheet_type_non_billable/readme/CONTRIBUTORS.md b/hr_timesheet_type_non_billable/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..ede77a0fb4 --- /dev/null +++ b/hr_timesheet_type_non_billable/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +\[APSL-Nagarro\](): + - Miquel Pascual López \<\> \ No newline at end of file diff --git a/hr_timesheet_type_non_billable/readme/DESCRIPTION.md b/hr_timesheet_type_non_billable/readme/DESCRIPTION.md new file mode 100644 index 0000000000..1ecbe58ce1 --- /dev/null +++ b/hr_timesheet_type_non_billable/readme/DESCRIPTION.md @@ -0,0 +1,2 @@ +Sometimes you want to add timesheets that are not billable to clients. With this module you can configure which timesheet type are not billable +so every timesheet with this type won't affect to project and task remaining time computation. \ No newline at end of file diff --git a/hr_timesheet_type_non_billable/readme/USAGE.md b/hr_timesheet_type_non_billable/readme/USAGE.md new file mode 100644 index 0000000000..ed1af69fbd --- /dev/null +++ b/hr_timesheet_type_non_billable/readme/USAGE.md @@ -0,0 +1,7 @@ +1. Go to Project > Configuration > Time Type +2. Create or edit a Time Type and mark it as Non Billable +3. Go to a project and select a task +4. Add planned hours to the task +5. Create a new timesheet with the Time Type you just created +5. You will see that the time you entered on the timesheet is not discounted on the remaining hours or added in effective hours +6. You can also see project remaining hours are not affected by this non billable time \ No newline at end of file diff --git a/hr_timesheet_type_non_billable/static/description/icon.png b/hr_timesheet_type_non_billable/static/description/icon.png new file mode 100644 index 0000000000..1dcc49c24f Binary files /dev/null and b/hr_timesheet_type_non_billable/static/description/icon.png differ diff --git a/hr_timesheet_type_non_billable/static/description/index.html b/hr_timesheet_type_non_billable/static/description/index.html new file mode 100644 index 0000000000..e21fbb2181 --- /dev/null +++ b/hr_timesheet_type_non_billable/static/description/index.html @@ -0,0 +1,450 @@ + + + + + +README.rst + + + +
+ + + +Odoo Community Association + +
+

HR Timesheet Type Non Billable

+ +

Beta License: AGPL-3 OCA/timesheet Translate me on Weblate Try me on Runboat

+

Sometimes you want to add timesheets that are not billable to clients. +With this module you can configure which timesheet type are not billable +so every timesheet with this type won’t affect to project and task +remaining time computation.

+

Table of contents

+ +
+

Usage

+
    +
  1. Go to Project > Configuration > Time Type
  2. +
  3. Create or edit a Time Type and mark it as Non Billable
  4. +
  5. Go to a project and select a task
  6. +
  7. Add planned hours to the task
  8. +
  9. Create a new timesheet with the Time Type you just created
  10. +
  11. You will see that the time you entered on the timesheet is not +discounted on the remaining hours or added in effective hours
  12. +
  13. You can also see project remaining hours are not affected by this non +billable time
  14. +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • APSL-Nagarro
  • +
+
+
+

Contributors

+

[APSL-Nagarro](https://apsl.tech):

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

mpascuall

+

This module is part of the OCA/timesheet project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+
+ + diff --git a/hr_timesheet_type_non_billable/tests/__init__.py b/hr_timesheet_type_non_billable/tests/__init__.py new file mode 100644 index 0000000000..c449da17b3 --- /dev/null +++ b/hr_timesheet_type_non_billable/tests/__init__.py @@ -0,0 +1 @@ +from . import test_hr_timesheet_type_non_billable diff --git a/hr_timesheet_type_non_billable/tests/test_hr_timesheet_type_non_billable.py b/hr_timesheet_type_non_billable/tests/test_hr_timesheet_type_non_billable.py new file mode 100644 index 0000000000..43c4f00f6f --- /dev/null +++ b/hr_timesheet_type_non_billable/tests/test_hr_timesheet_type_non_billable.py @@ -0,0 +1,79 @@ +from odoo.addons.base.tests.common import BaseCommon + + +class TestHrTimesheetTypeNonBillable(BaseCommon): + @classmethod + def setUpClass(cls): + super().setUpClass() + + cls.employee = cls.env["hr.employee"].create( + { + "name": "Test Employee", + } + ) + cls.project = cls.env["project.project"].create( + { + "name": "Test Project", + "allocated_hours": 50, + } + ) + cls.billable_type = cls.env["project.time.type"].create( + { + "name": "Billable", + "non_billable": False, + } + ) + cls.non_billable_type = cls.env["project.time.type"].create( + { + "name": "Non-Billable", + "non_billable": True, + } + ) + cls.task = cls.env["project.task"].create( + { + "name": "Test Task", + "project_id": cls.project.id, + "allocated_hours": 10, + } + ) + + def test_non_billable_timesheet(self): + self.env["account.analytic.line"].create( + { + "employee_id": self.employee.id, + "name": "Non-Billable Timesheet", + "project_id": self.project.id, + "task_id": self.task.id, + "unit_amount": 2, + "time_type_id": self.non_billable_type.id, + } + ) + + self.env["account.analytic.line"].create( + { + "employee_id": self.employee.id, + "name": "Billable Timesheet", + "project_id": self.project.id, + "task_id": self.task.id, + "unit_amount": 3, + "time_type_id": self.billable_type.id, + } + ) + + self.assertEqual( + self.task.remaining_hours, + 7, + "Task remaining hours should exclude non-billable timesheets.", + ) + + self.assertEqual( + self.task.effective_hours, + 3, + "Task effective hours should only include billable timesheets.", + ) + + self.assertEqual( + self.project.remaining_hours, + 47, + "Project remaining hours should exclude non-billable timesheets.", + ) diff --git a/hr_timesheet_type_non_billable/views/project_time_type_view.xml b/hr_timesheet_type_non_billable/views/project_time_type_view.xml new file mode 100644 index 0000000000..bdac3379da --- /dev/null +++ b/hr_timesheet_type_non_billable/views/project_time_type_view.xml @@ -0,0 +1,29 @@ + + + project.time.type.tree.inherit + project.time.type + + + + + + + + + + project.time.type.form.inherit + project.time.type + + + + + + + + diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 0000000000..b8da36ee91 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1 @@ +odoo-addon-hr_timesheet_time_type @ git+https://github.com/OCA/timesheet.git@refs/pull/824/head#subdirectory=hr_timesheet_time_type