diff --git a/mrp_progress_button/README.rst b/mrp_progress_button/README.rst index d6ea5751c..e75193977 100644 --- a/mrp_progress_button/README.rst +++ b/mrp_progress_button/README.rst @@ -1,16 +1,37 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +=================== +Mrp Progress Button +=================== -=================== -MRP Progress Button -=================== +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fmanufacture-lightgray.png?logo=github + :target: https://github.com/OCA/manufacture/tree/11.0/mrp_progress_button + :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| Simple module that add a button on MO to mark the Manufacturing Order to *In Progress* state. This module is usefull only when you do not use routing and operations. Indeed, the *In Progress* state is automatically put when the first operation is started. +**Table of contents** + +.. contents:: + :local: + Usage ===== @@ -19,42 +40,41 @@ To use this module, you need to: #. Go to *Manufacturing* and create a Manufacturing Order. #. Click on *Mark As Started* button -.. 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 `_. +* Akretion Contributors ------------- +~~~~~~~~~~~~ * Florian da Costa -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. +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/mrp_progress_button/__init__.py b/mrp_progress_button/__init__.py index 5a87084f5..0650744f6 100644 --- a/mrp_progress_button/__init__.py +++ b/mrp_progress_button/__init__.py @@ -1,6 +1 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved -# @author Florian DA COSTA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import models diff --git a/mrp_progress_button/__manifest__.py b/mrp_progress_button/__manifest__.py index 8088348a4..7b648e48d 100644 --- a/mrp_progress_button/__manifest__.py +++ b/mrp_progress_button/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved # @author Florian DA COSTA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). @@ -7,9 +6,9 @@ "name": "Mrp Progress Button", "summary": "Add a button on MO to make the MO state 'In Progress'", "author": "Akretion, Odoo Community Association (OCA)", - "website": "https://akretion.com/", + "website": "https://github.com/OCA/manufacture", "category": "Manufacturing", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "license": "AGPL-3", "application": False, "installable": True, diff --git a/mrp_progress_button/models/__init__.py b/mrp_progress_button/models/__init__.py index 8aff8a46c..a9e5f13e4 100644 --- a/mrp_progress_button/models/__init__.py +++ b/mrp_progress_button/models/__init__.py @@ -1,6 +1 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved -# @author Florian DA COSTA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import mrp_production diff --git a/mrp_progress_button/models/mrp_production.py b/mrp_progress_button/models/mrp_production.py index d77e771e1..320c464f6 100644 --- a/mrp_progress_button/models/mrp_production.py +++ b/mrp_progress_button/models/mrp_production.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved # @author Florian DA COSTA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). diff --git a/mrp_progress_button/readme/CONTRIBUTORS.rst b/mrp_progress_button/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..0bddb053a --- /dev/null +++ b/mrp_progress_button/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Florian da Costa diff --git a/mrp_progress_button/readme/DESCRIPTION.rst b/mrp_progress_button/readme/DESCRIPTION.rst new file mode 100644 index 000000000..df53d4ebe --- /dev/null +++ b/mrp_progress_button/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +Simple module that add a button on MO to mark the Manufacturing Order to +*In Progress* state. This module is usefull only when you do not use routing and +operations. Indeed, the *In Progress* state is automatically put when the +first operation is started. diff --git a/mrp_progress_button/readme/USAGE.rst b/mrp_progress_button/readme/USAGE.rst new file mode 100644 index 000000000..818f02b3c --- /dev/null +++ b/mrp_progress_button/readme/USAGE.rst @@ -0,0 +1,4 @@ +To use this module, you need to: + +#. Go to *Manufacturing* and create a Manufacturing Order. +#. Click on *Mark As Started* button diff --git a/mrp_progress_button/tests/__init__.py b/mrp_progress_button/tests/__init__.py index 51de2eb07..695c555d1 100644 --- a/mrp_progress_button/tests/__init__.py +++ b/mrp_progress_button/tests/__init__.py @@ -1,6 +1 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved -# @author Florian DA COSTA -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import test_progress_button diff --git a/mrp_progress_button/tests/test_progress_button.py b/mrp_progress_button/tests/test_progress_button.py index 497d0d898..22716bde9 100644 --- a/mrp_progress_button/tests/test_progress_button.py +++ b/mrp_progress_button/tests/test_progress_button.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright (C) 2017 Akretion (http://www.akretion.com). All Rights Reserved # @author Florian DA COSTA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).