diff --git a/pricelist_price_on_product/README.rst b/pricelist_price_on_product/README.rst new file mode 100644 index 000000000..cd2038485 --- /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: http://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/16.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.html) + +Credits +------- +* Developers: (V16)Dhanya Babu, 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..445db1ddb --- /dev/null +++ b/pricelist_price_on_product/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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..fb8740902 --- /dev/null +++ b/pricelist_price_on_product/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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': '16.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..8cbbc95b7 --- /dev/null +++ b/pricelist_price_on_product/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 31.1.2024 +#### Version 16.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..74fc0cde8 --- /dev/null +++ b/pricelist_price_on_product/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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..aa7ee46e8 --- /dev/null +++ b/pricelist_price_on_product/models/pricelist_product.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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..9371310c2 --- /dev/null +++ b/pricelist_price_on_product/models/product_pricelist.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class ProductPricelist(models.Model): + """Need of this model is because we need to add boolean field to + display the pricelist in the product form by checking , + whether the boolean true or false""" + _inherit = 'product.pricelist' + + display_pricelist = fields.Boolean(string='Display Pricelist Price on ' + 'Products', + help='If we want to display the ' + 'pricelist on product form ,we can ' + 'enable this boolean field') + + @api.onchange('display_pricelist', 'item_ids') + def _onchange_display_pricelist(self): + """displaying pricelist on product""" + for item in self: + pricelist_ids = item.item_ids.mapped( + 'product_tmpl_id.product_pricelist_ids') + for line in item.item_ids: + product = line.product_tmpl_id + existing_pricelist = pricelist_ids.filtered( + lambda p: p.product_price_id.id == item.ids[0]) + if item.display_pricelist: + if not existing_pricelist: + product.write({ + 'product_pricelist_ids': [ + (0, 0, { + 'product_price_id': item.ids[0], + 'product_price': line.fixed_price, + }) + ], + }) + else: + existing_pricelist.write( + {'product_price': line.fixed_price}) + elif existing_pricelist: + existing_pricelist.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..5bdc7f31f --- /dev/null +++ b/pricelist_price_on_product/models/product_template.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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/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..359d3e4d6 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..5c56f0bcd 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..c1f30354a 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..33372bdc1 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.gif b/pricelist_price_on_product/static/description/assets/modules/5.gif new file mode 100644 index 000000000..d0f36b007 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/modules/5.gif 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..29d072e4b 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/Screenshot(14).png b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(14).png new file mode 100644 index 000000000..cf7627a79 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(14).png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(15).png b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(15).png new file mode 100644 index 000000000..788123319 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(15).png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(16).png b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(16).png new file mode 100644 index 000000000..cfda62de1 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(16).png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(17).png b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(17).png new file mode 100644 index 000000000..88c9560bc Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/Screenshot(17).png differ diff --git a/pricelist_price_on_product/static/description/assets/screenshots/hero.gif b/pricelist_price_on_product/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..41aad4023 Binary files /dev/null and b/pricelist_price_on_product/static/description/assets/screenshots/hero.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..a792a5794 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..77f4b2bb0 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..4698222db --- /dev/null +++ b/pricelist_price_on_product/static/description/index.html @@ -0,0 +1,654 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Pricelist Price On Product

+

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

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

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

+ Features +

+
+
+
+
+ + Community & Enterprise + Support. +
+
+ + +This module allows you to display the prices of products in Product Form based on pricelists. It also lets you hide the pricelist's price from the product. + +
+
+
+ + + +
+
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ Enable boolean field on pricelist +

+

+

+ +
+ +
+

+ Add prices for each product from the pricelist

+ + +
+
+

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

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

+ 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/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..6616b5dce --- /dev/null +++ b/pricelist_price_on_product/views/product_pricelist_views.xml @@ -0,0 +1,17 @@ + + + + + + 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..0f746eab7 --- /dev/null +++ b/pricelist_price_on_product/views/product_template_views.xml @@ -0,0 +1,22 @@ + + + + + + + product.template.view.form.inherit.pricelist.price.on.product + + product.template + 3 + + + + + + + + + + \ No newline at end of file