diff --git a/bom_multiple_product/README.rst b/bom_multiple_product/README.rst new file mode 100755 index 000000000..6f90d506c --- /dev/null +++ b/bom_multiple_product/README.rst @@ -0,0 +1,42 @@ +BOM Multiple Product Selection +=============================== +* BOM Multiple Product Selection module for Odoo 16. + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.odoo.com/documentation/user/15.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions '__ + +Credits +------- +* 'Cybrosys Techno Solutions '__ +* Developer: + V 16: sruthimk@cybrosys + + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/bom_multiple_product/__init__.py b/bom_multiple_product/__init__.py new file mode 100755 index 000000000..6537789e7 --- /dev/null +++ b/bom_multiple_product/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################# + +from . import models, wizard \ No newline at end of file diff --git a/bom_multiple_product/__manifest__.py b/bom_multiple_product/__manifest__.py new file mode 100755 index 000000000..6c1561174 --- /dev/null +++ b/bom_multiple_product/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################# + +{ + 'name': 'BOM Multiple Product Selection', + 'version': '16.0.1.0.0', + 'summary': 'BOM Multiple Product Selection', + 'description': """An option to choose multiple products when creating the BOM.""", + 'category': 'Manufacturing', + 'author': 'Cybrosys Techno solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['stock', 'mrp'], + 'data': [ + 'security/ir.model.access.csv', + 'views/mrp_bom_views.xml', + 'views/product_product_views.xml', + 'wizard/bom_products_views.xml' + ], + 'images': ['static/description/banner.png'], + 'installable': True, + 'application': False, + 'auto_install': False, + 'license': 'AGPL-3', + +} diff --git a/bom_multiple_product/doc/RELEASE_NOTES.md b/bom_multiple_product/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..eb5afe5c2 --- /dev/null +++ b/bom_multiple_product/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 05.04.2023 +#### Version 16.0.1.0.0 +#### ADD +- Initial Commit for BOM Multiple Product Selection diff --git a/bom_multiple_product/models/__init__.py b/bom_multiple_product/models/__init__.py new file mode 100755 index 000000000..62c788c06 --- /dev/null +++ b/bom_multiple_product/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################# + +from . import mrp_bom +from . import product_product diff --git a/bom_multiple_product/models/mrp_bom.py b/bom_multiple_product/models/mrp_bom.py new file mode 100755 index 000000000..1fa0f4f14 --- /dev/null +++ b/bom_multiple_product/models/mrp_bom.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################# + +from odoo import models + + +class MrpBom(models.Model): + _inherit = 'mrp.bom' + + def select_products(self): + """Open a wizard to add multiple products for bom component.""" + + return { + 'name': "Select Products", + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'bom.products', + 'view_id': self.env.ref( + 'bom_multiple_product.bom_product_selection_wizard_form').id, + 'target': 'new', + 'context': {'default_bom_id': self.id}, + + } diff --git a/bom_multiple_product/models/product_product.py b/bom_multiple_product/models/product_product.py new file mode 100755 index 000000000..d42211f1c --- /dev/null +++ b/bom_multiple_product/models/product_product.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################# + +from odoo import models + + +class ProductProduct(models.Model): + _inherit = 'product.product' + + def action_create_bom(self): + """ Open a wizard for creating bill of materials + based on the selected products.""" + + return { + 'name': "Create BOM", + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'product.bom.create', + 'view_id': self.env.ref( + 'bom_multiple_product.create_bom_wizard_form').id, + 'target': 'new', + + } diff --git a/bom_multiple_product/security/ir.model.access.csv b/bom_multiple_product/security/ir.model.access.csv new file mode 100755 index 000000000..421299345 --- /dev/null +++ b/bom_multiple_product/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_bom_products,access_bom_products,model_bom_products,base.group_user,1,1,1,1 +access_product_bom_create,access_product_bom_create,model_product_bom_create,base.group_user,1,1,1,1 diff --git a/bom_multiple_product/static/description/assets/icons/check.png b/bom_multiple_product/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/check.png differ diff --git a/bom_multiple_product/static/description/assets/icons/chevron.png b/bom_multiple_product/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/chevron.png differ diff --git a/bom_multiple_product/static/description/assets/icons/cogs.png b/bom_multiple_product/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/cogs.png differ diff --git a/bom_multiple_product/static/description/assets/icons/consultation.png b/bom_multiple_product/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/consultation.png differ diff --git a/bom_multiple_product/static/description/assets/icons/ecom-black.png b/bom_multiple_product/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/ecom-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/education-black.png b/bom_multiple_product/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/education-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/hotel-black.png b/bom_multiple_product/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/hotel-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/license.png b/bom_multiple_product/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/license.png differ diff --git a/bom_multiple_product/static/description/assets/icons/lifebuoy.png b/bom_multiple_product/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/lifebuoy.png differ diff --git a/bom_multiple_product/static/description/assets/icons/manufacturing-black.png b/bom_multiple_product/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/manufacturing-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/pos-black.png b/bom_multiple_product/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/pos-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/puzzle.png b/bom_multiple_product/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/puzzle.png differ diff --git a/bom_multiple_product/static/description/assets/icons/restaurant-black.png b/bom_multiple_product/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/restaurant-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/service-black.png b/bom_multiple_product/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/service-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/trading-black.png b/bom_multiple_product/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/trading-black.png differ diff --git a/bom_multiple_product/static/description/assets/icons/training.png b/bom_multiple_product/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/training.png differ diff --git a/bom_multiple_product/static/description/assets/icons/update.png b/bom_multiple_product/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/update.png differ diff --git a/bom_multiple_product/static/description/assets/icons/user.png b/bom_multiple_product/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/user.png differ diff --git a/bom_multiple_product/static/description/assets/icons/wrench.png b/bom_multiple_product/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/bom_multiple_product/static/description/assets/icons/wrench.png differ diff --git a/bom_multiple_product/static/description/assets/misc/categories.png b/bom_multiple_product/static/description/assets/misc/categories.png new file mode 100755 index 000000000..bedf1e0b1 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/categories.png differ diff --git a/bom_multiple_product/static/description/assets/misc/check-box.png b/bom_multiple_product/static/description/assets/misc/check-box.png new file mode 100755 index 000000000..42caf24b9 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/check-box.png differ diff --git a/bom_multiple_product/static/description/assets/misc/compass.png b/bom_multiple_product/static/description/assets/misc/compass.png new file mode 100755 index 000000000..d5fed8faa Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/compass.png differ diff --git a/bom_multiple_product/static/description/assets/misc/corporate.png b/bom_multiple_product/static/description/assets/misc/corporate.png new file mode 100755 index 000000000..2eb13edbf Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/corporate.png differ diff --git a/bom_multiple_product/static/description/assets/misc/customer-support.png b/bom_multiple_product/static/description/assets/misc/customer-support.png new file mode 100755 index 000000000..79efc72ed Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/customer-support.png differ diff --git a/bom_multiple_product/static/description/assets/misc/cybrosys-logo.png b/bom_multiple_product/static/description/assets/misc/cybrosys-logo.png new file mode 100755 index 000000000..cc3cc0ccf Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/cybrosys-logo.png differ diff --git a/bom_multiple_product/static/description/assets/misc/features.png b/bom_multiple_product/static/description/assets/misc/features.png new file mode 100755 index 000000000..b41769f77 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/features.png differ diff --git a/bom_multiple_product/static/description/assets/misc/logo.png b/bom_multiple_product/static/description/assets/misc/logo.png new file mode 100755 index 000000000..478462d3e Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/logo.png differ diff --git a/bom_multiple_product/static/description/assets/misc/pictures.png b/bom_multiple_product/static/description/assets/misc/pictures.png new file mode 100755 index 000000000..56d255fe9 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/pictures.png differ diff --git a/bom_multiple_product/static/description/assets/misc/pie-chart.png b/bom_multiple_product/static/description/assets/misc/pie-chart.png new file mode 100755 index 000000000..426e05244 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/pie-chart.png differ diff --git a/bom_multiple_product/static/description/assets/misc/right-arrow.png b/bom_multiple_product/static/description/assets/misc/right-arrow.png new file mode 100755 index 000000000..730984a06 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/right-arrow.png differ diff --git a/bom_multiple_product/static/description/assets/misc/star.png b/bom_multiple_product/static/description/assets/misc/star.png new file mode 100755 index 000000000..2eb9ab29f Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/star.png differ diff --git a/bom_multiple_product/static/description/assets/misc/support.png b/bom_multiple_product/static/description/assets/misc/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/support.png differ diff --git a/bom_multiple_product/static/description/assets/misc/whatsapp.png b/bom_multiple_product/static/description/assets/misc/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/bom_multiple_product/static/description/assets/misc/whatsapp.png differ diff --git a/bom_multiple_product/static/description/assets/modules/1.png b/bom_multiple_product/static/description/assets/modules/1.png new file mode 100755 index 000000000..4dd6c54da Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/1.png differ diff --git a/bom_multiple_product/static/description/assets/modules/2.png b/bom_multiple_product/static/description/assets/modules/2.png new file mode 100755 index 000000000..1ae7cfe3b Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/2.png differ diff --git a/bom_multiple_product/static/description/assets/modules/3.png b/bom_multiple_product/static/description/assets/modules/3.png new file mode 100755 index 000000000..3c3ff1afb Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/3.png differ diff --git a/bom_multiple_product/static/description/assets/modules/4.png b/bom_multiple_product/static/description/assets/modules/4.png new file mode 100755 index 000000000..3fae4631e Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/4.png differ diff --git a/bom_multiple_product/static/description/assets/modules/5.gif b/bom_multiple_product/static/description/assets/modules/5.gif new file mode 100755 index 000000000..8f40aab85 Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/5.gif differ diff --git a/bom_multiple_product/static/description/assets/modules/6.png b/bom_multiple_product/static/description/assets/modules/6.png new file mode 100755 index 000000000..31ed46762 Binary files /dev/null and b/bom_multiple_product/static/description/assets/modules/6.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/hero1.gif b/bom_multiple_product/static/description/assets/screenshots/hero1.gif new file mode 100755 index 000000000..3ffa1ff53 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/hero1.gif differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro1.png b/bom_multiple_product/static/description/assets/screenshots/pro1.png new file mode 100755 index 000000000..dedcfa3d7 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro1.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro2.png b/bom_multiple_product/static/description/assets/screenshots/pro2.png new file mode 100755 index 000000000..cdc8b1d7d Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro2.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro3.png b/bom_multiple_product/static/description/assets/screenshots/pro3.png new file mode 100755 index 000000000..529fa283c Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro3.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro4.png b/bom_multiple_product/static/description/assets/screenshots/pro4.png new file mode 100755 index 000000000..0e9426ff8 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro4.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro5.png b/bom_multiple_product/static/description/assets/screenshots/pro5.png new file mode 100755 index 000000000..a6f444970 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro5.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro6.1.png b/bom_multiple_product/static/description/assets/screenshots/pro6.1.png new file mode 100755 index 000000000..e09955a6b Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro6.1.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro6.png b/bom_multiple_product/static/description/assets/screenshots/pro6.png new file mode 100755 index 000000000..2dbaf6df4 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro6.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro7.png b/bom_multiple_product/static/description/assets/screenshots/pro7.png new file mode 100755 index 000000000..257f7995d Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro7.png differ diff --git a/bom_multiple_product/static/description/assets/screenshots/pro8.png b/bom_multiple_product/static/description/assets/screenshots/pro8.png new file mode 100755 index 000000000..c6ed01127 Binary files /dev/null and b/bom_multiple_product/static/description/assets/screenshots/pro8.png differ diff --git a/bom_multiple_product/static/description/banner.png b/bom_multiple_product/static/description/banner.png new file mode 100755 index 000000000..272ec20f9 Binary files /dev/null and b/bom_multiple_product/static/description/banner.png differ diff --git a/bom_multiple_product/static/description/icon.png b/bom_multiple_product/static/description/icon.png new file mode 100755 index 000000000..ab6bbe75b Binary files /dev/null and b/bom_multiple_product/static/description/icon.png differ diff --git a/bom_multiple_product/static/description/index.html b/bom_multiple_product/static/description/index.html new file mode 100755 index 000000000..883fa44fb --- /dev/null +++ b/bom_multiple_product/static/description/index.html @@ -0,0 +1,677 @@ +
+ +
+ +
+
+ Community +
+
+
+ +
+
+
+ +

+ BOM Multiple Product Selection

+

+ This module is helps to choose multiple products for BOM.

+ + +
+
+
+ + +
+ + +
+
+ +
+

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to add multiple products for bom components and create new bom by choosing multiple products. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Select multiple components in BOM +
+
+ + Create new BOM from product variants list view by selecting multiple products as components. +
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Add multiple components. +

+

+ Click 'SELECT PRODUCTS' button in BOM to add multiple components.

+ +
+ +
+

+ Click Add a line button from the wizard to choose products. +

+ + + +
+ +
+

+ Select multiple products as of our need. +

+ + + +
+ +
+

+ In this wizard we can see the selected products. Click Select button. +

+ + + +
+ +
+

+ Products are added to the BOM components. +

+ + + +
+ +
+

+ Create new BOM by choosing multiple products. +

+

+ Go to Product Variants list view => Select multiple products

+ +
+ +
+

+ Go to Action button and click 'Create BOM'. +

+ + + +
+ +
+

+ Click 'Create Bom' button after fill the bill of material details in the opened wizard. +

+ + + +
+ +
+

+ Newly created BOM and its components. +

+ + + +
+ +
+
+ + + +
+
+ +
+

+ Related + Products +

+
+
+
+ +
+
+ + + + +
+
+ +
+

+ Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+ +
+ + + + + +
+
+ +
+

+ Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? + Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/bom_multiple_product/views/mrp_bom_views.xml b/bom_multiple_product/views/mrp_bom_views.xml new file mode 100755 index 000000000..4c33f2164 --- /dev/null +++ b/bom_multiple_product/views/mrp_bom_views.xml @@ -0,0 +1,15 @@ + + + + + mrp.bom.form + mrp.bom + + + +