diff --git a/so_bom_selection/README.rst b/so_bom_selection/README.rst new file mode 100755 index 000000000..6ad66164b --- /dev/null +++ b/so_bom_selection/README.rst @@ -0,0 +1,41 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Bill Of Material from Sale Order Line +======================= +Select the BOM in sale order line and generate the manufacturing order of components. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: Unnimaya C O @cybrosys, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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 +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ \ No newline at end of file diff --git a/so_bom_selection/__init__.py b/so_bom_selection/__init__.py new file mode 100644 index 000000000..b2744bb0c --- /dev/null +++ b/so_bom_selection/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import models diff --git a/so_bom_selection/__manifest__.py b/so_bom_selection/__manifest__.py new file mode 100644 index 000000000..434f5c251 --- /dev/null +++ b/so_bom_selection/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': "Bill Of Material from Sale Order Line", + 'version': '16.0.1.0.0', + 'category': 'Manufacturing/Manufacturing', + 'summary': 'Select the BOM in sale order line and generate the manufacturing order of components', + 'description': 'Select the Bill of Material of each product in Sale Order Line. After confirmation of Sale Order, ' + 'Manufacturing Order of the components in the Bill of Material will be created automatically.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'images': ['static/description/banner.png'], + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'sale_management', 'mrp'], + 'data': [ + 'views/sale_order_views.xml', + 'views/mrp_production_views.xml', + ], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/so_bom_selection/doc/RELEASE_NOTES.md b/so_bom_selection/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..982ac2dfa --- /dev/null +++ b/so_bom_selection/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 01.04.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Bill Of Material from Sale Order Line diff --git a/so_bom_selection/models/__init__.py b/so_bom_selection/models/__init__.py new file mode 100644 index 000000000..422f3bd1d --- /dev/null +++ b/so_bom_selection/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from . import sale_order_line +from . import mrp_production +from . import sale_order diff --git a/so_bom_selection/models/mrp_production.py b/so_bom_selection/models/mrp_production.py new file mode 100644 index 000000000..e44a709a7 --- /dev/null +++ b/so_bom_selection/models/mrp_production.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + +from odoo import fields, models + + +class MrpProductionInherit(models.Model): + _inherit = 'mrp.production' + + source = fields.Char(string='Source', + help='Sale Order from which this Manufacturing ' + 'Order created') + qty_to_produce = fields.Float(string='Quantity to Produce', + help='The number of products to be produced') + + def update_quantity(self): + """ Method for changing the quantities of components according to + product quantity """ + for rec in self.move_raw_ids: + self.write({ + 'move_raw_ids': [ + (1, rec.id, { + 'product_uom_qty': rec.product_uom_qty * + self.qty_to_produce, + }), + ] + }) diff --git a/so_bom_selection/models/sale_order.py b/so_bom_selection/models/sale_order.py new file mode 100644 index 000000000..4f52c40f7 --- /dev/null +++ b/so_bom_selection/models/sale_order.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import models + + +class SaleOrderInherit(models.Model): + _inherit = 'sale.order' + + def action_confirm(self): + """ Create manufacturing order of components in selected BOM """ + for rec in self.order_line: + if rec.bom_id: + move_raw = [] + bom_line = self.env['mrp.bom.line'].search( + [('bom_id', '=', rec.bom_id.id)]) + for val in bom_line.mapped('product_id'): + product_uom_qty = bom_line.filtered( + lambda x: x.product_id.id == val.id).product_qty + move_raw.append( + (0, 0, { + 'company_id': self.env.user.company_id.id, + 'product_id': val.id, + 'product_uom_qty': product_uom_qty * + rec.product_uom_qty, + 'name': val.name, + })) + self.env['mrp.production'].sudo().create({ + 'product_id': rec.product_id.id, + 'product_uom_qty': rec.product_uom_qty, + 'bom_id': rec.bom_id.id, + 'user_id': self.env.uid, + 'product_uom_id': rec.product_id.uom_id.id, + 'company_id': self.env.user.company_id.id, + 'state': 'confirmed', + 'product_qty': rec.product_uom_qty, + 'source': self.name, + 'move_raw_ids': move_raw + }) + return super(SaleOrderInherit, self).action_confirm() diff --git a/so_bom_selection/models/sale_order_line.py b/so_bom_selection/models/sale_order_line.py new file mode 100644 index 000000000..a7815a6ee --- /dev/null +++ b/so_bom_selection/models/sale_order_line.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Unnimaya C O (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# 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 (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class SaleOrderLineInherit(models.Model): + _inherit = 'sale.order.line' + + bom_id = fields.Many2one('mrp.bom', string='Bill of Material') + product_template_id = fields.Many2one(related="product_id.product_tmpl_id", + string="Template Id of Selected" + " Product") diff --git a/so_bom_selection/static/description/assets/icons/check.png b/so_bom_selection/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/check.png differ diff --git a/so_bom_selection/static/description/assets/icons/chevron.png b/so_bom_selection/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/chevron.png differ diff --git a/so_bom_selection/static/description/assets/icons/cogs.png b/so_bom_selection/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/cogs.png differ diff --git a/so_bom_selection/static/description/assets/icons/consultation.png b/so_bom_selection/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/consultation.png differ diff --git a/so_bom_selection/static/description/assets/icons/ecom-black.png b/so_bom_selection/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/ecom-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/education-black.png b/so_bom_selection/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/education-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/hotel-black.png b/so_bom_selection/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/hotel-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/license.png b/so_bom_selection/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/license.png differ diff --git a/so_bom_selection/static/description/assets/icons/lifebuoy.png b/so_bom_selection/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/lifebuoy.png differ diff --git a/so_bom_selection/static/description/assets/icons/manufacturing-black.png b/so_bom_selection/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/manufacturing-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/pos-black.png b/so_bom_selection/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/pos-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/puzzle.png b/so_bom_selection/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/puzzle.png differ diff --git a/so_bom_selection/static/description/assets/icons/restaurant-black.png b/so_bom_selection/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/restaurant-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/service-black.png b/so_bom_selection/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/service-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/trading-black.png b/so_bom_selection/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/trading-black.png differ diff --git a/so_bom_selection/static/description/assets/icons/training.png b/so_bom_selection/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/training.png differ diff --git a/so_bom_selection/static/description/assets/icons/update.png b/so_bom_selection/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/update.png differ diff --git a/so_bom_selection/static/description/assets/icons/user.png b/so_bom_selection/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/user.png differ diff --git a/so_bom_selection/static/description/assets/icons/wrench.png b/so_bom_selection/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/wrench.png differ diff --git a/so_bom_selection/static/description/assets/misc/categories.png b/so_bom_selection/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/categories.png differ diff --git a/so_bom_selection/static/description/assets/misc/check-box.png b/so_bom_selection/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/check-box.png differ diff --git a/so_bom_selection/static/description/assets/misc/compass.png b/so_bom_selection/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/compass.png differ diff --git a/so_bom_selection/static/description/assets/misc/corporate.png b/so_bom_selection/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/corporate.png differ diff --git a/so_bom_selection/static/description/assets/misc/customer-support.png b/so_bom_selection/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/customer-support.png differ diff --git a/so_bom_selection/static/description/assets/misc/cybrosys-logo.png b/so_bom_selection/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/cybrosys-logo.png differ diff --git a/so_bom_selection/static/description/assets/misc/features.png b/so_bom_selection/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/features.png differ diff --git a/so_bom_selection/static/description/assets/misc/logo.png b/so_bom_selection/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/logo.png differ diff --git a/so_bom_selection/static/description/assets/misc/pictures.png b/so_bom_selection/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/pictures.png differ diff --git a/so_bom_selection/static/description/assets/misc/pie-chart.png b/so_bom_selection/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/pie-chart.png differ diff --git a/so_bom_selection/static/description/assets/misc/right-arrow.png b/so_bom_selection/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/right-arrow.png differ diff --git a/so_bom_selection/static/description/assets/misc/star.png b/so_bom_selection/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/star.png differ diff --git a/so_bom_selection/static/description/assets/misc/support.png b/so_bom_selection/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/support.png differ diff --git a/so_bom_selection/static/description/assets/misc/whatsapp.png b/so_bom_selection/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/whatsapp.png differ diff --git a/so_bom_selection/static/description/assets/modules/l1.png b/so_bom_selection/static/description/assets/modules/l1.png new file mode 100644 index 000000000..ed175b076 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l1.png differ diff --git a/so_bom_selection/static/description/assets/modules/l2.png b/so_bom_selection/static/description/assets/modules/l2.png new file mode 100644 index 000000000..a3194264c Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l2.png differ diff --git a/so_bom_selection/static/description/assets/modules/l3.png b/so_bom_selection/static/description/assets/modules/l3.png new file mode 100644 index 000000000..e894393ef Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l3.png differ diff --git a/so_bom_selection/static/description/assets/modules/l4.png b/so_bom_selection/static/description/assets/modules/l4.png new file mode 100644 index 000000000..f3c986fc1 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l4.png differ diff --git a/so_bom_selection/static/description/assets/modules/l5.png b/so_bom_selection/static/description/assets/modules/l5.png new file mode 100644 index 000000000..b21837312 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l5.png differ diff --git a/so_bom_selection/static/description/assets/modules/l6.png b/so_bom_selection/static/description/assets/modules/l6.png new file mode 100644 index 000000000..e64a5b55c Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/l6.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot1.png b/so_bom_selection/static/description/assets/screenshots/Screenshot1.png new file mode 100644 index 000000000..09e71b632 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot1.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot2.png b/so_bom_selection/static/description/assets/screenshots/Screenshot2.png new file mode 100644 index 000000000..94ea196a1 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot2.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot3.png b/so_bom_selection/static/description/assets/screenshots/Screenshot3.png new file mode 100644 index 000000000..c20f045ee Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot3.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot4.png b/so_bom_selection/static/description/assets/screenshots/Screenshot4.png new file mode 100644 index 000000000..422d0ae0a Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot4.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot5.png b/so_bom_selection/static/description/assets/screenshots/Screenshot5.png new file mode 100644 index 000000000..70e9a7a0a Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot5.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/Screenshot6.png b/so_bom_selection/static/description/assets/screenshots/Screenshot6.png new file mode 100644 index 000000000..0b21298e9 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/Screenshot6.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/hero.gif b/so_bom_selection/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..e733ea405 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/hero.gif differ diff --git a/so_bom_selection/static/description/banner.png b/so_bom_selection/static/description/banner.png new file mode 100644 index 000000000..b94dc8738 Binary files /dev/null and b/so_bom_selection/static/description/banner.png differ diff --git a/so_bom_selection/static/description/icon.png b/so_bom_selection/static/description/icon.png new file mode 100644 index 000000000..8f22d0457 Binary files /dev/null and b/so_bom_selection/static/description/icon.png differ diff --git a/so_bom_selection/static/description/index.html b/so_bom_selection/static/description/index.html new file mode 100644 index 000000000..03f9e0eda --- /dev/null +++ b/so_bom_selection/static/description/index.html @@ -0,0 +1,661 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + + +

+ Bill Of Material from Sale Order Line

+

+ Select the BOM in sale order line + and generate the manufacturing order of components.

+ + + +
+ + +
+
+ +
+

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ Bill Of Material from Sale Order Line app helps to select Bill of + Material of each selected product in sale order line. After confirming + the Quotation, a Manufacturing Order will be automatically created for + the components in the bill of material. It is also possible to change + the Quantity to Produce in Manufacturing Order + +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Available in Community and Enterprise +
+
+ + Select the BOM for each product in sale order line and generate the manufacturing order of components.. +
+
+ + Easiest way to generate the manufacturing order for BOM +
+
+ + Allows to select suitable BOM for each product in sale order line. +
+
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Provision for selecting BOM from Sale Order Line

+ + + +
+
+

+ Choose BOM

+

Choose suitable BOM for selected product

+ +
+
+

+ Confirm the Sale Order

+ +
+ +
+

+ New Manufacturing Order created

+

+ New Manufacturing Order created for components with source as + corresponding Sale Order +

+ + +
+
+

+ Change the quantity

+

+ It is possible to change the quantity of product. +

+ + +
+
+

+ Quantity of components changed

+

+ Quantity of Components changed as the result of multiplying the UOM Quantity of Component with the + Quantity to Produce. +

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

+ 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/so_bom_selection/views/mrp_production_views.xml b/so_bom_selection/views/mrp_production_views.xml new file mode 100644 index 000000000..c1e7dc12b --- /dev/null +++ b/so_bom_selection/views/mrp_production_views.xml @@ -0,0 +1,23 @@ + + + + + mrp.production.view.inherited + mrp.production + + + + + + + + + + \ No newline at end of file diff --git a/so_bom_selection/views/sale_order_views.xml b/so_bom_selection/views/sale_order_views.xml new file mode 100644 index 000000000..a7ce17d10 --- /dev/null +++ b/so_bom_selection/views/sale_order_views.xml @@ -0,0 +1,15 @@ + + + + + sale.order.inherit + sale.order + + + + + + + + \ No newline at end of file