details: https://code.tryton.org/tryton/commit/22c453b72149 branch: default user: Alex Alias Montserrat <[email protected]> date: Sun Mar 29 13:22:15 2026 +0200 description: Update documentation of timesheet_cost diffstat:
modules/timesheet_cost/CHANGELOG | 19 +++++++++++++++++++ modules/timesheet_cost/doc/design.rst | 32 ++++++++++++++++++++++++++++++++ modules/timesheet_cost/doc/index.rst | 10 +++++++++- modules/timesheet_cost/doc/releases.rst | 7 +++++++ 4 files changed, 67 insertions(+), 1 deletions(-) diffs (148 lines): diff -r 6312b8bd8a59 -r 22c453b72149 modules/timesheet_cost/CHANGELOG --- a/modules/timesheet_cost/CHANGELOG Thu Nov 13 12:43:57 2025 +0100 +++ b/modules/timesheet_cost/CHANGELOG Sun Mar 29 13:22:15 2026 +0200 @@ -38,61 +38,80 @@ * Bug fixes (see mercurial logs for details) Version 6.4.0 - 2022-05-02 +-------------------------- * Bug fixes (see mercurial logs for details) * Add support for Python 3.10 * Remove support for Python 3.6 Version 6.2.0 - 2021-11-01 +-------------------------- * Bug fixes (see mercurial logs for details) Version 6.0.0 - 2021-05-03 +-------------------------- * Bug fixes (see mercurial logs for details) Version 5.8.0 - 2020-11-02 +-------------------------- * Bug fixes (see mercurial logs for details) * Remove support for Python 3.5 Version 5.6.0 - 2020-05-04 +-------------------------- * Bug fixes (see mercurial logs for details) Version 5.4.0 - 2019-11-04 +-------------------------- * Bug fixes (see mercurial logs for details) Version 5.2.0 - 2019-05-06 +-------------------------- * Bug fixes (see mercurial logs for details) Version 5.0.0 - 2018-10-01 +-------------------------- * Bug fixes (see mercurial logs for details) * Remove support for Python 2.7 Version 4.8.0 - 2018-04-23 +-------------------------- * Bug fixes (see mercurial logs for details) Version 4.6.0 - 2017-10-30 +-------------------------- * Bug fixes (see mercurial logs for details) Version 4.4.0 - 2017-05-01 +-------------------------- * Bug fixes (see mercurial logs for details) Version 4.2.0 - 2016-11-28 +-------------------------- * Bug fixes (see mercurial logs for details) Version 4.0.0 - 2016-05-02 +-------------------------- * Bug fixes (see mercurial logs for details) * Add Python3 support Version 3.8.0 - 2015-11-02 +-------------------------- * Bug fixes (see mercurial logs for details) * Store cost price on timesheet line Version 3.6.0 - 2015-04-20 +-------------------------- * Bug fixes (see mercurial logs for details) * Add support for PyPy + Version 3.4.0 - 2014-10-20 +-------------------------- * Bug fixes (see mercurial logs for details) Version 3.2.0 - 2014-04-21 +-------------------------- * Bug fixes (see mercurial logs for details) Version 3.0.0 - 2013-10-21 +-------------------------- * Initial release diff -r 6312b8bd8a59 -r 22c453b72149 modules/timesheet_cost/doc/design.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/timesheet_cost/doc/design.rst Sun Mar 29 13:22:15 2026 +0200 @@ -0,0 +1,32 @@ +****** +Design +****** + +The *Timesheet Cost Module* introduces or extends the following concepts: + +.. _model-timesheet.line: + +Timesheet Line +============== + +When the *Timesheet Line Cost Module* is activated, the timesheet lines gains +new properties that automatically store the cost price of the `employee +<company:model-company.employee>` for the given date. + +.. seealso:: + + The `Timesheet Lines <timesheet:model-timesheet.line>` concept is introduced + by the :doc:`Timesheet Module <timesheet:index>`. + +.. _model-company.employee: + +Employee +======== + +When the *Timesheet Line Cost Module* is activated, the employee gains the +ability to record changes in cost price over time. + +.. seealso:: + + The `Employee <company:model-company.employee>` concept is introduced by the + :doc:`Company Module <company:index>`. diff -r 6312b8bd8a59 -r 22c453b72149 modules/timesheet_cost/doc/index.rst --- a/modules/timesheet_cost/doc/index.rst Thu Nov 13 12:43:57 2025 +0100 +++ b/modules/timesheet_cost/doc/index.rst Sun Mar 29 13:22:15 2026 +0200 @@ -1,4 +1,12 @@ +##################### Timesheet Cost Module ##################### -The timesheet cost module adds cost price per employee. +The *Timesheet Cost Module* stores the cost price of each employee on each +timesheet line. + +.. toctree:: + :maxdepth: 2 + + design + releases diff -r 6312b8bd8a59 -r 22c453b72149 modules/timesheet_cost/doc/releases.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/timesheet_cost/doc/releases.rst Sun Mar 29 13:22:15 2026 +0200 @@ -0,0 +1,7 @@ +.. _releases-index: + +============= +Release notes +============= + +.. include:: ../CHANGELOG
