diff --git a/sticky_form_header b/sticky_form_header deleted file mode 160000 index 0f465bf00..000000000 --- a/sticky_form_header +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0f465bf00316c8388a9408139c56532acbcd5eee diff --git a/website_call_for_price/README.rst b/website_call_for_price/README.rst deleted file mode 100644 index e72e7ba9e..000000000 --- a/website_call_for_price/README.rst +++ /dev/null @@ -1,42 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -WEBSITE CALL FOR PRICE -==================== -This module helps hide specific products prices from the shop and using 'Call for Price' button customer can sent their details, the user will follow up the details and get the product price. - -Configuration -============= -No additional configuration required - -Company -------- -* `Cybrosys Techno Solutions `__ - -Credits -------- -Developer: Raneesha M K @cybrosys, Contact: odoo@cybrosys.com - -Contacts --------- -* Mail Contact : odoo@cybrosys.com -* Website : https://cybrosys.com - -Bug Tracker ------------ -Bugs are tracked on GitHub Issues. In case of trouble, please check there if -your issue has already been reported. - -Maintainer -========== -.. image:: https://cybrosys.com/images/logo.png - :target: https://cybrosys.com - -This module is maintained by Cybrosys Technologies. - -For support and more information, please visit `Our Website `__ - -Further information -=================== -HTML Description: ``__ \ No newline at end of file diff --git a/website_call_for_price/__init__.py b/website_call_for_price/__init__.py deleted file mode 100644 index 084f44af0..000000000 --- a/website_call_for_price/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Raneesha M K (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/website_call_for_price/__manifest__.py b/website_call_for_price/__manifest__.py deleted file mode 100644 index 575936852..000000000 --- a/website_call_for_price/__manifest__.py +++ /dev/null @@ -1,50 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Raneesha M K (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': 'Website Call For Price', - 'version': '16.0.1.0.0', - 'category': 'Website/Website', - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'maintainer': 'Cybrosys Techno Solutions', - 'images': ['static/description/banner.png'], - 'website': 'https://www.cybrosys.com', - 'depends': ['base', 'website_sale', 'website_sale_wishlist', - 'website_sale_comparison'], - 'summary': """Helps to hide price of specified product from shop""", - 'description': "Hide price and add to cart item button of All page stores" - "and user must ask for a call for price", - 'data': ['security/ir.model.access.csv', - 'views/shop_hide_call_price_template.xml', - 'views/wishlist_hide_price_template.xml', - 'views/compare_hide_price_template.xml', - 'views/call_for_price_views.xml', - 'views/product_template_views.xml'], - 'assets': { - 'web.assets_frontend': [ - '/website_call_for_price/static/src/js/create_call_form.js'] - }, - 'license': 'AGPL-3', - 'installable': True, - 'auto_install': False, - 'application': False, -} diff --git a/website_call_for_price/doc/RELEASE_NOTES.md b/website_call_for_price/doc/RELEASE_NOTES.md deleted file mode 100644 index d40c0eccb..000000000 --- a/website_call_for_price/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,11 +0,0 @@ -## Module - -#### 15.03.2023 -#### Version 16.0.1.0.0 -#### ADD -Initial Commit Website Call For Price - - - - - diff --git a/website_call_for_price/models/__init__.py b/website_call_for_price/models/__init__.py deleted file mode 100644 index ca776bd5b..000000000 --- a/website_call_for_price/models/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Raneesha M K (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 call_price, product_template diff --git a/website_call_for_price/models/call_price.py b/website_call_for_price/models/call_price.py deleted file mode 100644 index 5665fab4e..000000000 --- a/website_call_for_price/models/call_price.py +++ /dev/null @@ -1,68 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Raneesha M K (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 CallForPrice(models.Model): - """Creating a model to record all the request the get from website.""" - _name = 'call.price' - _description = 'Call for Price' - _rec_name = 'product_id' - - first_name = fields.Char(string="First Name", help="First Name of user") - last_name = fields.Char(string="Last Name", help="Last Name of user") - product_id = fields.Many2one('product.template', string="Product", - help="In which product " - "they are requesting price") - email = fields.Char(string="Email", help="Users email for contact") - phone = fields.Char(string="Contact No.", - help="Users contact number for contacting") - quantity = fields.Integer(string="Quantity", - help="How much quantity of product price " - "they want know") - message = fields.Char(string="Message", - help="If any messages for referring") - state = fields.Selection( - [('draft', 'Draft'), ('done', 'Done'), ('cancel', 'Cancel')], - default="draft", help="Call for price requests stage") - - def action_done(self): - """the price of the requested product will be updated for them, - form state is done""" - self.write({'state': 'done'}) - - def action_cancel(self): - """ cancel the form or change the state to cancel""" - self.write({'state': 'cancel'}) - - @api.model - def create_form(self, first, last, product_id, phone, email, message, qty): - """ create the request from the users to backend for teams""" - self.create({ - 'product_id': product_id, - 'first_name': first, - 'last_name': last, - 'phone': phone, - 'email': email, - 'quantity': qty, - 'message': message - }) diff --git a/website_call_for_price/models/product_template.py b/website_call_for_price/models/product_template.py deleted file mode 100644 index e271a3761..000000000 --- a/website_call_for_price/models/product_template.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Raneesha M K (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): - """Inheriting product variants model for adding a field - that will hide price from website""" - _inherit = 'product.template' - - price_call = fields.Boolean(string="Call for Price", - help="This will hide the price and cart button from shop " - "and customer can request by calling for price") diff --git a/website_call_for_price/security/ir.model.access.csv b/website_call_for_price/security/ir.model.access.csv deleted file mode 100644 index ff1aeae69..000000000 --- a/website_call_for_price/security/ir.model.access.csv +++ /dev/null @@ -1,3 +0,0 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink - -access_call_price,access_call_price,model_call_price,base.group_user,1,1,1,1 diff --git a/website_call_for_price/static/description/assets/icons/check.png b/website_call_for_price/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/website_call_for_price/static/description/assets/icons/check.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/chevron.png b/website_call_for_price/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/website_call_for_price/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/cogs.png b/website_call_for_price/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/website_call_for_price/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/consultation.png b/website_call_for_price/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/website_call_for_price/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/ecom-black.png b/website_call_for_price/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/website_call_for_price/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/education-black.png b/website_call_for_price/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/website_call_for_price/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/hotel-black.png b/website_call_for_price/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/website_call_for_price/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/license.png b/website_call_for_price/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/website_call_for_price/static/description/assets/icons/license.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/lifebuoy.png b/website_call_for_price/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/website_call_for_price/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/manufacturing-black.png b/website_call_for_price/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/website_call_for_price/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/pos-black.png b/website_call_for_price/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/website_call_for_price/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/puzzle.png b/website_call_for_price/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/website_call_for_price/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/restaurant-black.png b/website_call_for_price/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/website_call_for_price/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/service-black.png b/website_call_for_price/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/website_call_for_price/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/trading-black.png b/website_call_for_price/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/website_call_for_price/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/training.png b/website_call_for_price/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/website_call_for_price/static/description/assets/icons/training.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/update.png b/website_call_for_price/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/website_call_for_price/static/description/assets/icons/update.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/user.png b/website_call_for_price/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/website_call_for_price/static/description/assets/icons/user.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/icons/wrench.png b/website_call_for_price/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/website_call_for_price/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/categories.png b/website_call_for_price/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/website_call_for_price/static/description/assets/misc/categories.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/check-box.png b/website_call_for_price/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/website_call_for_price/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/compass.png b/website_call_for_price/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/website_call_for_price/static/description/assets/misc/compass.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/corporate.png b/website_call_for_price/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/website_call_for_price/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/customer-support.png b/website_call_for_price/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/website_call_for_price/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/cybrosys-logo.png b/website_call_for_price/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/website_call_for_price/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/features.png b/website_call_for_price/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/website_call_for_price/static/description/assets/misc/features.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/logo.png b/website_call_for_price/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/website_call_for_price/static/description/assets/misc/logo.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/pictures.png b/website_call_for_price/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/website_call_for_price/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/pie-chart.png b/website_call_for_price/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/website_call_for_price/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/right-arrow.png b/website_call_for_price/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/website_call_for_price/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/star.png b/website_call_for_price/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/website_call_for_price/static/description/assets/misc/star.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/support.png b/website_call_for_price/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/website_call_for_price/static/description/assets/misc/support.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/misc/whatsapp.png b/website_call_for_price/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/website_call_for_price/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/1.png b/website_call_for_price/static/description/assets/modules/1.png deleted file mode 100644 index b21837312..000000000 Binary files a/website_call_for_price/static/description/assets/modules/1.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/2.png b/website_call_for_price/static/description/assets/modules/2.png deleted file mode 100644 index eb3f8652f..000000000 Binary files a/website_call_for_price/static/description/assets/modules/2.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/3.png b/website_call_for_price/static/description/assets/modules/3.png deleted file mode 100644 index a9c4ec82c..000000000 Binary files a/website_call_for_price/static/description/assets/modules/3.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/4.png b/website_call_for_price/static/description/assets/modules/4.png deleted file mode 100644 index 17ba4d75f..000000000 Binary files a/website_call_for_price/static/description/assets/modules/4.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/5.png b/website_call_for_price/static/description/assets/modules/5.png deleted file mode 100644 index 489f44e86..000000000 Binary files a/website_call_for_price/static/description/assets/modules/5.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/modules/6.png b/website_call_for_price/static/description/assets/modules/6.png deleted file mode 100644 index ed11bd818..000000000 Binary files a/website_call_for_price/static/description/assets/modules/6.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot1.png b/website_call_for_price/static/description/assets/screenshots/Screenshot1.png deleted file mode 100644 index 6f75249b6..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot1.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot2.png b/website_call_for_price/static/description/assets/screenshots/Screenshot2.png deleted file mode 100644 index 3685eb05a..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot2.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot3.png b/website_call_for_price/static/description/assets/screenshots/Screenshot3.png deleted file mode 100644 index 9f16188b8..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot3.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot4.png b/website_call_for_price/static/description/assets/screenshots/Screenshot4.png deleted file mode 100644 index f4d20c03f..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot4.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot5.png b/website_call_for_price/static/description/assets/screenshots/Screenshot5.png deleted file mode 100644 index cdf9abfa4..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot5.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot6.png b/website_call_for_price/static/description/assets/screenshots/Screenshot6.png deleted file mode 100644 index 668803191..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot6.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot7.png b/website_call_for_price/static/description/assets/screenshots/Screenshot7.png deleted file mode 100644 index c212dd592..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot7.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/Screenshot8.png b/website_call_for_price/static/description/assets/screenshots/Screenshot8.png deleted file mode 100644 index a6484ca8c..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/Screenshot8.png and /dev/null differ diff --git a/website_call_for_price/static/description/assets/screenshots/hero.gif b/website_call_for_price/static/description/assets/screenshots/hero.gif deleted file mode 100644 index 3f5a934ab..000000000 Binary files a/website_call_for_price/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/website_call_for_price/static/description/banner.png b/website_call_for_price/static/description/banner.png deleted file mode 100644 index bd1a82caa..000000000 Binary files a/website_call_for_price/static/description/banner.png and /dev/null differ diff --git a/website_call_for_price/static/description/cybro_logo.png b/website_call_for_price/static/description/cybro_logo.png deleted file mode 100644 index bb309114c..000000000 Binary files a/website_call_for_price/static/description/cybro_logo.png and /dev/null differ diff --git a/website_call_for_price/static/description/icon.png b/website_call_for_price/static/description/icon.png deleted file mode 100644 index 43dc58b19..000000000 Binary files a/website_call_for_price/static/description/icon.png and /dev/null differ diff --git a/website_call_for_price/static/description/index.html b/website_call_for_price/static/description/index.html deleted file mode 100644 index a2c737fe3..000000000 --- a/website_call_for_price/static/description/index.html +++ /dev/null @@ -1,681 +0,0 @@ -
- -
- -
-
- Community -
-
- Enterprise -
-
- Odoo.sh -
-
-
- - - -

- Website Call - for Price

-

- Website Call for Price for - Specific Products

- - - -
- - -
-
- -
-

- Explore This - Module

-
- - - - -
-
- -
-

- Overview -

-
-
-
- In some cases, we have to hide the price of a product. These items might - be free, out of stock, or available for - any other reason. This module allows you to hide the price and add to - cart button for specific products; the - call for price option will send a price request to the merchant. -
-
- - - -
-
- -
-

- Features -

-
-
-
-
- - Hide specific product price. -
-
- - Hide add to cart button. -
-
- - Adds a button for price requests from merchants. -
-
- - Track all requests from the backend. -
-
-
- - - -
-
- -
-

- Screenshots -

-
-
-
-
-

- Enable Call for Price - from the Product Sales tab

-

- Go to Products -> Sales -> - Enable Call for Price. After enabling this, the price and add to - cart button will hide from the website.

- -
- -
-

- Hide product price from list of products

- -
- -
-

- Wishlist page

-

- Hide the price and add to cart button from wishlist page.

- -
- -
-

- Product Compare Page

-

- If the user needs to compare the products, then they need to - request the price.

- -
- -
-

- Call For Price Button

-

- Hides the price and add to cart button from product item and - adds button for price request, on clicking a popup will - open.

- -
- -
-

- Call For Price Request

-

- User need to enter these details inorder to get the price of the - product. The request will send to merchant by clicking send - button.

- -
- -
-

- Request Sended

-

- After sending the request a success message will show there, and - merchant can access the request from backend.

- -
- -
-

- The Backend View

-

- Initially, a draft request is created; after merchant - verification, the sales team contacts the customer.

- -
-
-
- - - -
-
- -
-

- 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/website_call_for_price/static/src/js/create_call_form.js b/website_call_for_price/static/src/js/create_call_form.js deleted file mode 100644 index cfd5568fd..000000000 --- a/website_call_for_price/static/src/js/create_call_form.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * This file is used to give a success alert after requesting a call for price. -*/ - -odoo.define('website_call_for_price.create', function (require) { -"use strict"; - const rpc = require('web.rpc'); - var core = require('web.core'); - - $('#send_btn').on('click', function(){ - var first = $('#first_name').val(); - var last = $('#last_name').val(); - var product_id = $('#product_id').val(); - var phone = $('#phone').val(); - var email = $('#email').val(); - var message = $('#message').val(); - var qty = $('#quantity').val(); - rpc.query({ - model: "call.price", - method: "create_form", - args:[first,last,product_id,phone,email,message,qty] - }).then(function (result) { - document.getElementById('alert_message').style.display = "block" - }); - }); -}); \ No newline at end of file diff --git a/website_call_for_price/views/call_for_price_views.xml b/website_call_for_price/views/call_for_price_views.xml deleted file mode 100644 index a91f31a8e..000000000 --- a/website_call_for_price/views/call_for_price_views.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - call.price.view.tree - call.price - - - - - - - - - - - - - call.price.view.form - call.price - -
-
-
- - - - - - - - - - - - - - - -
-
-
- - - Call For Price - call.price - tree,form - - - -
\ No newline at end of file diff --git a/website_call_for_price/views/compare_hide_price_template.xml b/website_call_for_price/views/compare_hide_price_template.xml deleted file mode 100644 index cf3d134c3..000000000 --- a/website_call_for_price/views/compare_hide_price_template.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/website_call_for_price/views/product_template_views.xml b/website_call_for_price/views/product_template_views.xml deleted file mode 100644 index 34774a732..000000000 --- a/website_call_for_price/views/product_template_views.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - product.template.view.form.inherit.website.call.for.price - product.template - - - - - - - - diff --git a/website_call_for_price/views/shop_hide_call_price_template.xml b/website_call_for_price/views/shop_hide_call_price_template.xml deleted file mode 100644 index a93e9d082..000000000 --- a/website_call_for_price/views/shop_hide_call_price_template.xml +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - diff --git a/website_call_for_price/views/wishlist_hide_price_template.xml b/website_call_for_price/views/wishlist_hide_price_template.xml deleted file mode 100644 index 837211c35..000000000 --- a/website_call_for_price/views/wishlist_hide_price_template.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - \ No newline at end of file