diff --git a/purchase_product_configurator/README.rst b/purchase_product_configurator/README.rst
new file mode 100644
index 000000000..4f787876d
--- /dev/null
+++ b/purchase_product_configurator/README.rst
@@ -0,0 +1,39 @@
+.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
+ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+ :alt: License: AGPL-3
+
+Purchase Product Configurator
+=============================
+The module adds the product configurator feature to the purchase module,
+which is only present in sale module by default.
+
+Configuration
+=============
+* No additional configurations are required
+* `Cybrosys Techno Solutions `__
+
+Credits
+-------
+* Developers: (v16) Ayisha Sumayya K, Vivek , 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/purchase_product_configurator/__init__.py b/purchase_product_configurator/__init__.py
new file mode 100644
index 000000000..c11d9aacb
--- /dev/null
+++ b/purchase_product_configurator/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: Ayisha Sumayya K, Vivek (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (AGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from . import controllers
+from . import models
diff --git a/purchase_product_configurator/__manifest__.py b/purchase_product_configurator/__manifest__.py
new file mode 100644
index 000000000..ca93442a3
--- /dev/null
+++ b/purchase_product_configurator/__manifest__.py
@@ -0,0 +1,51 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: Ayisha Sumayya K, Vivek (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# 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 LESSER GENERAL PUBLIC LICENSE (AGPL 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': 'Purchase Product Configurator',
+ 'version': '16.0.1.0.0',
+ 'category': 'Purchases',
+ 'summary': """Helps to configure the product in purchase order line""",
+ 'description': """The module helps you to override purchase_order_line"""
+ """to configurate product in RFQ """,
+ 'author': 'Cybrosys Techno Solutions',
+ 'company': 'Cybrosys Techno Solutions',
+ 'maintainer': 'Cybrosys Techno Solutions',
+ 'website': 'https://www.cybrosys.com',
+ 'images': ['static/description/banner.jpg'],
+ 'license': 'AGPL-3',
+ 'depends': ['purchase', 'sale', 'base', 'purchase_product_matrix'],
+ 'data': [
+ 'views/optional_product_template.xml',
+ 'views/purchase_order_views.xml',
+ 'views/product_template_views.xml'
+ ],
+ 'assets': {
+ 'web.assets_backend': [
+ 'purchase_product_configurator/static/src/js/basic_model.js',
+ 'purchase_product_configurator/static/src/js/product_configurator.js',
+ 'purchase_product_configurator/static/src/js/purchase_product_field.js',
+ ],
+ },
+ 'installable': True,
+ 'auto_install': False,
+ 'application': False
+}
diff --git a/purchase_product_configurator/controllers/__init__.py b/purchase_product_configurator/controllers/__init__.py
new file mode 100644
index 000000000..7a7529ac6
--- /dev/null
+++ b/purchase_product_configurator/controllers/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies().
+# Author: Ayisha Sumayya K, Vivek (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 purchase_product_configurator
diff --git a/purchase_product_configurator/controllers/purchase_product_configurator.py b/purchase_product_configurator/controllers/purchase_product_configurator.py
new file mode 100644
index 000000000..78b67dca6
--- /dev/null
+++ b/purchase_product_configurator/controllers/purchase_product_configurator.py
@@ -0,0 +1,142 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies().
+# Author: Ayisha Sumayya K, Vivek (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 http
+from odoo.http import request
+
+
+class ProductConfiguratorController(http.Controller):
+ """
+ Controller for handling product configuration in the purchase module.
+ """
+ @http.route(['/purchase_product_configurator/configure'], type='json',
+ auth="user", methods=['POST'])
+ def configure(self, product_template_id, pricelist_id, **kw):
+ """
+ Configure a product with the specified template and pricelist.
+ """
+ add_qty = float(kw.get('add_qty', 1))
+ product_template = request.env['product.template'].browse(
+ int(product_template_id))
+ pricelist = self._get_pricelist(pricelist_id)
+ product_combination = False
+ attribute_value_ids = set(
+ kw.get('product_template_attribute_value_ids', []))
+ attribute_value_ids |= set(
+ kw.get('product_no_variant_attribute_value_ids', []))
+ if attribute_value_ids:
+ product_combination = request.env[
+ 'product.template.attribute.value'].browse(attribute_value_ids)
+ if pricelist:
+ product_template = product_template.with_context(
+ pricelist=pricelist.id, partner=request.env.user.partner_id)
+ return request.env['ir.ui.view']._render_template(
+ "purchase_product_configurator.configure",
+ {
+ 'product': product_template,
+ 'pricelist': pricelist,
+ 'add_qty': add_qty,
+ 'product_combination': product_combination
+ },
+ )
+
+ @http.route(['/purchase_product_configurator/show_advanced_configurator'],
+ type='json', auth="user", methods=['POST'])
+ def show_advanced_configurator(self, product_id, variant_values,
+ pricelist_id, **kw):
+ """
+ Show the advanced configurator for a product with the specified ID,
+ variant values, and pricelist.
+ """
+ pricelist = self._get_pricelist(pricelist_id)
+ return self._show_advanced_configurator(product_id, variant_values,
+ pricelist, False, **kw)
+
+ @http.route(['/purchase_product_configurator/optional_product_items'],
+ type='json', auth="user", methods=['POST'])
+ def optional_product_items(self, product_id, pricelist_id, **kw):
+ """
+ Get the optional product items for the specified product ID and
+ pricelist.
+ """
+ pricelist = self._get_pricelist(pricelist_id)
+ return self._optional_product_items(product_id, pricelist, **kw)
+
+ def _optional_product_items(self, product_id, pricelist, **kw):
+ """
+ Helper method to get the optional product items for the specified
+ product ID and pricelist.
+ """
+ add_qty = float(kw.get('add_qty', 1))
+ product = request.env['product.product'].browse(int(product_id))
+ parent_combination = product.product_template_attribute_value_ids
+ if product.env.context.get('no_variant_attribute_values'):
+ parent_combination |= product.env.context.get(
+ 'no_variant_attribute_values')
+ return request.env['ir.ui.view']._render_template(
+ "purchase_product_configurator.optional_product_items", {
+ 'product': product,
+ 'parent_name': product.name,
+ 'parent_combination': parent_combination,
+ 'pricelist': pricelist,
+ 'add_qty': add_qty,
+ })
+
+ def _show_advanced_configurator(self, product_id, variant_values, pricelist,
+ handle_stock, **kw):
+ """
+ Helper method to show the advanced configurator for a product with the
+ specified ID, variant values, pricelist, and other parameters.
+ """
+ product = request.env['product.product'].browse(int(product_id))
+ combination = request.env['product.template.attribute.value'].browse(
+ variant_values)
+ add_qty = float(kw.get('add_qty', 1))
+
+ no_variant_attribute_values = combination.filtered(
+ lambda
+ product_template_attribute_value:
+ product_template_attribute_value.attribute_id.
+ create_variant == 'no_variant'
+ )
+ if no_variant_attribute_values:
+ product = product.with_context(
+ no_variant_attribute_values=no_variant_attribute_values)
+ return request.env['ir.ui.view']._render_template(
+ "purchase_product_configurator.purchase_optional_products_modal", {
+ 'product': product,
+ 'combination': combination,
+ 'add_qty': add_qty,
+ 'parent_name': product.name,
+ 'variant_values': variant_values,
+ 'pricelist': pricelist,
+ 'handle_stock': handle_stock,
+ 'already_configured': kw.get("already_configured", False),
+ 'mode': kw.get('mode', 'add'),
+ 'product_custom_attribute_values': kw.get(
+ 'product_custom_attribute_values', None)
+ })
+
+ def _get_pricelist(self, pricelist_id, pricelist_fallback=False):
+ """
+ Helper method to get the pricelist based on the specified pricelist ID.
+ """
+ return request.env['product.pricelist'].browse(int(pricelist_id or 0))
diff --git a/purchase_product_configurator/doc/RELEASE_NOTES.md b/purchase_product_configurator/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..debdeefca
--- /dev/null
+++ b/purchase_product_configurator/doc/RELEASE_NOTES.md
@@ -0,0 +1,8 @@
+## Module
+
+#### 23.07.2023
+#### Version 16.0.1.0.0
+#### ADD
+- Initial Commit for Purchase Product Configurator.
+
+
diff --git a/purchase_product_configurator/models/__init__.py b/purchase_product_configurator/models/__init__.py
new file mode 100644
index 000000000..22d9c19d1
--- /dev/null
+++ b/purchase_product_configurator/models/__init__.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies()
+# Author: Ayisha Sumayya K, Vivek (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# 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 LESSER GENERAL PUBLIC LICENSE (AGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (AGPL v3) along with this program.
+# If not, see .
+#
+#############################################################################
+from . import product_attribute
+from . import product_template
+from . import purchase_order_line
diff --git a/purchase_product_configurator/models/product_attribute.py b/purchase_product_configurator/models/product_attribute.py
new file mode 100644
index 000000000..d859dd270
--- /dev/null
+++ b/purchase_product_configurator/models/product_attribute.py
@@ -0,0 +1,35 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies().
+# Author: Ayisha Sumayya K, Vivek (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 ProductAttributeCustomValue(models.Model):
+ """
+ Model for representing custom attribute values for a purchase order line.
+ Inherits from 'product.attribute.custom.value' model.
+ """
+ _inherit = "product.attribute.custom.value"
+
+ purchase_order_line_id = fields.Many2one('purchase.order.line',
+ string="Purchase Order Line",
+ required=True, ondelete='cascade',
+ help="purchase order lines")
diff --git a/purchase_product_configurator/models/product_template.py b/purchase_product_configurator/models/product_template.py
new file mode 100644
index 000000000..e20c1d884
--- /dev/null
+++ b/purchase_product_configurator/models/product_template.py
@@ -0,0 +1,88 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies().
+# Author: Ayisha Sumayya K, Vivek (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 api, fields, models
+
+
+class ProductTemplate(models.Model):
+ """
+ Model for representing product templates with additional fields and methods.
+ Inherits from 'product.template' model.
+ """
+ _inherit = 'product.template'
+
+ product_config_mode = fields.Selection(selection=[('configurator',
+ "Product Configurator"),
+ ('matrix',
+ "Order Grid Entry")],
+ string="Add product mode",
+ default='configurator',
+ help="Configurator: choose "
+ "attribute values to add "
+ "the matching product variant"
+ " to the order. "
+ "\nGrid: add several variants"
+ " at once from the grid "
+ "of attribute values")
+
+ @api.depends('attribute_line_ids.value_ids.is_custom',
+ 'attribute_line_ids.attribute_id.create_variant')
+ def _compute_has_configurable_attributes(self):
+ """ A product is considered configurable if:
+ - It has dynamic attributes
+ - It has any attribute line with at least 2 attribute values configured
+ - It has at least one custom attribute value """
+ for product in self:
+ product.has_configurable_attributes = (
+ any(attribute.create_variant == 'dynamic' for attribute in
+ product.attribute_line_ids.attribute_id)
+ or any(len(attribute_line_id.value_ids) >=
+ 2 for attribute_line_id in
+ product.attribute_line_ids)
+ or any(attribute_value.is_custom for attribute_value in
+ product.attribute_line_ids.value_ids)
+ )
+
+ def get_single_product_variant(self):
+ """ Method used by the product configurator to check if the product is
+ configurable or not.
+
+ We need to open the product configurator if the product:
+ - is configurable (see has_configurable_attributes)
+ - has optional products """
+ res = super().get_single_product_variant()
+ if res.get('product_id', False):
+ has_optional_products = False
+ for optional_product in \
+ self.product_variant_id.optional_product_ids:
+ if optional_product.has_dynamic_attributes() or \
+ optional_product._get_possible_variants(
+ self.product_variant_id.
+ product_template_attribute_value_ids
+ ):
+ has_optional_products = True
+ break
+ res.update({'has_optional_products': has_optional_products})
+ if self.has_configurable_attributes:
+ res['mode'] = self.product_config_mode
+ else:
+ res['mode'] = 'configurator'
+ return res
diff --git a/purchase_product_configurator/models/purchase_order_line.py b/purchase_product_configurator/models/purchase_order_line.py
new file mode 100644
index 000000000..d834392a6
--- /dev/null
+++ b/purchase_product_configurator/models/purchase_order_line.py
@@ -0,0 +1,64 @@
+# -*- coding: utf-8 -*-
+#############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2023-TODAY Cybrosys Technologies().
+# Author: Ayisha Sumayya K, Vivek (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 api, fields, models
+
+
+class PurchaseOrderLine(models.Model):
+ """
+ Model for representing purchase order lines with additional fields and
+ methods.
+ Inherits from 'purchase.order.line' model.
+ """
+ _inherit = 'purchase.order.line'
+
+ product_config_mode = fields.Selection(
+ related='product_template_id.product_config_mode',
+ depends=['product_template_id'],
+ help="product configuration mode")
+ product_custom_attribute_value_ids = fields.One2many(
+ comodel_name='product.attribute.custom.value',
+ inverse_name='purchase_order_line_id',
+ string="Custom Values",
+ compute='_compute_custom_attribute_values',
+ help="product custom attribute values",
+ store=True, readonly=False, precompute=True, copy=True)
+
+ @api.depends('product_id')
+ def _compute_custom_attribute_values(self):
+ """
+ Checks if the product has custom attribute values associated with it,
+ and if those values belong to the valid values of the product template.
+ """
+ for line in self:
+ if not line.product_id:
+ line.product_custom_attribute_value_ids = False
+ continue
+ if not line.product_custom_attribute_value_ids:
+ continue
+ valid_values = line.product_id.product_tmpl_id. \
+ valid_product_template_attribute_line_ids. \
+ product_template_value_ids
+ # remove the is_custom values that don't belong to this template
+ for attribute in line.product_custom_attribute_value_ids:
+ if attribute.custom_product_template_attribute_value_id not in \
+ valid_values:
+ line.product_custom_attribute_value_ids -= attribute
diff --git a/purchase_product_configurator/static/description/assets/icons/check.png b/purchase_product_configurator/static/description/assets/icons/check.png
new file mode 100644
index 000000000..c8e85f51d
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/check.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/chevron.png b/purchase_product_configurator/static/description/assets/icons/chevron.png
new file mode 100644
index 000000000..2089293d6
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/chevron.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/cogs.png b/purchase_product_configurator/static/description/assets/icons/cogs.png
new file mode 100644
index 000000000..95d0bad62
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/cogs.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/consultation.png b/purchase_product_configurator/static/description/assets/icons/consultation.png
new file mode 100644
index 000000000..8319d4baa
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/consultation.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/ecom-black.png b/purchase_product_configurator/static/description/assets/icons/ecom-black.png
new file mode 100644
index 000000000..a9385ff13
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/ecom-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/education-black.png b/purchase_product_configurator/static/description/assets/icons/education-black.png
new file mode 100644
index 000000000..3eb09b27b
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/education-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/hotel-black.png b/purchase_product_configurator/static/description/assets/icons/hotel-black.png
new file mode 100644
index 000000000..130f613be
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/hotel-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/license.png b/purchase_product_configurator/static/description/assets/icons/license.png
new file mode 100644
index 000000000..a5869797e
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/license.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/lifebuoy.png b/purchase_product_configurator/static/description/assets/icons/lifebuoy.png
new file mode 100644
index 000000000..658d56ccc
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/lifebuoy.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/manufacturing-black.png b/purchase_product_configurator/static/description/assets/icons/manufacturing-black.png
new file mode 100644
index 000000000..697eb0e9f
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/manufacturing-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/pos-black.png b/purchase_product_configurator/static/description/assets/icons/pos-black.png
new file mode 100644
index 000000000..97c0f90c1
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/pos-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/puzzle.png b/purchase_product_configurator/static/description/assets/icons/puzzle.png
new file mode 100644
index 000000000..65cf854e7
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/puzzle.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/restaurant-black.png b/purchase_product_configurator/static/description/assets/icons/restaurant-black.png
new file mode 100644
index 000000000..4a35eb939
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/restaurant-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/service-black.png b/purchase_product_configurator/static/description/assets/icons/service-black.png
new file mode 100644
index 000000000..301ab51cb
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/service-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/trading-black.png b/purchase_product_configurator/static/description/assets/icons/trading-black.png
new file mode 100644
index 000000000..9398ba2f1
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/trading-black.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/training.png b/purchase_product_configurator/static/description/assets/icons/training.png
new file mode 100644
index 000000000..884ca024d
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/training.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/update.png b/purchase_product_configurator/static/description/assets/icons/update.png
new file mode 100644
index 000000000..ecbc5a01a
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/update.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/user.png b/purchase_product_configurator/static/description/assets/icons/user.png
new file mode 100644
index 000000000..6ffb23d9f
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/user.png differ
diff --git a/purchase_product_configurator/static/description/assets/icons/wrench.png b/purchase_product_configurator/static/description/assets/icons/wrench.png
new file mode 100644
index 000000000..6c04dea0f
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/icons/wrench.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/categories.png b/purchase_product_configurator/static/description/assets/misc/categories.png
new file mode 100644
index 000000000..bedf1e0b1
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/categories.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/check-box.png b/purchase_product_configurator/static/description/assets/misc/check-box.png
new file mode 100644
index 000000000..42caf24b9
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/check-box.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/compass.png b/purchase_product_configurator/static/description/assets/misc/compass.png
new file mode 100644
index 000000000..d5fed8faa
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/compass.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/corporate.png b/purchase_product_configurator/static/description/assets/misc/corporate.png
new file mode 100644
index 000000000..2eb13edbf
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/corporate.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/customer-support.png b/purchase_product_configurator/static/description/assets/misc/customer-support.png
new file mode 100644
index 000000000..79efc72ed
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/customer-support.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/cybrosys-logo.png b/purchase_product_configurator/static/description/assets/misc/cybrosys-logo.png
new file mode 100644
index 000000000..cc3cc0ccf
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/cybrosys-logo.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/features.png b/purchase_product_configurator/static/description/assets/misc/features.png
new file mode 100644
index 000000000..b41769f77
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/features.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/logo.png b/purchase_product_configurator/static/description/assets/misc/logo.png
new file mode 100644
index 000000000..478462d3e
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/logo.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/pictures.png b/purchase_product_configurator/static/description/assets/misc/pictures.png
new file mode 100644
index 000000000..56d255fe9
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/pictures.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/pie-chart.png b/purchase_product_configurator/static/description/assets/misc/pie-chart.png
new file mode 100644
index 000000000..426e05244
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/pie-chart.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/right-arrow.png b/purchase_product_configurator/static/description/assets/misc/right-arrow.png
new file mode 100644
index 000000000..730984a06
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/right-arrow.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/star.png b/purchase_product_configurator/static/description/assets/misc/star.png
new file mode 100644
index 000000000..2eb9ab29f
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/star.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/support.png b/purchase_product_configurator/static/description/assets/misc/support.png
new file mode 100644
index 000000000..4f18b8b82
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/support.png differ
diff --git a/purchase_product_configurator/static/description/assets/misc/whatsapp.png b/purchase_product_configurator/static/description/assets/misc/whatsapp.png
new file mode 100644
index 000000000..d513a5356
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/misc/whatsapp.png differ
diff --git a/purchase_product_configurator/static/description/assets/modules/1.png b/purchase_product_configurator/static/description/assets/modules/1.png
new file mode 100644
index 000000000..359d3e4d6
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/1.png differ
diff --git a/purchase_product_configurator/static/description/assets/modules/2.png b/purchase_product_configurator/static/description/assets/modules/2.png
new file mode 100644
index 000000000..5c56f0bcd
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/2.png differ
diff --git a/purchase_product_configurator/static/description/assets/modules/3.png b/purchase_product_configurator/static/description/assets/modules/3.png
new file mode 100644
index 000000000..c1f30354a
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/3.png differ
diff --git a/purchase_product_configurator/static/description/assets/modules/4.png b/purchase_product_configurator/static/description/assets/modules/4.png
new file mode 100644
index 000000000..33372bdc1
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/4.png differ
diff --git a/purchase_product_configurator/static/description/assets/modules/5.gif b/purchase_product_configurator/static/description/assets/modules/5.gif
new file mode 100644
index 000000000..d0f36b007
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/5.gif differ
diff --git a/purchase_product_configurator/static/description/assets/modules/6.png b/purchase_product_configurator/static/description/assets/modules/6.png
new file mode 100644
index 000000000..29d072e4b
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/modules/6.png differ
diff --git a/purchase_product_configurator/static/description/assets/screenshots/1.png b/purchase_product_configurator/static/description/assets/screenshots/1.png
new file mode 100644
index 000000000..6b5258d0a
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/screenshots/1.png differ
diff --git a/purchase_product_configurator/static/description/assets/screenshots/2.png b/purchase_product_configurator/static/description/assets/screenshots/2.png
new file mode 100644
index 000000000..c3c0744dc
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/screenshots/2.png differ
diff --git a/purchase_product_configurator/static/description/assets/screenshots/3.png b/purchase_product_configurator/static/description/assets/screenshots/3.png
new file mode 100644
index 000000000..2876bc343
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/screenshots/3.png differ
diff --git a/purchase_product_configurator/static/description/assets/screenshots/hero.gif b/purchase_product_configurator/static/description/assets/screenshots/hero.gif
new file mode 100644
index 000000000..29e771c6d
Binary files /dev/null and b/purchase_product_configurator/static/description/assets/screenshots/hero.gif differ
diff --git a/purchase_product_configurator/static/description/banner.jpg b/purchase_product_configurator/static/description/banner.jpg
new file mode 100644
index 000000000..767e050d1
Binary files /dev/null and b/purchase_product_configurator/static/description/banner.jpg differ
diff --git a/purchase_product_configurator/static/description/icon.png b/purchase_product_configurator/static/description/icon.png
new file mode 100644
index 000000000..f4c6e4243
Binary files /dev/null and b/purchase_product_configurator/static/description/icon.png differ
diff --git a/purchase_product_configurator/static/description/index.html b/purchase_product_configurator/static/description/index.html
new file mode 100644
index 000000000..556f8bfc8
--- /dev/null
+++ b/purchase_product_configurator/static/description/index.html
@@ -0,0 +1,621 @@
+
+ This module allows users to add products to RFQ through a product
+ configurator. After installing this module, users can use product
+ configurator to add products to the purchase order line instead of
+ grid view to add products, which is used in the purchase module by
+ default.
+
+
+
+
+
+
+
+
+
+
+ Configuration
+
+
+
+
+ No additional configuration required.
+
+
+
+
+
+
+
+
+
+
+
+ Features
+
+
+
+
+
+
+ Add Products Using Product Configurator
+
+ Allows users to add product to order line using product configurator.
+
+
+
+ Choose Variants or Custom Attributes, and Optional
+ Products
+
+ Users can add variants, or custom attributes from the available
+ options. Also, they can choose the optional products from
+ the displayed options
+
+
+
+ Switch Between Product Configurator and Grid View
+
+ Users can switch between the Product Configurator and
+ Grid view options according to their needs to add products to
+ the order line
+
+
+
+
+
+
+
+
+
+
+
+
+
Screenshots
+
+
+
+
+
+
+
Add Products Using Product Configurator
+
+
+
+
+
Choose Variants or Custom Attributes, and Optional
+ Products