-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
42 changed files
with
11,143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
============= | ||
Project Scrum | ||
============= | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! 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%2Fproject--agile-lightgray.png?logo=github | ||
:target: https://github.com/OCA/project-agile/tree/14.0/project_scrum | ||
:alt: OCA/project-agile | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/project-agile-14-0/project-agile-14-0-project_scrum | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png | ||
:target: https://runbot.odoo-community.org/runbot/256/14.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
Organize your tasks with the Scrum and Sprint methodology. | ||
|
||
*Create Sprints to manage your task deadlines* | ||
*Manage multiple sprint durations with the possibility of creating different Scrum Teams* | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
This module implements all concepts defined by the scrum project management | ||
methodology for IT companies: | ||
|
||
- Project with sprints, product owner, scrum master | ||
- Sprints with reviews, daily meetings, feedbacks | ||
- Product backlog | ||
- Sprint backlog | ||
|
||
The scrum projects and tasks inherit from the real projects and tasks, | ||
so you can continue working on normal tasks that will also include tasks from | ||
scrum projects. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/project-agile/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 <https://github.com/OCA/project-agile/issues/new?body=module:%20project_scrum%0Aversion:%2014.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 | ||
======= | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Mohamed Habib Challouf <[email protected]> | ||
* Samir Guesmi <[email protected]> | ||
* George Daramouskas <[email protected]> | ||
* Alan Ramos <[email protected]> | ||
|
||
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/project-agile <https://github.com/OCA/project-agile/tree/14.0/project_scrum>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Copyright <2017> <Tenovar Ltd> | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright <2017> <Tenovar Ltd> | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Project Scrum", | ||
"summary": "Use Scrum Method to manage your project", | ||
"version": "14.0.1.0.0", | ||
"category": "Project Management", | ||
"author": "Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/project-agile", | ||
"depends": [ | ||
"base_setup", | ||
"project", | ||
"project_task_code", | ||
"project_stage_state", | ||
"mail", | ||
"hr_timesheet", | ||
], | ||
"data": [ | ||
"views/mail_template.xml", | ||
"views/project_scrum_us.xml", | ||
"views/project_scrum_meeting.xml", | ||
"views/project_task.xml", | ||
"views/project_scrum_sprint.xml", | ||
"views/project_scrum_test.xml", | ||
"views/project_project.xml", | ||
"views/menu.xml", | ||
"data/sequences_projects.xml", | ||
"data/project_scrum_test_task_view.xml", | ||
"security/ir.model.access.csv", | ||
"security/project_security.xml", | ||
"security/res_groups.xml", | ||
], | ||
"demo": ["demo/project_scrum_demo.xml"], | ||
"installable": True, | ||
"license": "AGPL-3", | ||
"application": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record model="ir.actions.server" id="ps_action_server_creat_test_task"> | ||
<field name="name">Create Tasks from Test Cases</field> | ||
<field name="model_id" ref="model_project_scrum_sprint" /> | ||
<field name="state">code</field> | ||
<field name="type">ir.actions.server</field> | ||
<field name="code">self.test_task(cr, uid, object, pool)</field> | ||
<field name="binding_model_id" ref="model_project_scrum_sprint" /> | ||
</record> | ||
|
||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
|
||
<record id="seq_project_task" model="ir.sequence"> | ||
<field name="name">Task Number</field> | ||
<field name="code">project.Task</field> | ||
<field name="prefix">Number/%(year)s/%(woy)s:</field> | ||
<field name="padding">5</field> | ||
<field name="company_id" eval="False" /> | ||
</record> | ||
|
||
<record id="seq_use_story" model="ir.sequence"> | ||
<field name="name">Story Number</field> | ||
<field name="code">user.story</field> | ||
<field name="prefix">Number/%(year)s/%(month)s:</field> | ||
<field name="padding">5</field> | ||
<field name="company_id" eval="False" /> | ||
</record> | ||
|
||
</odoo> |
Oops, something went wrong.