From b9dcff1d9b51c963efa782b02d3bdc47fbd91a8c Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Tue, 11 Sep 2018 16:27:30 -0700 Subject: [PATCH] Initial commit of `mrp_production_add` for 10.0 --- mrp_production_add/README.rst | 25 +++++++++++ mrp_production_add/__init__.py | 2 + mrp_production_add/__manifest__.py | 18 ++++++++ mrp_production_add/views/mrp_production.xml | 21 ++++++++++ mrp_production_add/wizard/__init__.py | 2 + mrp_production_add/wizard/additem_wizard.py | 42 +++++++++++++++++++ .../wizard/additem_wizard_view.xml | 39 +++++++++++++++++ 7 files changed, 149 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..f67889d5 --- /dev/null +++ b/mrp_production_add/README.rst @@ -0,0 +1,25 @@ +******************************* +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..83e278c6 --- /dev/null +++ b/mrp_production_add/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import wizard \ No newline at end of file diff --git a/mrp_production_add/__manifest__.py b/mrp_production_add/__manifest__.py new file mode 100755 index 00000000..49c52aba --- /dev/null +++ b/mrp_production_add/__manifest__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'MRP Production Add Item', + 'author': 'Hibou Corp. ', + 'version': '1.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 + + + + +