Skip to content

Commit

Permalink
[LINT] and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
paradoxxxzero committed Oct 7, 2024
1 parent 3b3ccca commit 48982c2
Show file tree
Hide file tree
Showing 21 changed files with 1,989 additions and 16 deletions.
67 changes: 67 additions & 0 deletions project_workload_additions/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
==========================
Project Workload Additions
==========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:f160d5c351f92880cfcdf26467249bc9d536b0509cb5f7b8a93c574eeac84591
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |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-akretion%2Fak--odoo--incubator-lightgray.png?logo=github
:target: https://github.com/akretion/ak-odoo-incubator/tree/16.0/project_workload_additions
:alt: akretion/ak-odoo-incubator

|badge1| |badge2| |badge3|

This module adds additional workloads in tasks.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/akretion/ak-odoo-incubator/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/akretion/ak-odoo-incubator/issues/new?body=module:%20project_workload_additions%0Aversion:%2016.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
~~~~~~~

* Akretion

Contributors
~~~~~~~~~~~~

* `Akretion <https://www.akretion.com>`_:
* BEAU Sébastien <sebastien.beau@akretion.com>
* Florian Mounier <florian.mounier@akretion.com>

Maintainers
~~~~~~~~~~~

This module is part of the `akretion/ak-odoo-incubator <https://github.com/akretion/ak-odoo-incubator/tree/16.0/project_workload_additions>`_ project on GitHub.

You are welcome to contribute.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ def name_get(self):
result.append(
(
record.id,
_(
"%s additional workload (%d%%)"
% (record.task_id.name, record.percentage)
),
_("%(task)s additional workload (%(percentage)d%%)")
% {
"task": record.task_id.name,
"percentage": record.percentage,
},
)
)
return result
3 changes: 3 additions & 0 deletions project_workload_additions/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `Akretion <https://www.akretion.com>`_:
* BEAU Sébastien <sebastien.beau@akretion.com>
* Florian Mounier <florian.mounier@akretion.com>
1 change: 1 addition & 0 deletions project_workload_additions/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module adds additional workloads in tasks.
Loading

0 comments on commit 48982c2

Please sign in to comment.