diff --git a/quality_control_team/README.rst b/quality_control_team/README.rst index 06e400611..75a32bbb5 100644 --- a/quality_control_team/README.rst +++ b/quality_control_team/README.rst @@ -1,11 +1,27 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.png - :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - ==================== Quality Control Team ==================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png + :target: https://odoo-community.org/page/development-status + :alt: Mature +.. |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%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/11.0/quality_control_team + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/11.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| + This module extends the functionality of Quality Control app to support the use of Quality control teams and to allow you to manage different team flows. @@ -13,6 +29,11 @@ This module by itself does not provide any functionality to QC teams. It provides the teams basic configuration and a dashboard to be used by other modules. +**Table of contents** + +.. contents:: + :local: + Configuration ============= @@ -20,42 +41,49 @@ To configure this module, you need to: #. Go to *Quality Control > Configuration > Quality Control Teams*. -.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas - :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/129/10.0 - Bug Tracker =========== -Bugs are tracked on `GitHub Issues -`_. In case of trouble, please -check there if your issue has already been reported. If you spotted it first, -help us smash it by providing detailed and welcomed feedback. +Bugs are tracked on `GitHub 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. + +Do not contact contributors directly about support or help with technical issues. Credits ======= -Images ------- +Authors +~~~~~~~ -* Odoo Community Association: `Icon `_. +* Eficent Contributors ------------- +~~~~~~~~~~~~ * Lois Rilo -Maintainer ----------- +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. .. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association :target: https://odoo-community.org -This module is maintained by the OCA. - 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. -To contribute to this module, please visit https://odoo-community.org. +.. |maintainer-lreficent| image:: https://github.com/lreficent.png?size=40px + :target: https://github.com/lreficent + :alt: lreficent + +Current `maintainer `_: + +|maintainer-lreficent| + +This module is part of the `OCA/manufacture `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/quality_control_team/__init__.py b/quality_control_team/__init__.py index 7201c0805..0650744f6 100644 --- a/quality_control_team/__init__.py +++ b/quality_control_team/__init__.py @@ -1,5 +1 @@ -# -*- coding: utf-8 -*- -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import models diff --git a/quality_control_team/__manifest__.py b/quality_control_team/__manifest__.py index d97fa62c9..a0a23972e 100644 --- a/quality_control_team/__manifest__.py +++ b/quality_control_team/__manifest__.py @@ -1,14 +1,15 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Quality Control Team", "summary": "Adds quality control teams to handle different quality " "control workflows", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", + "development_status": "Mature", "category": "Quality Control", "website": "https://odoo-community.org/", "author": "Eficent, Odoo Community Association (OCA)", + "maintainers": ["lreficent"], "license": "AGPL-3", "application": False, "installable": True, diff --git a/quality_control_team/models/__init__.py b/quality_control_team/models/__init__.py index 2009458d5..b38c7a594 100644 --- a/quality_control_team/models/__init__.py +++ b/quality_control_team/models/__init__.py @@ -1,7 +1,3 @@ -# -*- coding: utf-8 -*- -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import qc_team from . import res_partner from . import res_user diff --git a/quality_control_team/models/qc_team.py b/quality_control_team/models/qc_team.py index 1c23af937..18eb16303 100644 --- a/quality_control_team/models/qc_team.py +++ b/quality_control_team/models/qc_team.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). @@ -7,7 +6,7 @@ from odoo import api, fields, models class QualityControlTeam(models.Model): _name = "qc.team" - _inherit = ['mail.thread', 'ir.needaction_mixin'] + _inherit = ['mail.thread'] _description = "Quality Control Team" _order = "name" diff --git a/quality_control_team/models/res_partner.py b/quality_control_team/models/res_partner.py index 4d38948d9..2a2a7969f 100644 --- a/quality_control_team/models/res_partner.py +++ b/quality_control_team/models/res_partner.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/quality_control_team/models/res_user.py b/quality_control_team/models/res_user.py index 0aa5db71f..1066a0e35 100644 --- a/quality_control_team/models/res_user.py +++ b/quality_control_team/models/res_user.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/quality_control_team/readme/CONFIGURE.rst b/quality_control_team/readme/CONFIGURE.rst new file mode 100644 index 000000000..34d00755a --- /dev/null +++ b/quality_control_team/readme/CONFIGURE.rst @@ -0,0 +1,3 @@ +To configure this module, you need to: + +#. Go to *Quality Control > Configuration > Quality Control Teams*. diff --git a/quality_control_team/readme/CONTRIBUTORS.rst b/quality_control_team/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..4b574636c --- /dev/null +++ b/quality_control_team/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Lois Rilo diff --git a/quality_control_team/readme/DESCRIPTION.rst b/quality_control_team/readme/DESCRIPTION.rst new file mode 100644 index 000000000..25f72d893 --- /dev/null +++ b/quality_control_team/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +This module extends the functionality of Quality Control app to support the +use of Quality control teams and to allow you to manage different team flows. + +This module by itself does not provide any functionality to QC teams. It +provides the teams basic configuration and a dashboard to be used by other +modules. diff --git a/quality_control_team/tests/__init__.py b/quality_control_team/tests/__init__.py index dd9c09d06..846d5571c 100644 --- a/quality_control_team/tests/__init__.py +++ b/quality_control_team/tests/__init__.py @@ -1,4 +1 @@ -# -*- coding: utf-8 -*- -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import test_quality_control_team diff --git a/quality_control_team/tests/test_quality_control_team.py b/quality_control_team/tests/test_quality_control_team.py index 7a2af3ee4..77de167c4 100644 --- a/quality_control_team/tests/test_quality_control_team.py +++ b/quality_control_team/tests/test_quality_control_team.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Eficent Business and IT Consulting Services S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/quality_control_team/views/qc_team_view.xml b/quality_control_team/views/qc_team_view.xml index e347a47af..c3ad013d5 100644 --- a/quality_control_team/views/qc_team_view.xml +++ b/quality_control_team/views/qc_team_view.xml @@ -9,6 +9,11 @@
+
+ +