diff --git a/product_combo_pack/README.rst b/product_combo_pack/README.rst new file mode 100755 index 000000000..eec3edcda --- /dev/null +++ b/product_combo_pack/README.rst @@ -0,0 +1,54 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Product Pack +============ +Create product pack which is a great way to raise average sales price per product, to serve customers with products that make their lives easier, and to leverage current products into new and different ones. + +Configuration +============= +- Additional configuration not required + +Installation +============ +- www.odoo.com/documentation/18.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +======= +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer: + (V16) Jumana Jabin MP, + (V17) Gayathri V + (V18) Dhanya B + 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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/product_combo_pack/__init__.py b/product_combo_pack/__init__.py new file mode 100755 index 000000000..d8cdd5313 --- /dev/null +++ b/product_combo_pack/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri v (odoo@cybrosys.com) +# +# 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/product_combo_pack/__manifest__.py b/product_combo_pack/__manifest__.py new file mode 100755 index 000000000..e3f904c9b --- /dev/null +++ b/product_combo_pack/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri v (odoo@cybrosys.com) +# +# 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': 'Product Pack', + 'version': '18.0.1.0.0', + 'category': 'Sales', + 'summary': 'Manage Products as Pack', + 'description': """Selling products in a pack is a great way to raise average + sales price per product, to serve customers with products that make their + lives easier, and to leverage current products into new and different ones. + They are profitable for smaller businesses as well as large ones.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'stock'], + 'data': [ + 'security/ir.model.access.csv', + 'views/product_product_views.xml', + 'views/product_template_views.xml', + 'views/sale_order_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/product_combo_pack/doc/RELEASE_NOTES.md b/product_combo_pack/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..822cf0c95 --- /dev/null +++ b/product_combo_pack/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 08.11.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial Commit for Product Combo Pack + diff --git a/product_combo_pack/models/__init__.py b/product_combo_pack/models/__init__.py new file mode 100755 index 000000000..9af751de0 --- /dev/null +++ b/product_combo_pack/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V (odoo@cybrosys.com) +# +# 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 pack_products +from . import product_template +from . import sale_order diff --git a/product_combo_pack/models/pack_products.py b/product_combo_pack/models/pack_products.py new file mode 100644 index 000000000..841feb00e --- /dev/null +++ b/product_combo_pack/models/pack_products.py @@ -0,0 +1,87 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri v (odoo@cybrosys.com) +# +# 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, _ +from odoo.exceptions import ValidationError + + +class PackProducts(models.Model): + """Model for selecting pack products.This model allows users to select + and manage pack products. """ + _name = 'pack.products' + _rec_name = 'product_tmpl_id' + _description = 'Select Pack Products' + + product_id = fields.Many2one('product.product', string='Product', + required=True, + domain=[('is_pack', '=', False)], + help='The specific product being referenced.') + product_tmpl_id = fields.Many2one('product.template', string='Product', + help='The template of the product.') + price = fields.Float(string='Price', compute='compute_price', store=True, + help='The calculated price of the product.') + quantity = fields.Integer(string='Quantity', default=1, + help='The quantity of the product.') + qty_available = fields.Float(string='Quantity Available', + compute='compute_quantity_of_product', + store=True, readonly=False, + help='The available quantity of the product.') + total_available_quantity = fields.Float(string='Total Quantity', + help='The total available ' + 'quantity of the selected ' + 'product.') + + @api.depends('product_id', 'total_available_quantity', + 'product_id.qty_available') + def compute_quantity_of_product(self): + """Compute the available quantity for each record based on the + product and location. """ + for record in self: + location_id = record.product_tmpl_id.pack_location_id + if location_id: + stock_quant = self.env['stock.quant'].search( + [('product_id', '=', record.product_id.id), + ('location_id', '=', location_id.id)]) + if stock_quant: + record.qty_available = stock_quant.quantity + else: + record.qty_available = False + else: + record.qty_available = False + + @api.depends('product_id', 'quantity') + def compute_price(self): + """ Compute the price for each record based on the product and quantity. + """ + for record in self: + record.price = record.product_id.lst_price * record.quantity + + @api.onchange('quantity') + def set_price(self): + """ Update the price field when the quantity changes.""" + self.price = self.product_id.lst_price * self.quantity + + @api.constrains('quantity') + def _check_positive_qty(self): + """Ensure that the quantity is always positive.Raises a validation + error if any of the records have a negative quantity.""" + if any([ml.quantity < 0 for ml in self]): + raise ValidationError(_('You can not enter negative quantities.')) diff --git a/product_combo_pack/models/product_template.py b/product_combo_pack/models/product_template.py new file mode 100755 index 000000000..540b8aea8 --- /dev/null +++ b/product_combo_pack/models/product_template.py @@ -0,0 +1,163 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri v (odoo@cybrosys.com) +# +# 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, _ +from odoo.exceptions import UserError, ValidationError + + +class ProductTemplate(models.Model): + """Model for extending the product template to include + pack-related fields.""" + _inherit = 'product.template' + + def default_pack_location(self): + """ Get the default pack location for the current company.""" + company_user = self.env.company + warehouse = self.env['stock.warehouse'].search([( + 'company_id', '=', company_user.id)], limit=1) + if warehouse: + return warehouse.lot_stock_id.id + + is_pack = fields.Boolean(string='Is a Pack', help='Indicates whether the' + 'product is a pack or ' + 'not.') + pack_price = fields.Integer(string="Pack Price", compute='set_pack_price', + store=True, + help='The calculated price of the pack.') + pack_products_ids = fields.One2many('pack.products', 'product_tmpl_id', + string='Pack Products', copy=True, + help='The list of products included ' + 'in the pack.') + pack_quantity = fields.Integer(string='Pack Quantity', + help='The quantity of the product' + ' in the pack.') + pack_location_id = fields.Many2one('stock.location', + domain=[('usage', 'in', + ['internal', 'transit'])], + default=default_pack_location, + string='Pack Location', + help='The default location for the pack.') + + @api.onchange('is_pack') + def _onchange_is_pack(self): + """Method _onchange_is_pack to trigger when any change in the + field is_pack""" + if self.is_pack: + self.invoice_policy = 'delivery' + + @api.constrains('invoice_policy') + def _check_invoice_policy(self): + """Method _check_invoice_policy to whether the product is a pack + product""" + if self.invoice_policy != 'delivery' and self.is_pack: + raise ValidationError( + _("Pack products invoicing policy should be in delivered " + "quantities")) + + @api.depends('pack_products_ids', 'pack_products_ids.price') + def set_pack_price(self): + """Compute the pack price based on the prices of the pack products.""" + price = 0 + for record in self: + for line in record.pack_products_ids: + price = price + line.price + record.pack_price = price + + @api.model + def create(self, values): + """Override the create method to add validation for pack products.""" + if values.get('is_pack', False): + if not values.get('pack_products_ids', []): + raise UserError(_( + 'You need to add least one product in the Pack...!')) + if values.get('type', False) == 'service': + raise UserError( + _('You cannot define a pack product as a service..!')) + if values.get('invoice_policy') == 'order': + values['invoice_policy'] = 'delivery' + return super().create(values) + + def write(self, values): + """Override the write method to add validation for pack products.""" + super().write(values) + for rec in self: + if rec.is_pack: + if not rec.pack_products_ids: + raise UserError(_( + 'You need to add at least one product in the Pack...!')) + if rec.type == 'service': + raise UserError( + _('You cannot define a pack product as a service..!')) + + def update_price_product(self): + """Update the list price of the product with the pack price.""" + self.list_price = self.pack_price + + + def get_quantity(self): + """Calculate the pack quantity based on the availability of + pack products.""" + for pack in self: + max_packs_list = [] + for pack_product in pack.pack_products_ids: + if pack_product.quantity > 0: + max_packs = pack_product.qty_available // pack_product.quantity + max_packs_list.append(max_packs) + # # Set the max packs as the minimum value in the list + pack.pack_quantity = min(max_packs_list) if max_packs_list else 0 + + def update_quantity(self): + """Update the pack quantity in the specified pack location.""" + company_user = self.env.company + product_id = len( + self.product_variant_ids) == 1 and self.product_variant_id.id + location_id = self.pack_location_id.id + if not location_id: + warehouse = self.env['stock.warehouse'].search([( + 'company_id', '=', company_user.id)], limit=1) + location_id = warehouse.lot_stock_id.id + if not location_id: + raise UserError(_( + 'You need to select the location to update the pack ' + 'quantity...!')) + existing_quantity = self.env['stock.quant'].search([('product_id', '=', product_id)], limit=1) + if not existing_quantity: + self.env['stock.quant'].with_context(inventory_mode=True).sudo().create( + { + 'product_id': product_id, + 'location_id': location_id, + 'quantity': self.pack_quantity, + }) + else: + existing_quantity.quantity = self.pack_quantity + + @api.onchange('pack_location_id') + def change_quantity_based_on_location(self): + """Update the total available quantity of pack products based + on the selected pack location.""" + for line in self.pack_products_ids: + stock_quant = self.env['stock.quant'].search( + [('product_id', '=', line.product_id.id), ( + 'location_id', '=', self.pack_location_id.id)]) + if stock_quant: + line.total_available_quantity = stock_quant.quantity + else: + line.total_available_quantity = stock_quant.quantity diff --git a/product_combo_pack/models/sale_order.py b/product_combo_pack/models/sale_order.py new file mode 100755 index 000000000..bb639275f --- /dev/null +++ b/product_combo_pack/models/sale_order.py @@ -0,0 +1,118 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri v (odoo@cybrosys.com) +# +# 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 +from odoo.fields import Command + + +class SaleOrder(models.Model): + """Model for extending the sale order to include a selection of packs.""" + _inherit = 'sale.order' + + product_pack_ids = fields.Many2many( + 'product.product', + 'sale_order_product_pack_rel', + string='Select Pack', + domain=[('is_pack', '=', True)], + help='The selected pack product for the sale order.' + ) + + @api.onchange('product_pack_ids') + def onchange_product_pack_ids(self): + """Perform actions when the selected pack product changes.""" + if self.product_pack_ids: + new_order_lines = [] + for rec in self.product_pack_ids: + product_already_added = any( + line.product_id.id == rec._origin.id for line in + self.order_line) + if not product_already_added: + new_order_lines.append((0, 0, { + 'product_id': rec.id, + 'name': rec.name, + 'product_uom_qty': 1, + 'price_unit': rec.pack_price, + })) + self.order_line = new_order_lines + elif not self.product_pack_ids: + self.order_line = [(5, 0, 0)] + + def action_confirm(self): + """Override the action_confirm method to create stock moves + for pack products.""" + super().action_confirm() + for line in self.order_line: + if line.product_id.is_pack: + for record in line.product_id.pack_products_ids: + for rec in self.picking_ids: + move = rec.move_ids.create({ + 'name': record.product_id.name, + 'product_id': record.product_id.id, + 'product_uom_qty': record.quantity * line.product_uom_qty, + 'product_uom': record.product_id.uom_id.id, + 'picking_id': rec.id, + 'location_id': rec.location_id.id, + 'location_dest_id': rec.location_dest_id.id, + }) + move._action_confirm() + + +class SaleOrderLine(models.Model): + """Inherit the model sale.order.line to add extra functionality and + fields""" + _inherit = 'sale.order.line' + + def _prepare_invoice_line(self, **optional_values): + """Prepare the values to create the new invoice line for a sales order line. + + :param optional_values: any parameter that should be added to the returned invoice line + :rtype: dict + """ + self.ensure_one() + res = { + 'display_type': self.display_type or 'product', + 'sequence': self.sequence, + 'name': self.name, + 'product_id': self.product_id.id, + 'product_uom_id': self.product_uom.id, + 'quantity': self.qty_to_invoice, + 'discount': self.discount, + 'price_unit': 0 if self.product_id.is_pack == True else self.price_unit, + 'tax_ids': [Command.set(self.tax_id.ids)], + 'sale_line_ids': [Command.link(self.id)], + 'is_downpayment': self.is_downpayment, + } + analytic_account_id = self.order_id.analytic_account_id.id + if self.analytic_distribution and not self.display_type: + res['analytic_distribution'] = self.analytic_distribution + if analytic_account_id and not self.display_type: + analytic_account_id = str(analytic_account_id) + if 'analytic_distribution' in res: + res['analytic_distribution'][analytic_account_id] = res[ + 'analytic_distribution'].get( + analytic_account_id, 0) + 100 + else: + res['analytic_distribution'] = {analytic_account_id: 100} + if optional_values: + res.update(optional_values) + if self.display_type: + res['account_id'] = False + return res diff --git a/product_combo_pack/security/ir.model.access.csv b/product_combo_pack/security/ir.model.access.csv new file mode 100755 index 000000000..39ab588a4 --- /dev/null +++ b/product_combo_pack/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_pack_products_user,access.pack.products.users,model_pack_products,base.group_user,1,1,1,1 diff --git a/product_combo_pack/static/description/assets/cybro-icon.png b/product_combo_pack/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/product_combo_pack/static/description/assets/cybro-icon.png differ diff --git a/product_combo_pack/static/description/assets/cybro-odoo.png b/product_combo_pack/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/product_combo_pack/static/description/assets/cybro-odoo.png differ diff --git a/product_combo_pack/static/description/assets/h2.png b/product_combo_pack/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/product_combo_pack/static/description/assets/h2.png differ diff --git a/product_combo_pack/static/description/assets/icons/arrows-repeat.svg b/product_combo_pack/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-1.png b/product_combo_pack/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/banner-1.png differ diff --git a/product_combo_pack/static/description/assets/icons/banner-2.svg b/product_combo_pack/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-bg.png b/product_combo_pack/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/banner-bg.png differ diff --git a/product_combo_pack/static/description/assets/icons/banner-bg.svg b/product_combo_pack/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-call.svg b/product_combo_pack/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-mail.svg b/product_combo_pack/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-pattern.svg b/product_combo_pack/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/banner-promo.svg b/product_combo_pack/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/brand-pair.svg b/product_combo_pack/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/check.png b/product_combo_pack/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/check.png differ diff --git a/product_combo_pack/static/description/assets/icons/chevron.png b/product_combo_pack/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/chevron.png differ diff --git a/product_combo_pack/static/description/assets/icons/close-icon.svg b/product_combo_pack/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/product_combo_pack/static/description/assets/icons/cogs.png b/product_combo_pack/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/cogs.png differ diff --git a/product_combo_pack/static/description/assets/icons/collabarate-icon.svg b/product_combo_pack/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/product_combo_pack/static/description/assets/icons/consultation.png b/product_combo_pack/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/consultation.png differ diff --git a/product_combo_pack/static/description/assets/icons/cybro-logo.png b/product_combo_pack/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/cybro-logo.png differ diff --git a/product_combo_pack/static/description/assets/icons/down.svg b/product_combo_pack/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/product_combo_pack/static/description/assets/icons/ecom-black.png b/product_combo_pack/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/ecom-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/education-black.png b/product_combo_pack/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/education-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/faq.png b/product_combo_pack/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/faq.png differ diff --git a/product_combo_pack/static/description/assets/icons/feature-icon.svg b/product_combo_pack/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/feature.png b/product_combo_pack/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/feature.png differ diff --git a/product_combo_pack/static/description/assets/icons/gear.svg b/product_combo_pack/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/hero.gif b/product_combo_pack/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..2cf6ac218 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/hero.gif differ diff --git a/product_combo_pack/static/description/assets/icons/hire-odoo.svg b/product_combo_pack/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/hotel-black.png b/product_combo_pack/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/hotel-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/license.png b/product_combo_pack/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/license.png differ diff --git a/product_combo_pack/static/description/assets/icons/life-ring-icon.svg b/product_combo_pack/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/lifebuoy.png b/product_combo_pack/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/lifebuoy.png differ diff --git a/product_combo_pack/static/description/assets/icons/mail.svg b/product_combo_pack/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/product_combo_pack/static/description/assets/icons/manufacturing-black.png b/product_combo_pack/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/notes.png b/product_combo_pack/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/notes.png differ diff --git a/product_combo_pack/static/description/assets/icons/notification icon.svg b/product_combo_pack/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/odoo-consultancy.svg b/product_combo_pack/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/product_combo_pack/static/description/assets/icons/odoo-licencing.svg b/product_combo_pack/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/product_combo_pack/static/description/assets/icons/odoo-logo.png b/product_combo_pack/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/odoo-logo.png differ diff --git a/product_combo_pack/static/description/assets/icons/patter.svg b/product_combo_pack/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/pattern1.png b/product_combo_pack/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/pattern1.png differ diff --git a/product_combo_pack/static/description/assets/icons/pos-black.png b/product_combo_pack/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/pos-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/puzzle-piece-icon.svg b/product_combo_pack/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/puzzle.png b/product_combo_pack/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/puzzle.png differ diff --git a/product_combo_pack/static/description/assets/icons/replace-icon.svg b/product_combo_pack/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/restaurant-black.png b/product_combo_pack/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/restaurant-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/screenshot-main.png b/product_combo_pack/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/screenshot-main.png differ diff --git a/product_combo_pack/static/description/assets/icons/screenshot.png b/product_combo_pack/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/screenshot.png differ diff --git a/product_combo_pack/static/description/assets/icons/service-black.png b/product_combo_pack/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/service-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/skype-fill.svg b/product_combo_pack/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/skype.png b/product_combo_pack/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/skype.png differ diff --git a/product_combo_pack/static/description/assets/icons/skype.svg b/product_combo_pack/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/product_combo_pack/static/description/assets/icons/star-1.svg b/product_combo_pack/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/star-2.svg b/product_combo_pack/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/support.png b/product_combo_pack/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/support.png differ diff --git a/product_combo_pack/static/description/assets/icons/test-1 - Copy.png b/product_combo_pack/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/test-1 - Copy.png differ diff --git a/product_combo_pack/static/description/assets/icons/test-1.png b/product_combo_pack/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/test-1.png differ diff --git a/product_combo_pack/static/description/assets/icons/test-2.png b/product_combo_pack/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/test-2.png differ diff --git a/product_combo_pack/static/description/assets/icons/trading-black.png b/product_combo_pack/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/trading-black.png differ diff --git a/product_combo_pack/static/description/assets/icons/training.png b/product_combo_pack/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/training.png differ diff --git a/product_combo_pack/static/description/assets/icons/translate.svg b/product_combo_pack/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/update.png b/product_combo_pack/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/update.png differ diff --git a/product_combo_pack/static/description/assets/icons/user.png b/product_combo_pack/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/user.png differ diff --git a/product_combo_pack/static/description/assets/icons/video.png b/product_combo_pack/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/video.png differ diff --git a/product_combo_pack/static/description/assets/icons/whatsapp.png b/product_combo_pack/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/whatsapp.png differ diff --git a/product_combo_pack/static/description/assets/icons/wrench-icon.svg b/product_combo_pack/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/product_combo_pack/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/product_combo_pack/static/description/assets/icons/wrench.png b/product_combo_pack/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_combo_pack/static/description/assets/icons/wrench.png differ diff --git a/product_combo_pack/static/description/assets/modules/1.gif b/product_combo_pack/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/1.gif differ diff --git a/product_combo_pack/static/description/assets/modules/2.gif b/product_combo_pack/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/2.gif differ diff --git a/product_combo_pack/static/description/assets/modules/3.png b/product_combo_pack/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/3.png differ diff --git a/product_combo_pack/static/description/assets/modules/4.png b/product_combo_pack/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/4.png differ diff --git a/product_combo_pack/static/description/assets/modules/5.png b/product_combo_pack/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/5.png differ diff --git a/product_combo_pack/static/description/assets/modules/6.jpg b/product_combo_pack/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/product_combo_pack/static/description/assets/modules/6.jpg differ diff --git a/product_combo_pack/static/description/assets/screenshots/1.png b/product_combo_pack/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..bdcf4833e Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/1.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-1.png b/product_combo_pack/static/description/assets/screenshots/combo-1.png new file mode 100644 index 000000000..b9cae96a8 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-1.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-10.png b/product_combo_pack/static/description/assets/screenshots/combo-10.png new file mode 100644 index 000000000..700a76936 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-10.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-11.png b/product_combo_pack/static/description/assets/screenshots/combo-11.png new file mode 100644 index 000000000..7dcb03172 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-11.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-2.png b/product_combo_pack/static/description/assets/screenshots/combo-2.png new file mode 100644 index 000000000..764b1dbe1 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-2.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-3.png b/product_combo_pack/static/description/assets/screenshots/combo-3.png new file mode 100644 index 000000000..18a73a3ec Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-3.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-4.png b/product_combo_pack/static/description/assets/screenshots/combo-4.png new file mode 100644 index 000000000..5f87cdbaa Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-4.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-5.png b/product_combo_pack/static/description/assets/screenshots/combo-5.png new file mode 100644 index 000000000..e41a3651e Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-5.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-6.png b/product_combo_pack/static/description/assets/screenshots/combo-6.png new file mode 100644 index 000000000..43ea1d257 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-6.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-7.png b/product_combo_pack/static/description/assets/screenshots/combo-7.png new file mode 100644 index 000000000..9cb479669 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-7.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-8.png b/product_combo_pack/static/description/assets/screenshots/combo-8.png new file mode 100644 index 000000000..e14027647 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-8.png differ diff --git a/product_combo_pack/static/description/assets/screenshots/combo-9.png b/product_combo_pack/static/description/assets/screenshots/combo-9.png new file mode 100644 index 000000000..c0ee64852 Binary files /dev/null and b/product_combo_pack/static/description/assets/screenshots/combo-9.png differ diff --git a/product_combo_pack/static/description/assets/y18.jpg b/product_combo_pack/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/product_combo_pack/static/description/assets/y18.jpg differ diff --git a/product_combo_pack/static/description/banner.png b/product_combo_pack/static/description/banner.png new file mode 100644 index 000000000..95e13f1c2 Binary files /dev/null and b/product_combo_pack/static/description/banner.png differ diff --git a/product_combo_pack/static/description/icon.png b/product_combo_pack/static/description/icon.png new file mode 100644 index 000000000..02248b70f Binary files /dev/null and b/product_combo_pack/static/description/icon.png differ diff --git a/product_combo_pack/static/description/index.html b/product_combo_pack/static/description/index.html new file mode 100644 index 000000000..9cdc8e71b --- /dev/null +++ b/product_combo_pack/static/description/index.html @@ -0,0 +1,1268 @@ + + + + + + Product Pack + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+
+

+ Manage Products as Pack. +

+

Product Pack

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

Key + Highlights

+
+
+
+
+ +
+
+ Selling products in a pack is a great way to raise average sales price per product. +
+
+
+
+
+
+ +
+
+ + To serve customers with products that make their lives easier. +
+
+
+
+
+
+ +
+
+ To leverage current products into new and different ones. +
+ +
+
+
+
+
+ +
+
+ They are profitable for smaller businesses as well as large ones. +
+
+
+
+
+
+
+
+ Product Pack +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Product Pack Menu. + + +

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

+ + Check if the product is a pack. The "Invoicing Policy" of a product as a pack should in "Delivered quantities" +

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

+ Product Pack Page for Consumable(if not managing the stock of pack). + + +

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

+ Product Pack Page for Storable. + + +

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

+ Adding products into the pack. + +

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

+ Updating the sales price by clicking the Update Price Button. + +

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

+ Sales price updated + +

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

+ Update pack quantity by clicking the Get Quantity Button. + +

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

+ Updating the pack location quantity by clicking the Update Quantity +

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

+ Adding Pack to sale order. + +

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

+ Delivery of pack. + +

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

+ Create a Product Pack Easily.

+
+ +
+
+
+
+
+
+ +
+

+ Manage the stock of the Product.

+
+
+
+
+
+
+
+ +
+

+ Compute the Price of the Pack.

+
+
+
+
+
+
+
+ +
+

+ Compute the Quantity of the Pack with respect to the + quantity of Pack + items.

+
+
+ +
+
+
+
+
+ +
+

+ Update the quantity of pack easily.

+
+
+
+
+
+
+
+ +
+

+ Adding Pack into Sale order Easily.

+
+
+
+
+
+
+
+ +
+

+ Filter Pack from Products.

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

+ Use the "Product Pack" menu in the products' + menu. +

+
+
+ +
+ +
+

+ While adding the product in the pack + automatically the price + is updated. +

+
+
+ +
+ +
+

+ There is a field for add pack into the sale + order +

+
+
+ +
+ +
+

+ We can filter the product pack from the products +

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

+ Latest Release 18.0.1.0.0 +

+ + 26th September, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ + + + +
+
+ .... +
+
+ + + +
+ +
+
+
+
+ + + + + + diff --git a/product_combo_pack/views/product_product_views.xml b/product_combo_pack/views/product_product_views.xml new file mode 100644 index 000000000..b8209e029 --- /dev/null +++ b/product_combo_pack/views/product_product_views.xml @@ -0,0 +1,20 @@ + + + + + + product.product.view.form.inherit.product.combo.pack + + product.product + + + + +
+ +
+
+
+
+
diff --git a/product_combo_pack/views/product_template_views.xml b/product_combo_pack/views/product_template_views.xml new file mode 100755 index 000000000..6a48ff19d --- /dev/null +++ b/product_combo_pack/views/product_template_views.xml @@ -0,0 +1,101 @@ + + + + + + product.template.view.form.inherit.product.combo.pack + + product.template + + + +
+ +
+
+ + is_pack == True + + + + + + + + + + + + + + + + + + + + + +
+
+ + + Product Pack + ir.actions.act_window + product.template + kanban,form + [('is_pack','=',True)] + {'default_is_pack' : True} + +

+ There is no product pack to show...! +

+
+
+ + + + product.template.view.search.inherit.product.combo.pack + + product.template + + + + + + + + + +
diff --git a/product_combo_pack/views/sale_order_views.xml b/product_combo_pack/views/sale_order_views.xml new file mode 100755 index 000000000..66cfcc869 --- /dev/null +++ b/product_combo_pack/views/sale_order_views.xml @@ -0,0 +1,23 @@ + + + + + sale.order.view.form.inherit.product.combo.pack + + sale.order + + + + + + + + [('sale_ok', '=', True), ('is_pack', '=', False), + '|', ('company_id', '=', False), ('company_id', '=', parent.company_id)] + + + + + +