Skip to content
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
74 changes: 74 additions & 0 deletions apam_custom_work_entry/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
======================
APAM Custom Work Entry
======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:07ffb19672144263b27ae0a7dc4a7d9e9f6c45d5fa2d559c214cf4dbf622832c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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-coopiteasy%2Fcie--custom-lightgray.png?logo=github
:target: https://github.com/coopiteasy/cie-custom/tree/18.0/apam_custom_work_entry
:alt: coopiteasy/cie-custom

|badge1| |badge2| |badge3|

Work Entries customization for APAM.

This modules adds:

- A comment field on work entries (editable on the form)

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/coopiteasy/cie-custom/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 <https://github.com/coopiteasy/cie-custom/issues/new?body=module:%20apam_custom_work_entry%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Coop IT Easy SC

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

- `Coop IT Easy SC <https://coopiteasy.be>`__:

- hugues de keyzer

Maintainers
-----------

.. |maintainer-huguesdk| image:: https://github.com/huguesdk.png?size=40px
:target: https://github.com/huguesdk
:alt: huguesdk

Current maintainer:

|maintainer-huguesdk|

This module is part of the `coopiteasy/cie-custom <https://github.com/coopiteasy/cie-custom/tree/18.0/apam_custom_work_entry>`_ project on GitHub.

You are welcome to contribute.
5 changes: 5 additions & 0 deletions apam_custom_work_entry/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2026 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

from . import models
20 changes: 20 additions & 0 deletions apam_custom_work_entry/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2026 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

{
"name": "APAM Custom Work Entry",
"summary": "Work Entries customization for APAM",
"version": "18.0.1.0.0",
"category": "Human Resources/Employees",
"website": "https://github.com/coopiteasy/cie-custom",
"author": "Coop IT Easy SC",
"maintainers": ["huguesdk"],
"license": "AGPL-3",
"depends": [
"hr_work_entry",
],
"data": [
"views/hr_work_entry_view.xml",
],
}
24 changes: 24 additions & 0 deletions apam_custom_work_entry/i18n/apam_custom_work_entry.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * apam_custom_work_entry
#
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: apam_custom_work_entry
#: model:ir.model.fields,field_description:apam_custom_work_entry.field_hr_work_entry__comment
msgid "Comment"
msgstr ""

#. module: apam_custom_work_entry
#: model:ir.model,name:apam_custom_work_entry.model_hr_work_entry
msgid "HR Work Entry"
msgstr ""
25 changes: 25 additions & 0 deletions apam_custom_work_entry/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * apam_custom_work_entry
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: fr\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"

#. module: apam_custom_work_entry
#: model:ir.model.fields,field_description:apam_custom_work_entry.field_hr_work_entry__comment
msgid "Comment"
msgstr "Commentaire"

#. module: apam_custom_work_entry
#: model:ir.model,name:apam_custom_work_entry.model_hr_work_entry
msgid "HR Work Entry"
msgstr ""
5 changes: 5 additions & 0 deletions apam_custom_work_entry/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2026 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

from . import hr_work_entry
11 changes: 11 additions & 0 deletions apam_custom_work_entry/models/hr_work_entry.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-FileCopyrightText: 2026 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

from odoo import fields, models


class HrWorkEntry(models.Model):
_inherit = "hr.work.entry"

comment = fields.Text()
3 changes: 3 additions & 0 deletions apam_custom_work_entry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
2 changes: 2 additions & 0 deletions apam_custom_work_entry/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* [Coop IT Easy SC](https://coopiteasy.be):
* hugues de keyzer
5 changes: 5 additions & 0 deletions apam_custom_work_entry/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Work Entries customization for APAM.

This modules adds:

* A comment field on work entries (editable on the form)
Loading
Loading