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 + + + + +