diff --git a/so_bom_selection/README.rst b/so_bom_selection/README.rst new file mode 100755 index 000000000..87d26df1f --- /dev/null +++ b/so_bom_selection/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://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 + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: (V15) Nikhil M, 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: ``__ diff --git a/so_bom_selection/__init__.py b/so_bom_selection/__init__.py new file mode 100644 index 000000000..92818d9a2 --- /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: Nikhil M (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..c908f8b45 --- /dev/null +++ b/so_bom_selection/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Nikhil M (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': '15.0.1.0.0', + 'category': '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', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'mrp'], + 'data': [ + 'views/sale_order_views.xml', + 'views/mrp_production_views.xml', + ], + 'images': ['static/description/banner.jpg'], + '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..0b7123b04 --- /dev/null +++ b/so_bom_selection/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 22.01.2024 +#### Version 15.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..adedb8ac1 --- /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: Nikhil M (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 mrp_production +from . import sale_order +from . import sale_order_line diff --git a/so_bom_selection/models/mrp_production.py b/so_bom_selection/models/mrp_production.py new file mode 100644 index 000000000..15b1a4910 --- /dev/null +++ b/so_bom_selection/models/mrp_production.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Nikhil M (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 MrpProduction(models.Model): + """This class extends the 'mrp.production' model to add a new method + and field to add the Quantity to Produce.""" + _inherit = 'mrp.production' + + sale_line_id = fields.Many2one('sale.order.line', string='Sale Line', + help='ID of the Sale Order Line') + qty_to_produce = fields.Float(string='Quantity to Produce', + help='The number of products to be produced') + + def action_update_quantity(self): + """ Method for changing the quantities of components according to + product quantity """ + self.move_raw_ids = [(5,)] + self.move_finished_ids = [(5,)] + self.product_qty = self.qty_to_produce + moves_raw_values = self._get_moves_raw_values() + list_move_raw = [] + for move_raw_values in moves_raw_values: + list_move_raw += [(0, 0, move_raw_values)] + self.move_raw_ids = list_move_raw + moves_finished_values = self._get_moves_finished_values() + list_move_finished = [] + for move_finished_values in moves_finished_values: + list_move_finished += [(0, 0, move_finished_values)] + self.move_finished_ids = list_move_finished diff --git a/so_bom_selection/models/sale_order.py b/so_bom_selection/models/sale_order.py new file mode 100644 index 000000000..3f00cf82d --- /dev/null +++ b/so_bom_selection/models/sale_order.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Nikhil M (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 SaleOrder(models.Model): + """This class extends the 'sale.order' model to super an existing method.""" + _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: + mo = self.env["mrp.production"].create( + { + "product_id": rec.product_id.id, + "product_uom_id": rec.product_id.uom_id.id, + "origin": self.name, + 'company_id': self.env.user.company_id.id, + "product_qty": rec.product_uom_qty, + "qty_to_produce": rec.product_uom_qty, + "bom_id": rec.bom_id.id, + "sale_line_id": rec.id, + } + ) + moves_raw_values = mo._get_moves_raw_values() + list_move_raw = [] + for move_raw_values in moves_raw_values: + list_move_raw += [(0, 0, move_raw_values)] + mo.move_raw_ids = list_move_raw + moves_finished_values = mo._get_moves_finished_values() + list_move_finished = [] + for move_finished_values in moves_finished_values: + list_move_finished += [(0, 0, move_finished_values)] + mo.move_finished_ids = list_move_finished + return super(SaleOrder, 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..8483049d7 --- /dev/null +++ b/so_bom_selection/models/sale_order_line.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Nikhil M (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 SaleOrderLine(models.Model): + """This class extends the 'sale.order' model to add extra fields needed.""" + _inherit = 'sale.order.line' + + bom_id = fields.Many2one('mrp.bom', string='Bill of Material', + help='Select the Bill of Material for the Product.') + product_template_id = fields.Many2one(related="product_id.product_tmpl_id", + string="Template Id of Selected" + " Product", + help='Template of the product.') + + def _action_launch_stock_rule(self, previous_product_uom_qty=False): + """ Override the function to set the newly created MO id to the + corresponding stock move of the order line.""" + + result = super(SaleOrderLine, self)._action_launch_stock_rule( + previous_product_uom_qty) + for rec in self: + if rec.bom_id: + mo = self.env['mrp.production'].search([('sale_line_id','=',rec.id)]) + if mo: + move = self.env['stock.move'].search( + [('sale_line_id', '=', rec.id)]) + if not move.created_production_id: + move.created_production_id = mo.id + return result 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/1.png b/so_bom_selection/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/1.png differ diff --git a/so_bom_selection/static/description/assets/modules/2.png b/so_bom_selection/static/description/assets/modules/2.png new file mode 100644 index 000000000..3932f4062 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/2.png differ diff --git a/so_bom_selection/static/description/assets/modules/3.png b/so_bom_selection/static/description/assets/modules/3.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/3.png differ diff --git a/so_bom_selection/static/description/assets/modules/4.png b/so_bom_selection/static/description/assets/modules/4.png new file mode 100644 index 000000000..f00be3af0 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/4.png differ diff --git a/so_bom_selection/static/description/assets/modules/5.jpeg b/so_bom_selection/static/description/assets/modules/5.jpeg new file mode 100644 index 000000000..7397f2e2d Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/5.jpeg differ diff --git a/so_bom_selection/static/description/assets/modules/6.png b/so_bom_selection/static/description/assets/modules/6.png new file mode 100644 index 000000000..8d5c3ea3f Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/6.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.jpg b/so_bom_selection/static/description/banner.jpg new file mode 100644 index 000000000..ea96fa420 Binary files /dev/null and b/so_bom_selection/static/description/banner.jpg 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..e49ea403f 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..264ee4146 --- /dev/null +++ b/so_bom_selection/static/description/index.html @@ -0,0 +1,676 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ + +
+
+
+ +

+ 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

+
+
+
+
+
+
+
+ +
+
+
+ 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..ddc5e42a2 --- /dev/null +++ b/so_bom_selection/views/mrp_production_views.xml @@ -0,0 +1,23 @@ + + + + + mrp.production.view.form.inherit.so.bom.selection + mrp.production + + + + + + + + + + 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..450136bc2 --- /dev/null +++ b/so_bom_selection/views/sale_order_views.xml @@ -0,0 +1,15 @@ + + + + + sale.order.view.form.inherit.so.bom.selection + sale.order + + + + + + + +