From f71d2b348c82c3d8dfc7581d2dc42f55eab108ce Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Tue, 11 Sep 2018 17:35:43 -0700 Subject: [PATCH] Initial commit of `mrp_production_add` for 11.0 --- mrp_production_add/README.rst | 26 ++++++++++ mrp_production_add/__init__.py | 1 + mrp_production_add/__manifest__.py | 17 +++++++ mrp_production_add/views/mrp_production.xml | 21 ++++++++ mrp_production_add/wizard/__init__.py | 1 + mrp_production_add/wizard/additem_wizard.py | 49 +++++++++++++++++++ .../wizard/additem_wizard_view.xml | 38 ++++++++++++++ 7 files changed, 153 insertions(+) create mode 100755 mrp_production_add/README.rst create mode 100755 mrp_production_add/__init__.py create mode 100755 mrp_production_add/__manifest__.py create mode 100755 mrp_production_add/views/mrp_production.xml create mode 100755 mrp_production_add/wizard/__init__.py create mode 100755 mrp_production_add/wizard/additem_wizard.py create mode 100755 mrp_production_add/wizard/additem_wizard_view.xml diff --git a/mrp_production_add/README.rst b/mrp_production_add/README.rst new file mode 100755 index 00000000..7032b4b6 --- /dev/null +++ b/mrp_production_add/README.rst @@ -0,0 +1,26 @@ +******************************* +Hibou - MRP Production Add Item +******************************* + +Allows a user to add a new item to an in-progress Manufacturing Order (including generating PO procurements). +For more information and add-ons, visit `Hibou.io `_. + +.. image:: https://cloud.githubusercontent.com/assets/744550/20810612/2f3eb514-b7bf-11e6-838f-6d6efb8f7484.png + :alt: 'MRP Production Add' + :width: 988 + :align: left +============= +Main Features +============= + +* Button above existing Consumed Materials to add new product. +* Uses existing procurement group and routes to procure additional items. + + +======= +Licence +======= + +Please see `LICENSE `_. + +Copyright Hibou Corp. 2016. \ No newline at end of file diff --git a/mrp_production_add/__init__.py b/mrp_production_add/__init__.py new file mode 100755 index 00000000..40272379 --- /dev/null +++ b/mrp_production_add/__init__.py @@ -0,0 +1 @@ +from . import wizard diff --git a/mrp_production_add/__manifest__.py b/mrp_production_add/__manifest__.py new file mode 100755 index 00000000..0cd07a33 --- /dev/null +++ b/mrp_production_add/__manifest__.py @@ -0,0 +1,17 @@ +{ + 'name': 'MRP Production Add Item', + 'author': 'Hibou Corp. ', + 'version': '11.0.1.0.0', + 'category': 'Manufacturing', + 'summary': 'Add Items to an existing Production', + 'description': """ +This module allows a production order to add additional items that are not on the product's BoM. + """, + 'website': 'https://hibou.io/', + 'depends': ['mrp'], + 'data': [ + 'wizard/additem_wizard_view.xml', + 'views/mrp_production.xml', + ], + 'installable': True, +} diff --git a/mrp_production_add/views/mrp_production.xml b/mrp_production_add/views/mrp_production.xml new file mode 100755 index 00000000..73c4aea1 --- /dev/null +++ b/mrp_production_add/views/mrp_production.xml @@ -0,0 +1,21 @@ + + + + + mrp.production.add_production_item.form.view + mrp.production + + + + +