diff --git a/mrp_production_note/README.rst b/mrp_production_note/README.rst index 586378ba4..328ecdbe3 100644 --- a/mrp_production_note/README.rst +++ b/mrp_production_note/README.rst @@ -1,51 +1,87 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License: AGPL-3 - ========================== Notes in production orders ========================== -This module creates in production orders a new field to add notes in rich text format +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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/12.0-mig-mrp_production_note/mrp_production_note + :alt: OCA/manufacture +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/manufacture-12-0-mig-mrp_production_note/manufacture-12-0-mig-mrp_production_note-mrp_production_note + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/129/12.0-mig-mrp_production_note + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module creates in production orders a new field to add notes in rich text format. + +**Table of contents** + +.. contents:: + :local: Usage ===== -* Go to Manufacturing > Manufacturing > Manufacturing Orders -* Edit an existing MO and fill in the Notes field on tab Notes +To use this module, you need to: -.. 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/9.0 +#. Go to *Manufacturing > Operations > Manufacturing Orders*. +#. Edit an existing MO. +#. Fill in the field on tab "Notes". 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 smashing it by providing a detailed and welcomed feedback -`here `_. +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 ======= +Authors +~~~~~~~ + +* OdooMRP team +* AvanzOSC +* Serv. Tecnol. Avanzados - Pedro M. Baeza + Contributors ------------- +~~~~~~~~~~~~ * Oihane Crucelaegui * Pedro M. Baeza * Ana Juaristi +* Laurent Bélorgey -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 http://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_production_note/__init__.py b/mrp_production_note/__init__.py index 6ea76f9a8..d3ee04cbd 100644 --- a/mrp_production_note/__init__.py +++ b/mrp_production_note/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from . import models diff --git a/mrp_production_note/__manifest__.py b/mrp_production_note/__manifest__.py index fafd21f9a..f65f1d399 100644 --- a/mrp_production_note/__manifest__.py +++ b/mrp_production_note/__manifest__.py @@ -1,27 +1,21 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html { "name": "Notes in production orders", - "version": "10.0.1.0.0", - "category": "Tools", + "version": "12.0.1.0.0", + "category": "Manufacturing", "license": "AGPL-3", "author": "OdooMRP team, " "AvanzOSC, " "Serv. Tecnol. Avanzados - Pedro M. Baeza, " "Odoo Community Association (OCA)", - "website": "http://www.odoomrp.com", - "contributors": [ - "Oihane Crucelaegui ", - "Pedro M. Baeza ", - "Ana Juaristi ", - ], + "website": "https://github.com/OCA/manufacture", "depends": [ "mrp", ], "data": [ "views/mrp_production_view.xml", ], - 'installable': True, + "installable": True, } diff --git a/mrp_production_note/models/__init__.py b/mrp_production_note/models/__init__.py index 82baeaa4a..81dc60025 100644 --- a/mrp_production_note/models/__init__.py +++ b/mrp_production_note/models/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from . import mrp_production diff --git a/mrp_production_note/models/mrp_production.py b/mrp_production_note/models/mrp_production.py index 048b41645..4608711ff 100644 --- a/mrp_production_note/models/mrp_production.py +++ b/mrp_production_note/models/mrp_production.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- # © 2015 Oihane Crucelaegui - AvanzOSC -# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +# License AGPL-3 - See https://www.gnu.org/licenses/agpl-3.0.html from odoo import fields, models diff --git a/mrp_production_note/readme/CONTRIBUTORS.rst b/mrp_production_note/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..a6b8c047f --- /dev/null +++ b/mrp_production_note/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* Oihane Crucelaegui +* Pedro M. Baeza +* Ana Juaristi +* Laurent Bélorgey diff --git a/mrp_production_note/readme/DESCRIPTION.rst b/mrp_production_note/readme/DESCRIPTION.rst new file mode 100644 index 000000000..188c58eef --- /dev/null +++ b/mrp_production_note/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module creates in production orders a new field to add notes in rich text format. diff --git a/mrp_production_note/readme/USAGE.rst b/mrp_production_note/readme/USAGE.rst new file mode 100644 index 000000000..5d52f968c --- /dev/null +++ b/mrp_production_note/readme/USAGE.rst @@ -0,0 +1,5 @@ +To use this module, you need to: + +#. Go to *Manufacturing > Operations > Manufacturing Orders*. +#. Edit an existing MO. +#. Fill in the field on tab "Notes". diff --git a/mrp_production_note/static/description/index.html b/mrp_production_note/static/description/index.html new file mode 100644 index 000000000..a8f78c0aa --- /dev/null +++ b/mrp_production_note/static/description/index.html @@ -0,0 +1,434 @@ + + + + + + +Notes in production orders + + + +
+

Notes in production orders

+ + +

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runbot

+

This module creates in production orders a new field to add notes in rich text format.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Go to Manufacturing > Operations > Manufacturing Orders.
  2. +
  3. Edit an existing MO.
  4. +
  5. Fill in the field on tab “Notes”.
  6. +
+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • OdooMRP team
  • +
  • AvanzOSC
  • +
  • Serv. Tecnol. Avanzados - Pedro M. Baeza
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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/manufacture project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ +