diff --git a/dynamic_product_pricelist/README.rst b/dynamic_product_pricelist/README.rst new file mode 100644 index 000000000..188377915 --- /dev/null +++ b/dynamic_product_pricelist/README.rst @@ -0,0 +1,50 @@ +.. 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, + (V17) 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: ``__ 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..98533b957 --- /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': '17.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/dynamic_product_pricelist_groups.xml', + 'views/product_pricelist_views.xml', + ], + 'images': ['static/description/banner.jpg'], + '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..b67fe747d --- /dev/null +++ b/dynamic_product_pricelist/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 15.04.2024 +## Version 17.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..99c218f1f --- /dev/null +++ b/dynamic_product_pricelist/models/product_pricelist.py @@ -0,0 +1,136 @@ +# -*- 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): + _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): + 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): + res = super().create(vals) + if res.is_show_product_pricelist: + res.check_pricelist_condition() + return res + + def write(self, vals): + res = super().write(vals) + if self.is_show_product_pricelist: + self.check_pricelist_condition() + return res + + def unlink(self): + for res in self: + for rec in res.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 = res.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( + res.id) + pricelist_name)]).unlink() + return super().unlink() diff --git a/dynamic_product_pricelist/security/dynamic_product_pricelist_groups.xml b/dynamic_product_pricelist/security/dynamic_product_pricelist_groups.xml new file mode 100644 index 000000000..393d178a6 --- /dev/null +++ b/dynamic_product_pricelist/security/dynamic_product_pricelist_groups.xml @@ -0,0 +1,10 @@ + + + + + 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/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/Cybrosys R.png b/dynamic_product_pricelist/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/misc/Cybrosys R.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/1.jpg b/dynamic_product_pricelist/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/1.jpg differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/2.jpg b/dynamic_product_pricelist/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..87c2bb2ba Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/2.jpg differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/3.png b/dynamic_product_pricelist/static/description/assets/modules/3.png new file mode 100644 index 000000000..a5299d338 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/3.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/4.png b/dynamic_product_pricelist/static/description/assets/modules/4.png new file mode 100644 index 000000000..a0ac2d840 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/4.png differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/5.jpg b/dynamic_product_pricelist/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..6a102f103 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/5.jpg differ diff --git a/dynamic_product_pricelist/static/description/assets/modules/6.jpg b/dynamic_product_pricelist/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..eaf13fef5 Binary files /dev/null and b/dynamic_product_pricelist/static/description/assets/modules/6.jpg 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..543f3843c 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..ba9a204b6 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..3ca2507f0 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..dddab156d 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..7436ffea7 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..e2f7a9908 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..16d073b2a 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..71e49eca9 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..bae845d27 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..26bcdc866 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..c31b01bff 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..079a91d4a 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..796707231 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.jpg b/dynamic_product_pricelist/static/description/banner.jpg new file mode 100644 index 000000000..31bcb7577 Binary files /dev/null and b/dynamic_product_pricelist/static/description/banner.jpg 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..cf72ab7c0 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..edcec7b15 --- /dev/null +++ b/dynamic_product_pricelist/static/description/index.html @@ -0,0 +1,832 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Product Dynamic Pricelist

+

+ A module for adding dynamic pricelist in product view. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

+ Security group

+

It contains features related to security groups to control access to advanced price list rules. +

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

+ "In the settings menu, under 'User,' there is an option to enable "Show Dynamic Pricelist". To those users the pricelist will be visible in product tree view

+
+
+
+
+
+
+ +
+
+

+ 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

+
+
+
+
+
+
+ +
+
+

+ When the Apply on is "All product"

+
+
+
+
+
+
+ +
+
+

+ The field in product tree view

+
+
+
+
+
+
+ +
+
+

+ When the Apply on is "Product Category"

+
+
+
+
+
+
+ +
+
+

+ The field in product tree view

+
+
+
+
+
+
+ +
+
+

+ When the Apply on is "Product"

+
+
+
+
+
+
+ +
+
+

+ The field in product tree view

+
+
+
+
+
+
+ +
+
+

+ When the Apply on is "Product variant"

+
+
+
+
+
+
+ +
+
+

+ The field in product variant tree view

+
+
+
+
+
+
+
    +
  • + From the Users, Users Can enable "Show Dynamic Pricelist" +
  • +
  • + Product Pricelist Tree View +
  • +
  • + Advanced Pricelist Rule - Fixed Price +
  • +
  • + Available in Odoo 17.0 Enterprise and + Community. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:26th March 2024 +
+

+ Initial Commit for Product Dynamic Pricelist.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

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

Odoo + Customization

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

Odoo + Implementation

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

Odoo + Support

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

Hire + Odoo Developer

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

Odoo + Integration

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

Odoo + Migration

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

Odoo + Consultancy

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

Odoo + Implementation

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

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in + touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi + to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/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 + + + + + + + +