diff --git a/mrp_production_quant_manual_assign/README.rst b/mrp_production_quant_manual_assign/README.rst new file mode 100644 index 000000000..3857e0085 --- /dev/null +++ b/mrp_production_quant_manual_assign/README.rst @@ -0,0 +1,89 @@ +==================================== +Production - Manual Quant Assignment +==================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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/mrp_production_quant_manual_assign + :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/manufacture-12-0-mrp_production_quant_manual_assign + :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 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows you to manually select quants for components of the +manufacturing order. + +The module depends on `stock_quant_manual_assign ` +module and does not contain any logic per se. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +To use this module, you need to: + +#. Open a manufacturing order. +#. Click on the tag icon next to Reserved Quantity of a move line, which opens + a wizard for manually selecting quants. +#. Select quants and update quantities to assign (reserve), then Confirm. + +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 +~~~~~~~ + +* Quartile Limited + +Contributors +~~~~~~~~~~~~ + +* `Quartile Limited `_: + + * Yoshi Tashiro + +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/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_quant_manual_assign/__init__.py b/mrp_production_quant_manual_assign/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/mrp_production_quant_manual_assign/__manifest__.py b/mrp_production_quant_manual_assign/__manifest__.py new file mode 100644 index 000000000..a86ca5be8 --- /dev/null +++ b/mrp_production_quant_manual_assign/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright 2021 Quartile Limited +# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html + +{ + "name": "Production - Manual Quant Assignment", + "version": "12.0.1.0.0", + "category": "Manufacturing", + "license": "AGPL-3", + "author": "Quartile Limited, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/manufacture", + "depends": ["mrp", "stock_quant_manual_assign"], + "data": ["views/mrp_production_views.xml"], + "installable": True, +} diff --git a/mrp_production_quant_manual_assign/i18n/mrp_production_quant_manual_assign.pot b/mrp_production_quant_manual_assign/i18n/mrp_production_quant_manual_assign.pot new file mode 100644 index 000000000..2e295c0f6 --- /dev/null +++ b/mrp_production_quant_manual_assign/i18n/mrp_production_quant_manual_assign.pot @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * mrp_production_quant_manual_assign +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-01-11 06:02+0000\n" +"PO-Revision-Date: 2021-01-11 06:02+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: mrp_production_quant_manual_assign +#: model:ir.model,name:mrp_production_quant_manual_assign.model_assign_manual_quants +msgid "Assign Manual Quants" +msgstr "" + +#. module: mrp_production_quant_manual_assign +#: model:ir.model,name:mrp_production_quant_manual_assign.model_assign_manual_quants_lines +msgid "Assign Manual Quants Lines" +msgstr "" + +#. module: mrp_production_quant_manual_assign +#: model_terms:ir.ui.view,arch_db:mrp_production_quant_manual_assign.mrp_production_form_view +msgid "Manual Quants" +msgstr "" + diff --git a/mrp_production_quant_manual_assign/readme/CONTRIBUTORS.rst b/mrp_production_quant_manual_assign/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..46da2c913 --- /dev/null +++ b/mrp_production_quant_manual_assign/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Quartile Limited `_: + + * Yoshi Tashiro diff --git a/mrp_production_quant_manual_assign/readme/DESCRIPTION.rst b/mrp_production_quant_manual_assign/readme/DESCRIPTION.rst new file mode 100644 index 000000000..8efe0a156 --- /dev/null +++ b/mrp_production_quant_manual_assign/readme/DESCRIPTION.rst @@ -0,0 +1,5 @@ +This module allows you to manually select quants for components of the +manufacturing order. + +The module depends on `stock_quant_manual_assign ` +module and does not contain any logic per se. diff --git a/mrp_production_quant_manual_assign/readme/USAGE.rst b/mrp_production_quant_manual_assign/readme/USAGE.rst new file mode 100644 index 000000000..12ad59d95 --- /dev/null +++ b/mrp_production_quant_manual_assign/readme/USAGE.rst @@ -0,0 +1,6 @@ +To use this module, you need to: + +#. Open a manufacturing order. +#. Click on the tag icon next to Reserved Quantity of a move line, which opens + a wizard for manually selecting quants. +#. Select quants and update quantities to assign (reserve), then Confirm. diff --git a/mrp_production_quant_manual_assign/static/description/icon.png b/mrp_production_quant_manual_assign/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/mrp_production_quant_manual_assign/static/description/icon.png differ diff --git a/mrp_production_quant_manual_assign/static/description/index.html b/mrp_production_quant_manual_assign/static/description/index.html new file mode 100644 index 000000000..b03cf813b --- /dev/null +++ b/mrp_production_quant_manual_assign/static/description/index.html @@ -0,0 +1,436 @@ + + + + + + +Production - Manual Quant Assignment + + + +
+

Production - Manual Quant Assignment

+ + +

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

+

This module allows you to manually select quants for components of the +manufacturing order.

+

The module depends on stock_quant_manual_assign <https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_quant_manual_assign> +module and does not contain any logic per se.

+

Table of contents

+ +
+

Usage

+

To use this module, you need to:

+
    +
  1. Open a manufacturing order.
  2. +
  3. Click on the tag icon next to Reserved Quantity of a move line, which opens +a wizard for manually selecting quants.
  4. +
  5. Select quants and update quantities to assign (reserve), then Confirm.
  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

+
    +
  • Quartile Limited
  • +
+
+
+

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.

+
+
+
+ + diff --git a/mrp_production_quant_manual_assign/views/mrp_production_views.xml b/mrp_production_quant_manual_assign/views/mrp_production_views.xml new file mode 100644 index 000000000..313d41d7b --- /dev/null +++ b/mrp_production_quant_manual_assign/views/mrp_production_views.xml @@ -0,0 +1,23 @@ + + + + mrp.production.form + mrp.production + + + +