diff --git a/pricelist_price_on_product/README.rst b/pricelist_price_on_product/README.rst new file mode 100644 index 000000000..3da4a6a0b --- /dev/null +++ b/pricelist_price_on_product/README.rst @@ -0,0 +1,52 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Pricelist Price On Product +========================== +This module helps you to display the pricelist on product form. +Also it allows you to hide the pricelists price from the product. + +Configuration +============= +* No additional configurations needed + +Installation +============ +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +======= +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V17) MOHAMMED DILSHAD TK, 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/pricelist_price_on_product/__init__.py b/pricelist_price_on_product/__init__.py new file mode 100644 index 000000000..7ccce3662 --- /dev/null +++ b/pricelist_price_on_product/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 models diff --git a/pricelist_price_on_product/__manifest__.py b/pricelist_price_on_product/__manifest__.py new file mode 100644 index 000000000..597920ad8 --- /dev/null +++ b/pricelist_price_on_product/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 . +# +################################################################################ +{ + 'name': "Pricelist Price on Product", + 'version': '17.0.1.0.0', + 'category': 'Sales', + 'summary': " With the help of this module you can display the price of the" + " products according to the pricelists in Product Form.", + 'description': " With the help of this module you can display" + " the price of the products according to " + "the pricelists in Product Form. Also it allows you to " + "hide the pricelists price from the product.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management'], + 'data': [ + 'security/ir.model.access.csv', + 'views/pricelist_product_views.xml', + 'views/product_pricelist_views.xml', + 'views/product_template_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} + diff --git a/pricelist_price_on_product/doc/RELEASE_NOTES.md b/pricelist_price_on_product/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..0c72ebd97 --- /dev/null +++ b/pricelist_price_on_product/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 06.04.2024 +#### Version 17.0.1.0.0 +#### ADD + +- Initial Commit For Pricelist Price on Product diff --git a/pricelist_price_on_product/models/__init__.py b/pricelist_price_on_product/models/__init__.py new file mode 100644 index 000000000..d23775128 --- /dev/null +++ b/pricelist_price_on_product/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 pricelist_product +from . import product_pricelist +from . import product_template diff --git a/pricelist_price_on_product/models/pricelist_product.py b/pricelist_price_on_product/models/pricelist_product.py new file mode 100644 index 000000000..4385a7602 --- /dev/null +++ b/pricelist_price_on_product/models/pricelist_product.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 PricelistProduct(models.Model): + """ this is the custom model where we can display + as one2many field in product template form """ + _name = 'pricelist.product' + _description = 'pricelist product' + _rec_name = 'product_price_id' + + product_price_id = fields.Many2one('product.pricelist', string='Price List', + help='Select a price list.') + product_price = fields.Integer(string='Price', + help='The product price in the selected ' + 'currency.') diff --git a/pricelist_price_on_product/models/product_pricelist.py b/pricelist_price_on_product/models/product_pricelist.py new file mode 100644 index 000000000..aa24a5da9 --- /dev/null +++ b/pricelist_price_on_product/models/product_pricelist.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 +from odoo.exceptions import ValidationError + + +class ProductPricelist(models.Model): + """ + Inherits from 'product.pricelist' to add a boolean field for displaying + pricelist prices in product forms. Also ensures correct handling of + O2m fields and potential errors. + """ + _inherit = 'product.pricelist' + + display_pricelist = fields.Boolean(string='Display Pricelist Price on Products', + help='If checked, the pricelist price will be displayed in product forms.') + + @api.onchange('display_pricelist', 'item_ids') + def _onchange_display_pricelist(self): + """ + Updates product pricelist prices based on 'display_pricelist' and 'item_ids' changes. + - Handles potential cases where `item.ids` might be empty. + - Uses `ensure_one()` to guarantee a single record for clarity. + - Employs `filtered()` to find existing pricelist items without errors. + """ + self.ensure_one() + for line in self.item_ids: + product = line.product_tmpl_id + pricelist = line.pricelist_id._origin + pricelist_ids = product.product_pricelist_ids.filtered( + lambda p: p.product_price_id == pricelist) + if self.display_pricelist: + if not pricelist_ids: + if not pricelist: + raise ValidationError("Save the price list, " + "otherwise the price could not save in the product") + product.write({ + 'product_pricelist_ids': [fields.Command.create({ + 'product_price_id': pricelist.id, + 'product_price': line.fixed_price, + })] + }) + else: + existing_pricelist = pricelist_ids[0] # Access the first element + existing_pricelist.write({'product_price': line.fixed_price}) + else: + if pricelist_ids: + pricelist_ids.unlink() diff --git a/pricelist_price_on_product/models/product_template.py b/pricelist_price_on_product/models/product_template.py new file mode 100644 index 000000000..6308e6a34 --- /dev/null +++ b/pricelist_price_on_product/models/product_template.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: MOHAMMED DILSHAD TK (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 ProductTemplate(models.Model): + """ we need ot inherit this model for displaying the + particular pricelist on each product template""" + _inherit = 'product.template' + + product_pricelist_ids = fields.Many2many('pricelist.product', + string='Product Pricelists', + help='Displaying the pricelist', + readonly=True) + has_pricelist = fields.Boolean(string='Has Pricelist', + help='Specify whether the product has ' + 'different prices', + compute='_compute_has_pricelist') + + def _compute_has_pricelist(self): + """Method _compute_has_pricelist to compute the value to the field + has_pricelist""" + for rec in self: + rec.has_pricelist = True if rec.product_pricelist_ids else False diff --git a/pricelist_price_on_product/security/ir.model.access.csv b/pricelist_price_on_product/security/ir.model.access.csv new file mode 100644 index 000000000..9a16290b8 --- /dev/null +++ b/pricelist_price_on_product/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_pricelist_product_user,access.pricelist.product.user,model_pricelist_product,base.group_user,1,1,1,1 diff --git a/pricelist_price_on_product/static/description/assets/icons/check.png b/pricelist_price_on_product/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/check.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/chevron.png b/pricelist_price_on_product/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/chevron.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/cogs.png b/pricelist_price_on_product/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/cogs.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/consultation.png b/pricelist_price_on_product/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/consultation.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/ecom-black.png b/pricelist_price_on_product/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/ecom-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/education-black.png b/pricelist_price_on_product/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/education-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/hotel-black.png b/pricelist_price_on_product/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/hotel-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/license.png b/pricelist_price_on_product/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/license.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/lifebuoy.png b/pricelist_price_on_product/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/lifebuoy.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/manufacturing-black.png b/pricelist_price_on_product/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/manufacturing-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/pos-black.png b/pricelist_price_on_product/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/pos-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/puzzle.png b/pricelist_price_on_product/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/puzzle.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/restaurant-black.png b/pricelist_price_on_product/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/restaurant-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/service-black.png b/pricelist_price_on_product/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/service-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/trading-black.png b/pricelist_price_on_product/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/trading-black.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/training.png b/pricelist_price_on_product/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/training.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/update.png b/pricelist_price_on_product/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/update.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/user.png b/pricelist_price_on_product/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/user.png differ diff --git a/pricelist_price_on_product/static/description/assets/icons/wrench.png b/pricelist_price_on_product/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/icons/wrench.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/Cybrosys R.png b/pricelist_price_on_product/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/Cybrosys R.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/categories.png b/pricelist_price_on_product/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/categories.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/check-box.png b/pricelist_price_on_product/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/check-box.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/compass.png b/pricelist_price_on_product/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/compass.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/corporate.png b/pricelist_price_on_product/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/corporate.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/customer-support.png b/pricelist_price_on_product/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/customer-support.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/cybrosys-logo.png b/pricelist_price_on_product/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/cybrosys-logo.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/features.png b/pricelist_price_on_product/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/features.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/logo.png b/pricelist_price_on_product/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/logo.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/pictures.png b/pricelist_price_on_product/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/pictures.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/pie-chart.png b/pricelist_price_on_product/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/pie-chart.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/right-arrow.png b/pricelist_price_on_product/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/right-arrow.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/star.png b/pricelist_price_on_product/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/star.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/support.png b/pricelist_price_on_product/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/support.png differ diff --git a/pricelist_price_on_product/static/description/assets/misc/whatsapp.png b/pricelist_price_on_product/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/misc/whatsapp.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/1.png b/pricelist_price_on_product/static/description/assets/modules/1.png new file mode 100644 index 000000000..3a5c1ae0f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/1.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/2.png b/pricelist_price_on_product/static/description/assets/modules/2.png new file mode 100644 index 000000000..78b1287e4 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/2.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/3.png b/pricelist_price_on_product/static/description/assets/modules/3.png new file mode 100644 index 000000000..0bcbed5d0 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/3.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/4.png b/pricelist_price_on_product/static/description/assets/modules/4.png new file mode 100644 index 000000000..961ecb1e1 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/4.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/5.png b/pricelist_price_on_product/static/description/assets/modules/5.png new file mode 100644 index 000000000..910b3436d Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/5.png differ diff --git a/pricelist_price_on_product/static/description/assets/modules/6.png b/pricelist_price_on_product/static/description/assets/modules/6.png new file mode 100644 index 000000000..630edfde2 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/6.png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/1.png b/pricelist_price_on_product/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..fb1b4e48c Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/1.png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/2.png b/pricelist_price_on_product/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..90ccd90a0 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/2.png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/3.png b/pricelist_price_on_product/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..22fcd2e80 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/3.png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/4.png b/pricelist_price_on_product/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..dacea2b5f Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/4.png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/hero-v17.gif b/pricelist_price_on_product/static/description/assets/screenshots/hero-v17.gif new file mode 100644 index 000000000..ce49560e4 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/hero-v17.gif differ diff --git a/pricelist_price_on_product/static/description/banner.png b/pricelist_price_on_product/static/description/banner.png new file mode 100644 index 000000000..f4d6f4064 Binary files /dev/null and b/pricelist_price_on_product/static/description/banner.png differ diff --git a/pricelist_price_on_product/static/description/icon.png b/pricelist_price_on_product/static/description/icon.png new file mode 100644 index 000000000..0fcab0d9f Binary files /dev/null and b/pricelist_price_on_product/static/description/icon.png differ diff --git a/pricelist_price_on_product/static/description/index.html b/pricelist_price_on_product/static/description/index.html new file mode 100644 index 000000000..ba6d9fc77 --- /dev/null +++ b/pricelist_price_on_product/static/description/index.html @@ -0,0 +1,675 @@ + + + + + + + Pricelist Price On Product + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Pricelist Price On Product

+

+ This module allows you to display the prices of products in + Product Form based on price lists. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Community & Enterprise Support.

+
+
+
+
+
+
+ +
+
+

+ Module allows to display the prices of products in Product Form based on + price lists. It also lets you hide the pricelist's price from the product.

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

+ Enable boolean field on price list

+
+
+
+
+
+
+ +
+
+

+ Add prices for each product from the price list.

+

+ Before add price, save the price list form, its not saved. +

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

+ We can see each pricelist for that product in that form

+
+
+
+
+
+
+
    +
  • + Show price of products in price list as a history +
  • +
  • + Get prices in multiple price lists +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:05th April 2024 +
+

+ Initial Commit Pricelist Price On Product.

+
+
+
+
+
+
+
+

+ 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/pricelist_price_on_product/views/pricelist_product_views.xml b/pricelist_price_on_product/views/pricelist_product_views.xml new file mode 100644 index 000000000..44b6c990d --- /dev/null +++ b/pricelist_price_on_product/views/pricelist_product_views.xml @@ -0,0 +1,20 @@ + + + + + Product Pricelist + pricelist.product + tree + + + + pricelist.product.view.tree + pricelist.product + + + + + + + + \ No newline at end of file diff --git a/pricelist_price_on_product/views/product_pricelist_views.xml b/pricelist_price_on_product/views/product_pricelist_views.xml new file mode 100644 index 000000000..3a0821c5d --- /dev/null +++ b/pricelist_price_on_product/views/product_pricelist_views.xml @@ -0,0 +1,15 @@ + + + + + product.pricelist.view.form.inherit.pricelist.price.on.product + product.pricelist + + + + + + + + diff --git a/pricelist_price_on_product/views/product_template_views.xml b/pricelist_price_on_product/views/product_template_views.xml new file mode 100644 index 000000000..0612fa09e --- /dev/null +++ b/pricelist_price_on_product/views/product_template_views.xml @@ -0,0 +1,20 @@ + + + + + + product.template.view.form.inherit.pricelist.price.on.product + product.template + 3 + + + + + + + + + + \ No newline at end of file