diff --git a/so_bom_selection/README.rst b/so_bom_selection/README.rst new file mode 100755 index 000000000..b36b6d5c5 --- /dev/null +++ b/so_bom_selection/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-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 +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: + (V16) Unnimaya C, + (V17) Jumana Haseen, + 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..e5c57eb35 --- /dev/null +++ b/so_bom_selection/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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..b3f3d96fe --- /dev/null +++ b/so_bom_selection/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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': '17.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.png'], + '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..736de6a2e --- /dev/null +++ b/so_bom_selection/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 08.03.2024 +#### Version 17.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..e58cc641d --- /dev/null +++ b/so_bom_selection/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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..561743a92 --- /dev/null +++ b/so_bom_selection/models/mrp_production.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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): + """Inherited module 'mrp.production' and added required fields""" + _inherit = 'mrp.production' + + source = fields.Char(string='Source of Order', + help='Sale Order from which this Manufacturing ' + 'Order created.') + sale_line_id = fields.Many2one('sale.order.line', string='Sale Line', + help="Corresponding sale order line id") + + qty_to_produce = fields.Float(string='Quantity to Produce', + help='The number of products to be produced.') diff --git a/so_bom_selection/models/sale_order.py b/so_bom_selection/models/sale_order.py new file mode 100644 index 000000000..09f40ca49 --- /dev/null +++ b/so_bom_selection/models/sale_order.py @@ -0,0 +1,63 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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): + """Inherited model 'sale.order'""" + _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)] + return super(SaleOrder, self).action_confirm() + + def write(self, values): + """Super write method to change the manufacturing quantity + based on sale order quantity""" + res = super(SaleOrder, self).write(values) + for order_line in self.order_line: + if order_line.product_uom_qty: + mo = self.env["mrp.production"].search( + [('sale_line_id', '=', order_line.id), + ('state', '=', 'draft')]) + if mo: + mo.write({'product_qty': order_line.product_uom_qty}) + mo.write({'qty_to_produce': order_line.product_uom_qty}) + return res 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..250b9da95 --- /dev/null +++ b/so_bom_selection/models/sale_order_line.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Jumana Haseen (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): + """Inherited model 'sale.order.line' and added required fields""" + _inherit = 'sale.order.line' + + bom_id = fields.Many2one('mrp.bom', string='Bill of Material', + help="Bill of materials for the product") + product_template_id = fields.Many2one(related="product_id.product_tmpl_id", + string="Template Id of Selected" + " Product", + help="Template id of the " + "selected 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/capture (1).png b/so_bom_selection/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/capture (1).png differ 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/img.png b/so_bom_selection/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/img.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/photo-capture.png b/so_bom_selection/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/so_bom_selection/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/so_bom_selection/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/so_bom_selection/static/description/assets/misc/Cybrosys R.png differ diff --git a/so_bom_selection/static/description/assets/misc/email.svg b/so_bom_selection/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/phone.svg b/so_bom_selection/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/so_bom_selection/static/description/assets/misc/star (1) 2.svg b/so_bom_selection/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/support (1) 1.svg b/so_bom_selection/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/support-email.svg b/so_bom_selection/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/tick-mark.svg b/so_bom_selection/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/whatsapp 1.svg b/so_bom_selection/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/misc/whatsapp.svg b/so_bom_selection/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/so_bom_selection/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/so_bom_selection/static/description/assets/modules/m1.png b/so_bom_selection/static/description/assets/modules/m1.png new file mode 100644 index 000000000..acb4c76c6 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m1.png differ diff --git a/so_bom_selection/static/description/assets/modules/m2.png b/so_bom_selection/static/description/assets/modules/m2.png new file mode 100644 index 000000000..3ef91f771 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m2.png differ diff --git a/so_bom_selection/static/description/assets/modules/m3.png b/so_bom_selection/static/description/assets/modules/m3.png new file mode 100644 index 000000000..72febf6ae Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m3.png differ diff --git a/so_bom_selection/static/description/assets/modules/m4.png b/so_bom_selection/static/description/assets/modules/m4.png new file mode 100644 index 000000000..f7d7f9241 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m4.png differ diff --git a/so_bom_selection/static/description/assets/modules/m5.png b/so_bom_selection/static/description/assets/modules/m5.png new file mode 100644 index 000000000..1d3324e88 Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m5.png differ diff --git a/so_bom_selection/static/description/assets/modules/m6.png b/so_bom_selection/static/description/assets/modules/m6.png new file mode 100644 index 000000000..80938c15a Binary files /dev/null and b/so_bom_selection/static/description/assets/modules/m6.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/1.png b/so_bom_selection/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..d776a1bce Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/1.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/2.png b/so_bom_selection/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..88f32ed35 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/2.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/3.png b/so_bom_selection/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..2347f6cb3 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/3.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/4.png b/so_bom_selection/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..4423e5b44 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/4.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/5.png b/so_bom_selection/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..6712f71f6 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/5.png differ diff --git a/so_bom_selection/static/description/assets/screenshots/6.png b/so_bom_selection/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..4d4456e34 Binary files /dev/null and b/so_bom_selection/static/description/assets/screenshots/6.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..e84f05550 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..abce78a8f 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..f6461895c 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..8aadf1161 --- /dev/null +++ b/so_bom_selection/static/description/index.html @@ -0,0 +1,764 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ 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. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ 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.

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

+ Provision for selecting BOM from Sale Order + Line

+
+
+
+
+
+
+ +
+
+

+ Choose BOM

+

Choose + suitable BOM for + selected product +

+
+
+
+
+
+
+ +
+
+

+ Confirm the Sale Order to create + production

+
+
+
+
+
+
+ +
+
+

+ New Manufacturing Order created

+

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

+
+
+
+
+
+
+ +
+
+

+ Quantity of components changed.

+

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

+
+
+
+
+
+
+ +
+
+

+ Quantity of Products manufactured for each + product in sale order line

+
+
+
+
+
+
+
    +
  • + Available in + Community and Enterprise +
  • +
  • + Bill Of Material + from Sale Order Line +
      +
    • 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 +
    • +
    +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:7th March 2024 +
+

+ Initial Commit for Bill Of Material from Sale + Order Line +

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + 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..46498fd62 --- /dev/null +++ b/so_bom_selection/views/mrp_production_views.xml @@ -0,0 +1,24 @@ + + + + + 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 + + + + + + + +