Skip to content

Commit 72b57ed

Browse files
AdriaGForgeFlowastirpe
authored andcommitted
[MIG] Migrate module project_task_dependency to v12.0
1 parent 019266f commit 72b57ed

File tree

11 files changed

+472
-38
lines changed

11 files changed

+472
-38
lines changed

project_task_dependency/README.rst

Lines changed: 46 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
1-
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
2-
:target: https://www.gnu.org/licenses/agpl
3-
:alt: License: AGPL-3
4-
51
=========================
62
Project Task Dependencies
73
=========================
84

5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproject-lightgray.png?logo=github
17+
:target: https://github.com/OCA/project/tree/12.0/project_task_dependency
18+
:alt: OCA/project
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/project-12-0/project-12-0-project_task_dependency
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/140/12.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
928
This module enables the user to define dependencies (other tasks) of a task.
1029

30+
**Table of contents**
31+
32+
.. contents::
33+
:local:
34+
1135
Usage
1236
=====
1337

@@ -16,49 +40,44 @@ To use this module, you need to:
1640
#. Go to a task;
1741
#. click on 'Dependencies'.
1842

19-
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
20-
:alt: Try me on Runbot
21-
:target: https://runbot.odoo-community.org/runbot/140/11.0
22-
23-
Known issues / Roadmap
24-
======================
25-
26-
* Constraint on stage progression based on the task dependencies
27-
2843
Bug Tracker
2944
===========
3045

31-
Bugs are tracked on `GitHub Issues
32-
<https://github.com/oca/project/issues>`_. In case of trouble, please
33-
check there if your issue has already been reported. If you spotted it first,
34-
help us smashing it by providing a detailed and welcomed feedback.
46+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/project/issues>`_.
47+
In case of trouble, please check there if your issue has already been reported.
48+
If you spotted it first, help us smashing it by providing a detailed and welcomed
49+
`feedback <https://github.com/OCA/project/issues/new?body=module:%20project_task_dependency%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
50+
51+
Do not contact contributors directly about support or help with technical issues.
3552

3653
Credits
3754
=======
3855

39-
Images
40-
------
56+
Authors
57+
~~~~~~~
4158

42-
* Odoo Community Association: `Icon <https://odoo-community.org/logo.png>`_.
59+
* Onestein
4360

4461
Contributors
45-
------------
62+
~~~~~~~~~~~~
4663

4764
* Dennis Sluijk <[email protected]>
65+
* Adria Gil Sorribes <[email protected]>
66+
* Pedro M. Baeza <[email protected]>
4867

49-
Do not contact contributors directly about support or help with technical issues.
68+
Maintainers
69+
~~~~~~~~~~~
5070

51-
Maintainer
52-
----------
71+
This module is maintained by the OCA.
5372

5473
.. image:: https://odoo-community.org/logo.png
5574
:alt: Odoo Community Association
5675
:target: https://odoo-community.org
5776

58-
This module is maintained by the OCA.
59-
6077
OCA, or the Odoo Community Association, is a nonprofit organization whose
6178
mission is to support the collaborative development of Odoo features and
6279
promote its widespread use.
6380

64-
To contribute to this module, please visit https://odoo-community.org.
81+
This module is part of the `OCA/project <https://github.com/OCA/project/tree/12.0/project_task_dependency>`_ project on GitHub.
82+
83+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

project_task_dependency/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# © 2016 Onestein (<http://www.onestein.eu>)
21
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
32

43
from . import models

project_task_dependency/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{
55
'name': 'Project Task Dependencies',
6-
'version': '11.0.1.0.2',
6+
'version': '12.0.1.0.0',
77
'category': 'Project',
88
'website': 'https://github.com/OCA/project',
99
'summary': 'Enables to define dependencies (other tasks) of a task',
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
2+
13
from . import project_project
24
from . import project_task
35
from . import project_task_copy_map

project_task_dependency/models/project_task_copy_map.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
class ProjectTaskCopyMap(models.TransientModel):
88
_name = 'project.task.copy.map'
9+
_description = 'Project Task Copy Map'
910

1011
old_task_id = fields.Many2one(
1112
comodel_name='project.task',
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* Dennis Sluijk <[email protected]>
2+
* Adria Gil Sorribes <[email protected]>
3+
* Pedro M. Baeza <[email protected]>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module enables the user to define dependencies (other tasks) of a task.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
To use this module, you need to:
2+
3+
#. Go to a task;
4+
#. click on 'Dependencies'.

0 commit comments

Comments
 (0)