diff --git a/dynamic_product_pricelist/README.rst b/dynamic_product_pricelist/README.rst new file mode 100644 index 000000000..970b9f732 --- /dev/null +++ b/dynamic_product_pricelist/README.rst @@ -0,0 +1,49 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-green.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Product Dynamic Pricelist +========================= +This module enhances the functionality of the product management system by +providing a comprehensive view of the price list in a tree view format. + +Configuration +============= +* Enable "Show dynamic pricelist" from Users and also enable "Advanced Pricelist" + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: + (V16) Shonima ,Anjhana A K, + 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/dynamic_product_pricelist/__init__.py b/dynamic_product_pricelist/__init__.py new file mode 100644 index 000000000..359cef697 --- /dev/null +++ b/dynamic_product_pricelist/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/dynamic_product_pricelist/__manifest__.py b/dynamic_product_pricelist/__manifest__.py new file mode 100644 index 000000000..ebd727824 --- /dev/null +++ b/dynamic_product_pricelist/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Product Dynamic Pricelist', + 'version': '16.0.1.0.0', + 'category': 'Sales ', + 'summary': """This module offers a concise, intuitive way to view price + lists while ensuring secure management of pricing data through customizable + access controls""", + 'description': """This module enriches the product management system with + a clear, tree-view presentation of price lists. It also integrates advanced + security features, enabling precise control over access to intricate + pricing rules.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['sale_management'], + 'data': [ + 'security/res_groups.xml', + 'views/product_pricelist_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/dynamic_product_pricelist/doc/RELEASE_NOTES.md b/dynamic_product_pricelist/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..60eb710b2 --- /dev/null +++ b/dynamic_product_pricelist/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 15.04.2024 +#### Version 16.0.1.0.0 +##### ADD +- Initial commit for Product Dynamic Pricelist diff --git a/dynamic_product_pricelist/models/__init__.py b/dynamic_product_pricelist/models/__init__.py new file mode 100644 index 000000000..84ad51c94 --- /dev/null +++ b/dynamic_product_pricelist/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# 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 product_pricelist diff --git a/dynamic_product_pricelist/models/product_pricelist.py b/dynamic_product_pricelist/models/product_pricelist.py new file mode 100644 index 000000000..36dac9788 --- /dev/null +++ b/dynamic_product_pricelist/models/product_pricelist.py @@ -0,0 +1,143 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author:Anjhana A K() +# 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 ProductPriceList(models.Model): + """Inherits the ProductPriceList class for adding new fields and methods""" + _inherit = 'product.pricelist' + + is_show_product_pricelist = fields.Boolean( + string='Show the pricelist in product view', default=False, groups='product.group_sale_pricelist', + help='If set then product pricelist could be seen as a field in product and product variant') + + def check_pricelist_condition(self): + """Check if product price list condition based on the variant and fields""" + if self.item_ids: + for rec in self.item_ids: + variant = False + pricelist_name = self.name.replace(" ", "_") + if rec.applied_on == '3_global': + products = self.env['product.template'].search([]) + elif rec.applied_on == '2_product_category': + products = self.env['product.template'].search( + [('categ_id', '=', rec.categ_id.id)]) + elif rec.applied_on == '0_product_variant': + variant = True + products = rec.product_id + else: + products = rec.product_tmpl_id + if variant: + model = 'product.product' + inherit_id = self.env.ref( + 'product.product_product_tree_view') + model_id = self.env.ref( + 'product.model_product_product').id + name = 'variant_' + else: + model = 'product.template' + inherit_id = self.env.ref( + 'product.product_template_tree_view') + model_id = self.env.ref( + 'product.model_product_template').id + name = 'temp_' + field_id = self.env['ir.model.fields'].search( + [('model_id', '=', model_id), + ('name', 'ilike', 'x_' + str(name) + str(self.id))]) + if not field_id: + field_id = self.env['ir.model.fields'].sudo().create({ + 'name': 'x_' + str(name) + str( + self.id) + pricelist_name, + 'field_description': pricelist_name, + 'model_id': model_id, + 'ttype': 'float', + }) + view = self.env['ir.ui.view'].search([('name', '=', + 'product.dynamic.fields.%s' % pricelist_name), + ('model', '=', model)]) + if not view: + arch_base = _('' + '' + '' + '' + '' + '') % ( + 'x_' + str(name) + str( + self.id) + pricelist_name) + self.env['ir.ui.view'].sudo().create( + {'name': 'product.dynamic.fields.%s' % pricelist_name, + 'type': 'tree', + 'model': model, + 'mode': 'extension', + 'inherit_id': inherit_id.id, + 'arch_base': arch_base, + 'active': True}) + if rec.compute_price == 'fixed': + products.update({ + field_id.name: rec.fixed_price + }) + + @api.model + def create(self, vals): + """Super the create function for calling the created checklist method""" + res = super().create(vals) + if res.is_show_product_pricelist: + res.check_pricelist_condition() + return res + + def write(self, vals): + """Super the write function for calling the created checklist method""" + res = super().write(vals) + if self.is_show_product_pricelist: + self.check_pricelist_condition() + return res + + def unlink(self): + """Super the unlink function for updating the pricelist""" + for rec in self.item_ids: + if rec.applied_on == '0_product_variant': + name = 'variant_' + model = 'product.product' + inherit_id = self.env.ref( + 'product.product_product_tree_view') + model_id = self.env.ref( + 'product.model_product_product').id + else: + name = 'temp_' + model = 'product.template' + inherit_id = self.env.ref( + 'product.product_template_tree_view') + model_id = self.env.ref( + 'product.model_product_template').id + pricelist_name = self.name.replace(" ", "_") + views = self.env['ir.ui.view'].search( + [('name', '=', 'product.dynamic.fields.%s' % pricelist_name), + ('type', '=', 'tree'), + ('model', '=', model), + ('inherit_id', '=', inherit_id.id)]) + for view in views: + view.active = False + self.env['ir.model.fields'].search( + [('model_id', '=', model_id), + ('name', '=', + 'x_' + str(name) + str(self.id) + pricelist_name)]).unlink() + return super().unlink() diff --git a/dynamic_product_pricelist/security/res_groups.xml b/dynamic_product_pricelist/security/res_groups.xml new file mode 100644 index 000000000..8b8ce375a --- /dev/null +++ b/dynamic_product_pricelist/security/res_groups.xml @@ -0,0 +1,8 @@ + + + + Show dynamic pricelist + + + + diff --git a/dynamic_product_pricelist/static/description/assets/icons/check.png b/dynamic_product_pricelist/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/check.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/chevron.png b/dynamic_product_pricelist/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/chevron.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/cogs.png b/dynamic_product_pricelist/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/cogs.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/consultation.png b/dynamic_product_pricelist/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/consultation.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/ecom-black.png b/dynamic_product_pricelist/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/ecom-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/education-black.png b/dynamic_product_pricelist/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/education-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/hotel-black.png b/dynamic_product_pricelist/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/hotel-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/license.png b/dynamic_product_pricelist/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/license.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/lifebuoy.png b/dynamic_product_pricelist/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/lifebuoy.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/logo.png b/dynamic_product_pricelist/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/logo.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/manufacturing-black.png b/dynamic_product_pricelist/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/manufacturing-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/pos-black.png b/dynamic_product_pricelist/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/pos-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/puzzle.png b/dynamic_product_pricelist/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/puzzle.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/restaurant-black.png b/dynamic_product_pricelist/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/restaurant-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/service-black.png b/dynamic_product_pricelist/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/service-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/trading-black.png b/dynamic_product_pricelist/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/trading-black.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/training.png b/dynamic_product_pricelist/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/training.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/update.png b/dynamic_product_pricelist/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/update.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/user.png b/dynamic_product_pricelist/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/user.png differ diff --git a/dynamic_product_pricelist/static/description/assets/icons/wrench.png b/dynamic_product_pricelist/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/icons/wrench.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/categories.png b/dynamic_product_pricelist/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/categories.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/check-box.png b/dynamic_product_pricelist/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/check-box.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/compass.png b/dynamic_product_pricelist/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/compass.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/corporate.png b/dynamic_product_pricelist/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/corporate.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/customer-support.png b/dynamic_product_pricelist/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/customer-support.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/cybrosys-logo.png b/dynamic_product_pricelist/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/cybrosys-logo.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/features.png b/dynamic_product_pricelist/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/features.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/logo.png b/dynamic_product_pricelist/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/logo.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/pictures.png b/dynamic_product_pricelist/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/pictures.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/pie-chart.png b/dynamic_product_pricelist/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/pie-chart.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/right-arrow.png b/dynamic_product_pricelist/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/right-arrow.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/star.png b/dynamic_product_pricelist/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/star.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/support.png b/dynamic_product_pricelist/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/support.png differ diff --git a/dynamic_product_pricelist/static/description/assets/misc/whatsapp.png b/dynamic_product_pricelist/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/whatsapp.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module01.png b/dynamic_product_pricelist/static/description/assets/modules/module01.png new file mode 100644 index 000000000..a9936f593 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module01.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module02.png b/dynamic_product_pricelist/static/description/assets/modules/module02.png new file mode 100644 index 000000000..1a9e2cbd7 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module02.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module03.png b/dynamic_product_pricelist/static/description/assets/modules/module03.png new file mode 100644 index 000000000..d3d28e08b Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module03.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module04.png b/dynamic_product_pricelist/static/description/assets/modules/module04.png new file mode 100644 index 000000000..5297b364a Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module04.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module05.png b/dynamic_product_pricelist/static/description/assets/modules/module05.png new file mode 100644 index 000000000..2263f673e Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module05.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/module06.png b/dynamic_product_pricelist/static/description/assets/modules/module06.png new file mode 100644 index 000000000..0b8c68699 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/module06.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S1.png b/dynamic_product_pricelist/static/description/assets/screenshots/S1.png new file mode 100644 index 000000000..761b82038 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S1.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S10.png b/dynamic_product_pricelist/static/description/assets/screenshots/S10.png new file mode 100644 index 000000000..649277b41 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S10.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S11.png b/dynamic_product_pricelist/static/description/assets/screenshots/S11.png new file mode 100644 index 000000000..ac7b89ae4 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S11.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S12.png b/dynamic_product_pricelist/static/description/assets/screenshots/S12.png new file mode 100644 index 000000000..d48135319 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S12.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S2.png b/dynamic_product_pricelist/static/description/assets/screenshots/S2.png new file mode 100644 index 000000000..570ee45c4 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S2.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S3.png b/dynamic_product_pricelist/static/description/assets/screenshots/S3.png new file mode 100644 index 000000000..87e59a61b Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S3.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S4.png b/dynamic_product_pricelist/static/description/assets/screenshots/S4.png new file mode 100644 index 000000000..d67e7a4bd Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S4.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S5.png b/dynamic_product_pricelist/static/description/assets/screenshots/S5.png new file mode 100644 index 000000000..e34bfad12 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S5.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S6.png b/dynamic_product_pricelist/static/description/assets/screenshots/S6.png new file mode 100644 index 000000000..f96e9626d Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S6.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S7.png b/dynamic_product_pricelist/static/description/assets/screenshots/S7.png new file mode 100644 index 000000000..ce8cbb856 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S7.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S8.png b/dynamic_product_pricelist/static/description/assets/screenshots/S8.png new file mode 100644 index 000000000..ab25021b7 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S8.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/S9.png b/dynamic_product_pricelist/static/description/assets/screenshots/S9.png new file mode 100644 index 000000000..a68a78e04 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/S9.png differ diff --git a/dynamic_product_pricelist/static/description/assets/screenshots/hero.gif b/dynamic_product_pricelist/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..d11c3417e Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/screenshots/hero.gif differ diff --git a/dynamic_product_pricelist/static/description/banner.png b/dynamic_product_pricelist/static/description/banner.png new file mode 100644 index 000000000..ed45c466e Binary files /dev/null and b/dynamic_product_pricelist/static/description/banner.png differ diff --git a/dynamic_product_pricelist/static/description/icon.png b/dynamic_product_pricelist/static/description/icon.png new file mode 100644 index 000000000..abca34edf Binary files /dev/null and b/dynamic_product_pricelist/static/description/icon.png differ diff --git a/dynamic_product_pricelist/static/description/index.html b/dynamic_product_pricelist/static/description/index.html new file mode 100644 index 000000000..159beb14b --- /dev/null +++ b/dynamic_product_pricelist/static/description/index.html @@ -0,0 +1,701 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+ +
+
+ +
+
+
+ +

+ Product Dynamic Pricelist

+

+ A module for adding dynamic pricelist in product view.

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module enhances the functionality of the product management system by providing a comprehensive view of the price list in a tree view format. It also includes features related to security groups to control access to advanced price list rules. +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + From the Users, Users Can enable "Show Dynamic Pricelist" +
+
+ + Product Pricelist Tree View +
+
+ + Advanced Pricelist Rule - Fixed Price +
+
+
+
+ + Available in Odoo 16.0 Enterprise and + Community. +
+ +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Allow Dynamic Pricelist view for User +

+

+ From the user, there is an option to enable "show dynamic pricelist". To those users the pricelist will be visible in product tree view

+ +
+ +
+

+ Pricelist +

+

+ From the settings, Make sure the pricelist is "Advanced price rule", to get this feature

+ +
+

+ In the pricelist enable "Show the pricelist in product view", then only the field will be visible in product tree view

+ +
+

Also make sure that the "Price computation " must be "Fixed", to get this feature

+ +
+
+

+ Apply on -> "All products" +

+

+ When the condition choosen is "All product"

+ +
+

The field in product tree view

+ +
+ +
+

+ Apply on -> "Product Category" +

+

+ When the condition choosen is "Product Category"

+ +
+

The field in product tree view

+ +
+
+

+ Apply on -> "Product" +

+

+ When the condition choosen is "Product"

+ +
+

The field in product tree view

+ +
+
+

+ Apply on -> "Product variant" +

+

+ When the condition choosen is "Product variant"

+ +
+

The field in product variant tree view

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

+ 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

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/dynamic_product_pricelist/views/product_pricelist_views.xml b/dynamic_product_pricelist/views/product_pricelist_views.xml new file mode 100644 index 000000000..26a494c32 --- /dev/null +++ b/dynamic_product_pricelist/views/product_pricelist_views.xml @@ -0,0 +1,13 @@ + + + + product.pricelist.view.form.inherited.dynamic.product.pricelist + product.pricelist + + + + + + + +