Skip to content

Commit 0ebbc8a

Browse files
committed
Merge PR #1637 into 18.0
Signed-off-by ivantodorovich
2 parents 1382efd + b99be87 commit 0ebbc8a

File tree

8 files changed

+554
-0
lines changed

8 files changed

+554
-0
lines changed

sale_mrp_bom_menu/README.rst

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
==================================
2+
Sale MRP - Bills of Materials menu
3+
==================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:e9bbfee367c70743d87c0c65bb10f8d2a6259a3b4e33ac32e5d276a2e5c606e7
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
20+
:target: https://github.com/OCA/manufacture/tree/18.0/sale_mrp_bom_menu
21+
:alt: OCA/manufacture
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/manufacture-18-0/manufacture-18-0-sale_mrp_bom_menu
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module adds a menu in **Sales > Products > Bills of Materials** to
32+
easily navigate to the Bills of Materials from the Sales app.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Bug Tracker
40+
===========
41+
42+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_.
43+
In case of trouble, please check there if your issue has already been reported.
44+
If you spotted it first, help us to smash it by providing a detailed and welcomed
45+
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20sale_mrp_bom_menu%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46+
47+
Do not contact contributors directly about support or help with technical issues.
48+
49+
Credits
50+
=======
51+
52+
Authors
53+
-------
54+
55+
* Camptocamp
56+
57+
Contributors
58+
------------
59+
60+
- `Camptocamp <https://camptocamp.com/>`__:
61+
62+
- Iván Todorovich <ivan.todorovich@camptocamp.com>
63+
- Jérémie Jordan <jeremie.jordan@camptocamp.com>
64+
65+
Maintainers
66+
-----------
67+
68+
This module is maintained by the OCA.
69+
70+
.. image:: https://odoo-community.org/logo.png
71+
:alt: Odoo Community Association
72+
:target: https://odoo-community.org
73+
74+
OCA, or the Odoo Community Association, is a nonprofit organization whose
75+
mission is to support the collaborative development of Odoo features and
76+
promote its widespread use.
77+
78+
.. |maintainer-ivantodorovich| image:: https://github.com/ivantodorovich.png?size=40px
79+
:target: https://github.com/ivantodorovich
80+
:alt: ivantodorovich
81+
82+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
83+
84+
|maintainer-ivantodorovich|
85+
86+
This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/18.0/sale_mrp_bom_menu>`_ project on GitHub.
87+
88+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

sale_mrp_bom_menu/__init__.py

Whitespace-only changes.

sale_mrp_bom_menu/__manifest__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Copyright 2025 Camptocamp SA (https://www.camptocamp.com).
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "Sale MRP - Bills of Materials menu",
6+
"summary": "Add a Sales > Products > Bills of Materials menu",
7+
"version": "18.0.1.0.0",
8+
"author": "Camptocamp, Odoo Community Association (OCA)",
9+
"maintainers": ["ivantodorovich"],
10+
"website": "https://github.com/OCA/manufacture",
11+
"license": "AGPL-3",
12+
"category": "Manufacture",
13+
"depends": ["sale", "mrp"],
14+
"data": ["views/menu.xml"],
15+
}

sale_mrp_bom_menu/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- [Camptocamp](https://camptocamp.com/):
2+
3+
- Iván Todorovich \<<ivan.todorovich@camptocamp.com>\>
4+
- Jérémie Jordan \<<jeremie.jordan@camptocamp.com>\>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module adds a menu in **Sales > Products > Bills of Materials** to easily navigate to the Bills of Materials from the Sales app.

0 commit comments

Comments
 (0)