diff --git a/mrp_bom_notes_report/README.rst b/mrp_bom_notes_report/README.rst new file mode 100644 index 00000000..2f81d739 --- /dev/null +++ b/mrp_bom_notes_report/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://opensource.org/licenses/LGPL-3.0 + :alt: License: LGPL-3 + +==================== +MRP BOM Notes Report +==================== + +Overview +======== + +The **MRP BOM Notes Report** module extends the **MRP BOM Report** functionality by adding the **Notes** field from the Bill of Materials (BOM) lines to the BOM report. This enables users to include additional notes or comments related to the BOM directly in the report. + +Features +======== + +- **Notes in BOM Report**: + + - The module adds the BOM line's **Notes** field to the BOM report, displaying any relevant comments or additional information in the final report. + +- **Customization**: + + - The report is customized by inheriting and modifying the default **MRP BOM Report** template, ensuring the display of notes in an organized manner. + +- **Improved Reporting**: + + - With this enhancement, users can generate BOM reports with added context, making it easier to understand specific instructions or details related to each BOM line. + + +Bug Tracker +=========== + +If you encounter any issues, please report them on the GitHub repository at `GitHub Issues `_. + +Credits +======= + +Contributors +------------ + +* Ana Juaristi +* Unai Beristain + +For specific questions or support, please contact the contributors. + +License +======= + +This project is licensed under the LGPL-3 License. For more details, refer to the LICENSE file or visit . diff --git a/mrp_bom_notes_report/__init__.py b/mrp_bom_notes_report/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/mrp_bom_notes_report/__manifest__.py b/mrp_bom_notes_report/__manifest__.py new file mode 100644 index 00000000..6e2a96db --- /dev/null +++ b/mrp_bom_notes_report/__manifest__.py @@ -0,0 +1,17 @@ +{ + "name": "MRP BOM Notes Report", + "version": "16.0.1.0.0", + "category": "Manufacturing", + "author": "Avanzosc", + "license": "LGPL-3", + "depends": [ + "mrp_bom_note", + "mrp_bom_report", + ], + "data": [ + "views/mrp_bom_report_templates.xml", + ], + "installable": True, + "application": False, + "website": "https://github.com/avanzosc/mrp-addons", +} diff --git a/mrp_bom_notes_report/views/mrp_bom_report_templates.xml b/mrp_bom_notes_report/views/mrp_bom_report_templates.xml new file mode 100644 index 00000000..5f919cc3 --- /dev/null +++ b/mrp_bom_notes_report/views/mrp_bom_report_templates.xml @@ -0,0 +1,10 @@ + + + diff --git a/setup/mrp_bom_notes_report/odoo/addons/mrp_bom_notes_report b/setup/mrp_bom_notes_report/odoo/addons/mrp_bom_notes_report new file mode 120000 index 00000000..321fe8f4 --- /dev/null +++ b/setup/mrp_bom_notes_report/odoo/addons/mrp_bom_notes_report @@ -0,0 +1 @@ +../../../../mrp_bom_notes_report \ No newline at end of file diff --git a/setup/mrp_bom_notes_report/setup.py b/setup/mrp_bom_notes_report/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/mrp_bom_notes_report/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)