diff --git a/pos_bom/README.rst b/pos_bom/README.rst new file mode 100644 index 000000000..623bf8fd8 --- /dev/null +++ b/pos_bom/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: LGPL-3 + +POS Product Components +====================== +This module helps us to configure BOM products in point of sale and manage inventory for such products. + +Configuration +============= +No additional configuration required + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +GNU Lesser General Public License v3.0 (LGPL v3) +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +Developer: (V16) Nivedhya T, 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/pos_bom/__init__.py b/pos_bom/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/pos_bom/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/pos_bom/__manifest__.py b/pos_bom/__manifest__.py new file mode 100644 index 000000000..bf055dff6 --- /dev/null +++ b/pos_bom/__manifest__.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'POS Product Components', + 'version': '16.0.1.0.0', + 'category': 'Point of Sale', + 'summary': """Helps to handle Product BOM Components in POS """, + 'description': """Helps us to configure BOM products in point of sale and manage inventory for such products""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'point_of_sale','stock',], + 'data': [ + 'security/ir.model.access.csv', + 'views/product_template_views.xml', + 'views/pos_product_bom_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} \ No newline at end of file diff --git a/pos_bom/doc/RELEASE_NOTES.md b/pos_bom/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..20ad31b97 --- /dev/null +++ b/pos_bom/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 05.08.2024 +#### Version 16.0.1.0.0 +##### ADD +- Initial Commit for POS Product Components diff --git a/pos_bom/models/__init__.py b/pos_bom/models/__init__.py new file mode 100644 index 000000000..f6283d14c --- /dev/null +++ b/pos_bom/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import pos_bom_line +from . import pos_product_bom +from . import product_template +from . import stock_picking diff --git a/pos_bom/models/pos_bom_line.py b/pos_bom/models/pos_bom_line.py new file mode 100644 index 000000000..2a6fc7bd6 --- /dev/null +++ b/pos_bom/models/pos_bom_line.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class POSBomLines(models.Model): + """Creating pos_bom_line model to adding pos product bom components""" + _name = 'pos.bom.line' + _description = "POS BOM Lines" + + product_id = fields.Many2one('product.product', + string="POS Product Bom", + domain=[('is_bom', '=', False)], + help="Select the product") + sequence = fields.Integer('Sequence', default=1, + help="Gives the sequence order when displaying") + bom_id = fields.Many2one('pos.product.bom', + string="BOM Product", + help="Get the bill of material product") + quantity = fields.Float(string="Quantity", + help="Set the quantity of the product") + product_uom_id = fields.Many2one('uom.uom', + string="Unit of Measure", + help="Add the unit of measure") + + @api.onchange('product_id') + def onchange_product(self): + """Onchange the product field""" + if self.product_id: + self.product_uom_id = self.product_id.uom_id.id diff --git a/pos_bom/models/pos_product_bom.py b/pos_bom/models/pos_product_bom.py new file mode 100644 index 000000000..d46b61c99 --- /dev/null +++ b/pos_bom/models/pos_product_bom.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models + + +class POSProductBOM(models.Model): + """Creating the pos_product_bom model and adding the product details.""" + _name = 'pos.product.bom' + _rec_name = 'product_id' + _description = "POS Product BOM" + + name = fields.Char(string="Name", help="Get the name") + product_id = fields.Many2one('product.template', string="Product", domain=[('is_bom', '=', True)], + required=True, help="Select a product for have bom") + reference = fields.Char(string="Reference", help="Add the reference") + quantity = fields.Float(string="Quantity", required=True, help="Set the quantity of product") + product_uom_id = fields.Many2one('uom.uom', string="Unit of Measure", help="Unit of measure of the product") + bom_line_ids = fields.One2many('pos.bom.line', inverse_name='bom_id', string="Components", + help="Get the bill of material lines") + state = fields.Selection([ + ('draft', 'Draft'), + ('confirm', 'Confirm'), + ('cancel', 'Cancelled')], string='State', default='draft', help="State of the pos product bom") + + def action_confirm(self): + """ confirm button""" + self.state = 'confirm' + + def action_cancel(self): + """ Cancel button""" + self.state = 'cancel' + + @api.onchange('product_id') + def onchange_product_id(self): + """Onchange the product field""" + if self.product_id: + self.product_uom_id = self.product_id.uom_id.id diff --git a/pos_bom/models/product_template.py b/pos_bom/models/product_template.py new file mode 100644 index 000000000..bf7385872 --- /dev/null +++ b/pos_bom/models/product_template.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ProductInherit(models.Model): + """Inherit the product_template model and adding the boolean field""" + _inherit = 'product.template' + + is_bom = fields.Boolean(string="Have BOM", default=False, help="check if you have bom") diff --git a/pos_bom/models/stock_picking.py b/pos_bom/models/stock_picking.py new file mode 100644 index 000000000..7bb774250 --- /dev/null +++ b/pos_bom/models/stock_picking.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models +from itertools import groupby + + +class StockPicking(models.Model): + """Inheriting the stock_picking model and creating the stock move + from point of sale.""" + _inherit = 'stock.picking' + + def _create_move_from_pos_order_lines(self, lines): + """Create stock move from point of sale""" + self.ensure_one() + lines_by_product = groupby(sorted(lines, key=lambda l: l.product_id.id), key=lambda l: l.product_id.id) + move_vals = [] + for dummy, olines in lines_by_product: + order_lines = self.env['pos.order.line'].concat(*olines) + move_vals.append(self._prepare_stock_move_vals(order_lines[0], order_lines)) + moves = self.env['stock.move'].create(move_vals) + confirmed_moves = moves._action_confirm() + for move in confirmed_moves: + if move.product_id.is_bom: + products = self.env['pos.product.bom'].search( + [('product_id.id', '=', move.product_id.product_tmpl_id.id)]) + for rec in products.bom_line_ids: + pos_bom_move = self.env['stock.move'].create( + { + 'name': self.name, + 'date': self.create_date, + 'product_uom': rec.product_uom_id.id, + 'picking_id': self.id, + 'picking_type_id': self.picking_type_id.id, + 'product_id': rec.product_id.id, + 'product_uom_qty': abs(sum(order_lines.mapped( + 'qty'))) * (rec.quantity / products.quantity), + 'state': 'done', + 'warehouse_id': self.location_dest_id.warehouse_id.id, + 'location_id': self.location_id.id, + 'location_dest_id': self.location_dest_id.id, + 'company_id': self.company_id.id, + } + ) + pos_bom_move.quantity_done = pos_bom_move.product_uom_qty + confirmed_moves._add_mls_related_to_order(lines, are_qties_done=True) diff --git a/pos_bom/security/ir.model.access.csv b/pos_bom/security/ir.model.access.csv new file mode 100644 index 000000000..7b4146151 --- /dev/null +++ b/pos_bom/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_pos_product_bom,access.pos.product.bom,model_pos_product_bom,base.group_user,1,1,1,1 +access_pos_bom_line,access.pos.bom.line,model_pos_bom_line,base.group_user,1,1,1,1 \ No newline at end of file diff --git a/pos_bom/static/description/assets/icons/check.png b/pos_bom/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/pos_bom/static/description/assets/icons/check.png differ diff --git a/pos_bom/static/description/assets/icons/chevron.png b/pos_bom/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/pos_bom/static/description/assets/icons/chevron.png differ diff --git a/pos_bom/static/description/assets/icons/cogs.png b/pos_bom/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/pos_bom/static/description/assets/icons/cogs.png differ diff --git a/pos_bom/static/description/assets/icons/consultation.png b/pos_bom/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/pos_bom/static/description/assets/icons/consultation.png differ diff --git a/pos_bom/static/description/assets/icons/ecom-black.png b/pos_bom/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/pos_bom/static/description/assets/icons/ecom-black.png differ diff --git a/pos_bom/static/description/assets/icons/education-black.png b/pos_bom/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/pos_bom/static/description/assets/icons/education-black.png differ diff --git a/pos_bom/static/description/assets/icons/hotel-black.png b/pos_bom/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/pos_bom/static/description/assets/icons/hotel-black.png differ diff --git a/pos_bom/static/description/assets/icons/license.png b/pos_bom/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/pos_bom/static/description/assets/icons/license.png differ diff --git a/pos_bom/static/description/assets/icons/lifebuoy.png b/pos_bom/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/pos_bom/static/description/assets/icons/lifebuoy.png differ diff --git a/pos_bom/static/description/assets/icons/manufacturing-black.png b/pos_bom/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/pos_bom/static/description/assets/icons/manufacturing-black.png differ diff --git a/pos_bom/static/description/assets/icons/pos-black.png b/pos_bom/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/pos_bom/static/description/assets/icons/pos-black.png differ diff --git a/pos_bom/static/description/assets/icons/puzzle.png b/pos_bom/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/pos_bom/static/description/assets/icons/puzzle.png differ diff --git a/pos_bom/static/description/assets/icons/restaurant-black.png b/pos_bom/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/pos_bom/static/description/assets/icons/restaurant-black.png differ diff --git a/pos_bom/static/description/assets/icons/service-black.png b/pos_bom/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/pos_bom/static/description/assets/icons/service-black.png differ diff --git a/pos_bom/static/description/assets/icons/trading-black.png b/pos_bom/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/pos_bom/static/description/assets/icons/trading-black.png differ diff --git a/pos_bom/static/description/assets/icons/training.png b/pos_bom/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/pos_bom/static/description/assets/icons/training.png differ diff --git a/pos_bom/static/description/assets/icons/update.png b/pos_bom/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/pos_bom/static/description/assets/icons/update.png differ diff --git a/pos_bom/static/description/assets/icons/user.png b/pos_bom/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/pos_bom/static/description/assets/icons/user.png differ diff --git a/pos_bom/static/description/assets/icons/wrench.png b/pos_bom/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/pos_bom/static/description/assets/icons/wrench.png differ diff --git a/pos_bom/static/description/assets/misc/categories.png b/pos_bom/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/pos_bom/static/description/assets/misc/categories.png differ diff --git a/pos_bom/static/description/assets/misc/check-box.png b/pos_bom/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/pos_bom/static/description/assets/misc/check-box.png differ diff --git a/pos_bom/static/description/assets/misc/compass.png b/pos_bom/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/pos_bom/static/description/assets/misc/compass.png differ diff --git a/pos_bom/static/description/assets/misc/corporate.png b/pos_bom/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/pos_bom/static/description/assets/misc/corporate.png differ diff --git a/pos_bom/static/description/assets/misc/customer-support.png b/pos_bom/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/pos_bom/static/description/assets/misc/customer-support.png differ diff --git a/pos_bom/static/description/assets/misc/cybrosys-logo.png b/pos_bom/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/pos_bom/static/description/assets/misc/cybrosys-logo.png differ diff --git a/pos_bom/static/description/assets/misc/features.png b/pos_bom/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/pos_bom/static/description/assets/misc/features.png differ diff --git a/pos_bom/static/description/assets/misc/logo.png b/pos_bom/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/pos_bom/static/description/assets/misc/logo.png differ diff --git a/pos_bom/static/description/assets/misc/pictures.png b/pos_bom/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/pos_bom/static/description/assets/misc/pictures.png differ diff --git a/pos_bom/static/description/assets/misc/pie-chart.png b/pos_bom/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/pos_bom/static/description/assets/misc/pie-chart.png differ diff --git a/pos_bom/static/description/assets/misc/right-arrow.png b/pos_bom/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/pos_bom/static/description/assets/misc/right-arrow.png differ diff --git a/pos_bom/static/description/assets/misc/star.png b/pos_bom/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/pos_bom/static/description/assets/misc/star.png differ diff --git a/pos_bom/static/description/assets/misc/support.png b/pos_bom/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/pos_bom/static/description/assets/misc/support.png differ diff --git a/pos_bom/static/description/assets/misc/whatsapp.png b/pos_bom/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/pos_bom/static/description/assets/misc/whatsapp.png differ diff --git a/pos_bom/static/description/assets/modules/m1.png b/pos_bom/static/description/assets/modules/m1.png new file mode 100644 index 000000000..5ecc4d883 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m1.png differ diff --git a/pos_bom/static/description/assets/modules/m2.png b/pos_bom/static/description/assets/modules/m2.png new file mode 100644 index 000000000..89ff6c635 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m2.png differ diff --git a/pos_bom/static/description/assets/modules/m3.png b/pos_bom/static/description/assets/modules/m3.png new file mode 100644 index 000000000..fd1f87699 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m3.png differ diff --git a/pos_bom/static/description/assets/modules/m4.png b/pos_bom/static/description/assets/modules/m4.png new file mode 100644 index 000000000..5514bb8d4 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m4.png differ diff --git a/pos_bom/static/description/assets/modules/m5.png b/pos_bom/static/description/assets/modules/m5.png new file mode 100644 index 000000000..38ea1f663 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m5.png differ diff --git a/pos_bom/static/description/assets/modules/m6.png b/pos_bom/static/description/assets/modules/m6.png new file mode 100644 index 000000000..f52b99646 Binary files /dev/null and b/pos_bom/static/description/assets/modules/m6.png differ diff --git a/pos_bom/static/description/assets/screenshots/screenshot1.png b/pos_bom/static/description/assets/screenshots/screenshot1.png new file mode 100644 index 000000000..942b9b0e5 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/screenshot1.png differ diff --git a/pos_bom/static/description/assets/screenshots/screenshot2.png b/pos_bom/static/description/assets/screenshots/screenshot2.png new file mode 100644 index 000000000..7c0c83dd2 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/screenshot2.png differ diff --git a/pos_bom/static/description/assets/screenshots/screenshot3.png b/pos_bom/static/description/assets/screenshots/screenshot3.png new file mode 100644 index 000000000..bc9579b28 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/screenshot3.png differ diff --git a/pos_bom/static/description/assets/screenshots/screenshot4.png b/pos_bom/static/description/assets/screenshots/screenshot4.png new file mode 100644 index 000000000..766726715 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/screenshot4.png differ diff --git a/pos_bom/static/description/assets/screenshots/screenshot5.png b/pos_bom/static/description/assets/screenshots/screenshot5.png new file mode 100644 index 000000000..1d6b03141 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/screenshot5.png differ diff --git a/pos_bom/static/description/assets/screenshots/v16-hero.gif b/pos_bom/static/description/assets/screenshots/v16-hero.gif new file mode 100644 index 000000000..fef98d692 Binary files /dev/null and b/pos_bom/static/description/assets/screenshots/v16-hero.gif differ diff --git a/pos_bom/static/description/banner.png b/pos_bom/static/description/banner.png new file mode 100644 index 000000000..57484b6b9 Binary files /dev/null and b/pos_bom/static/description/banner.png differ diff --git a/pos_bom/static/description/icon.png b/pos_bom/static/description/icon.png new file mode 100644 index 000000000..b0a7c62b6 Binary files /dev/null and b/pos_bom/static/description/icon.png differ diff --git a/pos_bom/static/description/index.html b/pos_bom/static/description/index.html new file mode 100644 index 000000000..cc845e29e --- /dev/null +++ b/pos_bom/static/description/index.html @@ -0,0 +1,629 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + + +
+
+
+

+ POS Product Components

+

+ To handle Product BOM Components in POS

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This app helps us to configure Product Components in point of sale and manage inventory for such products. + It automatically generates the stock move of components in a bom product. + When user confirm the POS order it generates the picking of the bom components and + corresponding quantity done will be deduct from their Inventory. + +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & Enterprise Support. +
+
+ + Create Components for POS Products. +
+
+ + Managing the Inventory of Product Components in POS. +
+
+ + Automatic Stock Move Generation of Product Components. +
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Create Components for POS Products.

+

+ If the product have Components,enable the Have BOM.

+ +
+
+

+ Here we create Components of product ,quantity of each..

+ +
+
+

+ Generation of Move History of Product Components.

+

+ Along with the product move history,the corresponding components move history are automatically generates.

+ + +
+
+

+ It shows the transfer of Product Components along with each components and their quantity done..

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

+ 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/pos_bom/views/pos_product_bom_views.xml b/pos_bom/views/pos_product_bom_views.xml new file mode 100644 index 000000000..8bd2a071e --- /dev/null +++ b/pos_bom/views/pos_product_bom_views.xml @@ -0,0 +1,74 @@ + + + + + pos.product.bom.view.tree + pos.product.bom + + + + + + + + + + + + pos.product.bom.view.form + pos.product.bom + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + POS Product Bom + pos.product.bom + tree,form + +

+ Create a Product Components +

+
+
+ +
diff --git a/pos_bom/views/product_template_views.xml b/pos_bom/views/product_template_views.xml new file mode 100644 index 000000000..ee7a7ef28 --- /dev/null +++ b/pos_bom/views/product_template_views.xml @@ -0,0 +1,17 @@ + + + + + product.template.view.form.inherit.pos.bom + product.template + + + +
+ +
+
+
+
+