From c1055653b90fa08be5cacc113ca30bd3cca1a732 Mon Sep 17 00:00:00 2001 From: coccinouille Date: Fri, 26 Nov 2021 16:01:05 +0100 Subject: [PATCH 01/11] [ADD] server action to open current timesheet --- hr_timesheet_sheet_current/README.rst | 64 +++ hr_timesheet_sheet_current/__init__.py | 1 + hr_timesheet_sheet_current/__manifest__.py | 17 + hr_timesheet_sheet_current/models/__init__.py | 1 + .../models/hr_timesheet_sheet.py | 36 ++ .../readme/CONTRIBUTORS.rst | 0 .../readme/DESCRIPTION.rst | 0 .../static/description/index.html | 411 ++++++++++++++++++ .../views/hr_timesheet_sheet.xml | 22 + 9 files changed, 552 insertions(+) create mode 100644 hr_timesheet_sheet_current/README.rst create mode 100644 hr_timesheet_sheet_current/__init__.py create mode 100644 hr_timesheet_sheet_current/__manifest__.py create mode 100644 hr_timesheet_sheet_current/models/__init__.py create mode 100644 hr_timesheet_sheet_current/models/hr_timesheet_sheet.py create mode 100644 hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst create mode 100644 hr_timesheet_sheet_current/readme/DESCRIPTION.rst create mode 100644 hr_timesheet_sheet_current/static/description/index.html create mode 100644 hr_timesheet_sheet_current/views/hr_timesheet_sheet.xml diff --git a/hr_timesheet_sheet_current/README.rst b/hr_timesheet_sheet_current/README.rst new file mode 100644 index 0000000..5d49893 --- /dev/null +++ b/hr_timesheet_sheet_current/README.rst @@ -0,0 +1,64 @@ +========================== +My Current Timesheet Sheet +========================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/licence-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%2Fvertical--cooperative-lightgray.png?logo=github + :target: https://github.com/OCA/vertical-cooperative/tree/12.0-add-my-current-timesheet/hr_timesheet_sheet_current + :alt: OCA/vertical-cooperative +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/vertical-cooperative-12-0-add-my-current-timesheet/vertical-cooperative-12-0-add-my-current-timesheet-hr_timesheet_sheet_current + :alt: Translate me on Weblate + +|badge1| |badge2| |badge3| |badge4| + + +**Table of contents** + +.. contents:: + :local: + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Coop IT Easy SCRLfs + +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. + +This module is part of the `OCA/vertical-cooperative `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/hr_timesheet_sheet_current/__init__.py b/hr_timesheet_sheet_current/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/hr_timesheet_sheet_current/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py new file mode 100644 index 0000000..aa6b2fa --- /dev/null +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2021 Victor Champonnois +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "My Current Timesheet Sheet", + "summary": """ + Allow to access the current timesheet sheet directly from the menu""", + "version": "12.0.1.0.0", + "license": "AGPL-3", + "author": "Coop IT Easy SCRLfs", + "website": "https://coopiteasy.be", + "depends": [ + "hr_timesheet_sheet", + ], + "data": ["views/hr_timesheet_sheet.xml"], + "demo": [], +} diff --git a/hr_timesheet_sheet_current/models/__init__.py b/hr_timesheet_sheet_current/models/__init__.py new file mode 100644 index 0000000..5858a81 --- /dev/null +++ b/hr_timesheet_sheet_current/models/__init__.py @@ -0,0 +1 @@ +from . import hr_timesheet_sheet diff --git a/hr_timesheet_sheet_current/models/hr_timesheet_sheet.py b/hr_timesheet_sheet_current/models/hr_timesheet_sheet.py new file mode 100644 index 0000000..0f56d5d --- /dev/null +++ b/hr_timesheet_sheet_current/models/hr_timesheet_sheet.py @@ -0,0 +1,36 @@ +import datetime + +from odoo import api, models +from odoo.tools.translate import _ + + +class Sheet(models.Model): + _inherit = "hr_timesheet.sheet" + + @api.model + def get_current_timesheet(self): + ts = self.env["hr_timesheet.sheet"] + today_date = datetime.date.today() + ids = ts.search( + [ + ("user_id", "=", self.env.uid), + ("state", "in", ("draft", "new")), + ("date_start", "<=", today_date), + ("date_end", ">=", today_date), + ] + ) + view_type = "form,tree" + + context = self.env.context + action = { + "name": _("Open Timesheet"), + "view_type": "form", + "view_mode": view_type, + "res_model": "hr_timesheet.sheet", + "view_id": False, + "type": "ir.actions.act_window", + "context": context, + "domain": "[('user_id', '=', uid)]", + "res_id": ids.id, + } + return action diff --git a/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst b/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..e69de29 diff --git a/hr_timesheet_sheet_current/readme/DESCRIPTION.rst b/hr_timesheet_sheet_current/readme/DESCRIPTION.rst new file mode 100644 index 0000000..e69de29 diff --git a/hr_timesheet_sheet_current/static/description/index.html b/hr_timesheet_sheet_current/static/description/index.html new file mode 100644 index 0000000..4ca29f1 --- /dev/null +++ b/hr_timesheet_sheet_current/static/description/index.html @@ -0,0 +1,411 @@ + + + + + + +My Current Timesheet Sheet + + + +
+

My Current Timesheet Sheet

+ + +

Beta License: AGPL-3 OCA/vertical-cooperative Translate me on Weblate

+

Table of contents

+ +
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Coop IT Easy SCRLfs
  • +
+
+
+

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.

+

This module is part of the OCA/vertical-cooperative project on GitHub.

+

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

+
+
+
+ + diff --git a/hr_timesheet_sheet_current/views/hr_timesheet_sheet.xml b/hr_timesheet_sheet_current/views/hr_timesheet_sheet.xml new file mode 100644 index 0000000..2ecd35b --- /dev/null +++ b/hr_timesheet_sheet_current/views/hr_timesheet_sheet.xml @@ -0,0 +1,22 @@ + + + + + My Current Timesheet Sheet + + code + + action = model.get_current_timesheet() + + + + + + + From 0a9bb3646ab59fbfca7540ecf5186b5c989b7354 Mon Sep 17 00:00:00 2001 From: coccinouille Date: Mon, 29 Nov 2021 17:27:31 +0100 Subject: [PATCH 02/11] [FIX] fix hr_timesheet_sheet_current readme --- hr_timesheet_sheet_current/README.rst | 37 +++++++++---------- .../readme/CONTRIBUTORS.rst | 3 ++ .../readme/DESCRIPTION.rst | 3 ++ .../static/description/index.html | 31 ++++++++++------ 4 files changed, 42 insertions(+), 32 deletions(-) diff --git a/hr_timesheet_sheet_current/README.rst b/hr_timesheet_sheet_current/README.rst index 5d49893..530ec60 100644 --- a/hr_timesheet_sheet_current/README.rst +++ b/hr_timesheet_sheet_current/README.rst @@ -13,15 +13,15 @@ My Current Timesheet Sheet .. |badge2| image:: https://img.shields.io/badge/licence-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%2Fvertical--cooperative-lightgray.png?logo=github - :target: https://github.com/OCA/vertical-cooperative/tree/12.0-add-my-current-timesheet/hr_timesheet_sheet_current - :alt: OCA/vertical-cooperative -.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/vertical-cooperative-12-0-add-my-current-timesheet/vertical-cooperative-12-0-add-my-current-timesheet-hr_timesheet_sheet_current - :alt: Translate me on Weblate +.. |badge3| image:: https://img.shields.io/badge/github-coopiteasy%2Fcie--timesheet-lightgray.png?logo=github + :target: https://github.com/coopiteasy/cie-timesheet/tree/12.0/hr_timesheet_sheet_current + :alt: coopiteasy/cie-timesheet -|badge1| |badge2| |badge3| |badge4| +|badge1| |badge2| |badge3| +Allow to access the current timesheet sheet directly from the menu. + +A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. **Table of contents** @@ -31,10 +31,10 @@ My Current Timesheet Sheet Bug Tracker =========== -Bugs are tracked on `GitHub Issues `_. +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 smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -46,19 +46,16 @@ Authors * Coop IT Easy SCRLfs -Maintainers -~~~~~~~~~~~ +Contributors +~~~~~~~~~~~~ -This module is maintained by the OCA. +* `Coop IT Easy SCRLfs `_: -.. image:: https://odoo-community.org/logo.png - :alt: Odoo Community Association - :target: https://odoo-community.org + * victor champonnois -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. +Maintainers +~~~~~~~~~~~ -This module is part of the `OCA/vertical-cooperative `_ project on GitHub. +This module is part of the `coopiteasy/cie-timesheet `_ project on GitHub. -You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. +You are welcome to contribute. diff --git a/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst b/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst index e69de29..d2de87a 100644 --- a/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst +++ b/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Coop IT Easy SCRLfs `_: + + * victor champonnois diff --git a/hr_timesheet_sheet_current/readme/DESCRIPTION.rst b/hr_timesheet_sheet_current/readme/DESCRIPTION.rst index e69de29..408ca9d 100644 --- a/hr_timesheet_sheet_current/readme/DESCRIPTION.rst +++ b/hr_timesheet_sheet_current/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +Allow to access the current timesheet sheet directly from the menu. + +A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. diff --git a/hr_timesheet_sheet_current/static/description/index.html b/hr_timesheet_sheet_current/static/description/index.html index 4ca29f1..ea8f123 100644 --- a/hr_timesheet_sheet_current/static/description/index.html +++ b/hr_timesheet_sheet_current/static/description/index.html @@ -367,24 +367,27 @@

My Current Timesheet Sheet

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/vertical-cooperative Translate me on Weblate

+

Beta License: AGPL-3 coopiteasy/cie-timesheet

+

Allow to access the current timesheet sheet directly from the menu.

+

A new menu is added to the Timesheet module, pointing directly to the user’s current timesheet sheet.

Table of contents

Bug Tracker

-

Bugs are tracked on GitHub Issues. +

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 smashing it by providing a detailed and welcomed -feedback.

+feedback.

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

@@ -395,15 +398,19 @@

Authors

  • Coop IT Easy SCRLfs
  • +
    +

    Contributors

    + +
    -

    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.

    -

    This module is part of the OCA/vertical-cooperative project on GitHub.

    -

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

    +

    Maintainers

    +

    This module is part of the coopiteasy/cie-timesheet project on GitHub.

    +

    You are welcome to contribute.

    From bc5580c0174e12532425aed7cdb3d67c8f6f8c97 Mon Sep 17 00:00:00 2001 From: hugues de keyzer Date: Tue, 4 Jan 2022 14:54:50 +0100 Subject: [PATCH 03/11] [IMP] pass pre-commit --- hr_timesheet_sheet_current/readme/DESCRIPTION.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/readme/DESCRIPTION.rst b/hr_timesheet_sheet_current/readme/DESCRIPTION.rst index 408ca9d..a33b099 100644 --- a/hr_timesheet_sheet_current/readme/DESCRIPTION.rst +++ b/hr_timesheet_sheet_current/readme/DESCRIPTION.rst @@ -1,3 +1,3 @@ Allow to access the current timesheet sheet directly from the menu. -A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. +A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. From 0c28739cc6f0f2312cff2fcdffbc5f8f313aeebe Mon Sep 17 00:00:00 2001 From: oca-ci Date: Mon, 16 May 2022 13:56:50 +0000 Subject: [PATCH 04/11] [UPD] Update hr_timesheet_sheet_current.pot --- .../i18n/hr_timesheet_sheet_current.pot | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 hr_timesheet_sheet_current/i18n/hr_timesheet_sheet_current.pot diff --git a/hr_timesheet_sheet_current/i18n/hr_timesheet_sheet_current.pot b/hr_timesheet_sheet_current/i18n/hr_timesheet_sheet_current.pot new file mode 100644 index 0000000..937000a --- /dev/null +++ b/hr_timesheet_sheet_current/i18n/hr_timesheet_sheet_current.pot @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * hr_timesheet_sheet_current +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.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_sheet_current +#: model:ir.actions.server,name:hr_timesheet_sheet_current.action_hr_timesheet_current_open +#: model:ir.ui.menu,name:hr_timesheet_sheet_current.menu_act_hr_timesheet_sheet_form_my_current +msgid "My Current Timesheet Sheet" +msgstr "" + +#. module: hr_timesheet_sheet_current +#: code:addons/hr_timesheet_sheet_current/models/hr_timesheet_sheet.py:26 +#, python-format +msgid "Open Timesheet" +msgstr "" + +#. module: hr_timesheet_sheet_current +#: model:ir.model,name:hr_timesheet_sheet_current.model_hr_timesheet_sheet +msgid "Timesheet Sheet" +msgstr "" + From 593ff83d34980f9c245628ce313ea987292d698d Mon Sep 17 00:00:00 2001 From: Github GRAP Bot Date: Thu, 26 May 2022 14:00:35 +0000 Subject: [PATCH 05/11] [UPD] README.rst --- hr_timesheet_sheet_current/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/README.rst b/hr_timesheet_sheet_current/README.rst index 530ec60..fb8351a 100644 --- a/hr_timesheet_sheet_current/README.rst +++ b/hr_timesheet_sheet_current/README.rst @@ -21,7 +21,7 @@ My Current Timesheet Sheet Allow to access the current timesheet sheet directly from the menu. -A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. +A new menu is added to the Timesheet module, pointing directly to the user's current timesheet sheet. **Table of contents** From d960d723e2c2a7f98385a6b097177647b2c81a03 Mon Sep 17 00:00:00 2001 From: Carmen Bianca Bakker Date: Wed, 29 Jun 2022 11:34:44 +0200 Subject: [PATCH 06/11] =?UTF-8?q?[FIX]=20SCRLfs=20=E2=86=92=20SC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carmen Bianca Bakker --- hr_timesheet_sheet_current/README.rst | 4 ++-- hr_timesheet_sheet_current/__manifest__.py | 2 +- hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst | 2 +- hr_timesheet_sheet_current/static/description/index.html | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hr_timesheet_sheet_current/README.rst b/hr_timesheet_sheet_current/README.rst index fb8351a..09cec2e 100644 --- a/hr_timesheet_sheet_current/README.rst +++ b/hr_timesheet_sheet_current/README.rst @@ -44,12 +44,12 @@ Credits Authors ~~~~~~~ -* Coop IT Easy SCRLfs +* Coop IT Easy SC Contributors ~~~~~~~~~~~~ -* `Coop IT Easy SCRLfs `_: +* `Coop IT Easy SC `_: * victor champonnois diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index aa6b2fa..8514639 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -7,7 +7,7 @@ Allow to access the current timesheet sheet directly from the menu""", "version": "12.0.1.0.0", "license": "AGPL-3", - "author": "Coop IT Easy SCRLfs", + "author": "Coop IT Easy SC", "website": "https://coopiteasy.be", "depends": [ "hr_timesheet_sheet", diff --git a/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst b/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst index d2de87a..7084f23 100644 --- a/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst +++ b/hr_timesheet_sheet_current/readme/CONTRIBUTORS.rst @@ -1,3 +1,3 @@ -* `Coop IT Easy SCRLfs `_: +* `Coop IT Easy SC `_: * victor champonnois diff --git a/hr_timesheet_sheet_current/static/description/index.html b/hr_timesheet_sheet_current/static/description/index.html index ea8f123..e9084f9 100644 --- a/hr_timesheet_sheet_current/static/description/index.html +++ b/hr_timesheet_sheet_current/static/description/index.html @@ -395,13 +395,13 @@

    Credits

    Authors

      -
    • Coop IT Easy SCRLfs
    • +
    • Coop IT Easy SC

    Contributors

      -
    • Coop IT Easy SCRLfs:
        +
      • Coop IT Easy SC:
        • victor champonnois
      • From e443ce62254bade26ade7ed8bf16447c35eac484 Mon Sep 17 00:00:00 2001 From: Victor Champonnois Date: Tue, 25 Jul 2023 16:40:49 +0200 Subject: [PATCH 07/11] [IMP] hr_timesheet_sheet_current: black, isort, prettier --- hr_timesheet_sheet_current/__manifest__.py | 2 +- .../odoo/addons/hr_timesheet_sheet_current | 1 + setup/hr_timesheet_sheet_current/setup.py | 6 ++++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 120000 setup/hr_timesheet_sheet_current/odoo/addons/hr_timesheet_sheet_current create mode 100644 setup/hr_timesheet_sheet_current/setup.py diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index 8514639..0eed4c4 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -8,7 +8,7 @@ "version": "12.0.1.0.0", "license": "AGPL-3", "author": "Coop IT Easy SC", - "website": "https://coopiteasy.be", + "website": "https://github.com/coopiteasy/cie-timesheet", "depends": [ "hr_timesheet_sheet", ], diff --git a/setup/hr_timesheet_sheet_current/odoo/addons/hr_timesheet_sheet_current b/setup/hr_timesheet_sheet_current/odoo/addons/hr_timesheet_sheet_current new file mode 120000 index 0000000..696ddfb --- /dev/null +++ b/setup/hr_timesheet_sheet_current/odoo/addons/hr_timesheet_sheet_current @@ -0,0 +1 @@ +../../../../hr_timesheet_sheet_current \ No newline at end of file diff --git a/setup/hr_timesheet_sheet_current/setup.py b/setup/hr_timesheet_sheet_current/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/hr_timesheet_sheet_current/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) From 168cee9ca8031dc51f11b9c276caac82c9641f2a Mon Sep 17 00:00:00 2001 From: Victor Champonnois Date: Tue, 25 Jul 2023 16:48:11 +0200 Subject: [PATCH 08/11] [MIG] hr_timesheet_sheet_current: Migration to 13.0 --- hr_timesheet_sheet_current/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index 0eed4c4..11e395e 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -5,7 +5,7 @@ "name": "My Current Timesheet Sheet", "summary": """ Allow to access the current timesheet sheet directly from the menu""", - "version": "12.0.1.0.0", + "version": "13.0.1.0.0", "license": "AGPL-3", "author": "Coop IT Easy SC", "website": "https://github.com/coopiteasy/cie-timesheet", From b7e8e96c0c219b82956d10614ac6a59d378e4e36 Mon Sep 17 00:00:00 2001 From: Victor Champonnois Date: Tue, 25 Jul 2023 16:50:03 +0200 Subject: [PATCH 09/11] [MIG] hr_timesheet_sheet_current: Migration to 14.0 --- hr_timesheet_sheet_current/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index 11e395e..c96bc23 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -5,7 +5,7 @@ "name": "My Current Timesheet Sheet", "summary": """ Allow to access the current timesheet sheet directly from the menu""", - "version": "13.0.1.0.0", + "version": "14.0.1.0.0", "license": "AGPL-3", "author": "Coop IT Easy SC", "website": "https://github.com/coopiteasy/cie-timesheet", From c61c572afaec424f4711a0250cfbd7425afe5685 Mon Sep 17 00:00:00 2001 From: Victor Champonnois Date: Tue, 25 Jul 2023 16:51:13 +0200 Subject: [PATCH 10/11] [MIG] hr_timesheet_sheet_current: Migration to 15.0 --- hr_timesheet_sheet_current/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index c96bc23..7391b63 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -5,7 +5,7 @@ "name": "My Current Timesheet Sheet", "summary": """ Allow to access the current timesheet sheet directly from the menu""", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "license": "AGPL-3", "author": "Coop IT Easy SC", "website": "https://github.com/coopiteasy/cie-timesheet", From 4b12449a7ccdd5966bc18664dd06c83611112f07 Mon Sep 17 00:00:00 2001 From: Victor Champonnois Date: Tue, 25 Jul 2023 16:53:43 +0200 Subject: [PATCH 11/11] [MIG] hr_timesheet_sheet_current: Migration to 16.0 --- hr_timesheet_sheet_current/__manifest__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr_timesheet_sheet_current/__manifest__.py b/hr_timesheet_sheet_current/__manifest__.py index 7391b63..0c65ca8 100644 --- a/hr_timesheet_sheet_current/__manifest__.py +++ b/hr_timesheet_sheet_current/__manifest__.py @@ -5,7 +5,7 @@ "name": "My Current Timesheet Sheet", "summary": """ Allow to access the current timesheet sheet directly from the menu""", - "version": "15.0.1.0.0", + "version": "16.0.1.0.0", "license": "AGPL-3", "author": "Coop IT Easy SC", "website": "https://github.com/coopiteasy/cie-timesheet",