diff --git a/website_multi_variant/README.rst b/website_multi_variant/README.rst new file mode 100644 index 000000000..1274e8505 --- /dev/null +++ b/website_multi_variant/README.rst @@ -0,0 +1,50 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Website Multi Variant Add to Cart +================================= +This module allows you to select variants of the selected +product from the same window of the selected product itself. + +Installation +------------- +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +GNU Lesser General Public License , Version 3 (LGPL v3). +(http://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +Developers : (V17) Ayana KP @ Cybrosys, + (V16) Abhin K @ Cybrosys, +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.comAbhin + +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/website_multi_variant/__init__.py b/website_multi_variant/__init__.py new file mode 100644 index 000000000..a9dcdf379 --- /dev/null +++ b/website_multi_variant/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Ayana KP(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import controllers diff --git a/website_multi_variant/__manifest__.py b/website_multi_variant/__manifest__.py new file mode 100644 index 000000000..74004545a --- /dev/null +++ b/website_multi_variant/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Website Multi Variant Add to Cart', + 'version': '17.0.1.0.0', + 'category': 'Website', + 'summary': """Enhance product details page with prominent attribute options, + quantity box, and quick add to cart feature.""", + 'description': """Multi Variant Add to Cart " + Present the comprehensive range of product attribute + options prominently on the product's details page, + accompanied by a convenient quantity box and a + streamlined 'quick add to cart' functionality.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['website_sale'], + 'data': [ + 'views/website_multi_variant_templates.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/website_multi_variant/controllers/__init__.py b/website_multi_variant/controllers/__init__.py new file mode 100644 index 000000000..7a55ace83 --- /dev/null +++ b/website_multi_variant/controllers/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import website_multi_variant diff --git a/website_multi_variant/controllers/website_multi_variant.py b/website_multi_variant/controllers/website_multi_variant.py new file mode 100644 index 000000000..61353acf8 --- /dev/null +++ b/website_multi_variant/controllers/website_multi_variant.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Ayana KP(odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import http +from odoo.http import request + +from odoo.addons.website_sale.controllers.main import WebsiteSale + + +class WebsiteVariantSale(WebsiteSale): + """ WebsiteSale class is inherited to add the + functionality to add the variants if selected """ + def _prepare_product_values(self, product, category, search, **kwargs): + """Since the buy button is optional this function is supered + to give buy_now value from the settings to the template""" + values = super()._prepare_product_values(product, category, search, + **kwargs) + res = request.env['res.config.settings'].sudo().search([], limit=1, + order='id desc') + values['buy_now'] = res.enabled_buy_now_button + return values + + @http.route('/shop/cart/multi', type='http', auth="user", website=True) + def cart_update_multi(self, **post): + """This controller is triggered when + the form is submitted and will update + the cart and redirect to payment if + selected to will redirect to cart""" + if post.get('product_tmpl_id'): + request.website.pricelist_id + sale_order = request.website.sale_get_order(force_create=1) + product_template = request.env['product.template'].sudo().browse( + int(post.get('product_tmpl_id'))) + if product_template: + for variant in product_template.product_variant_ids: + if post.get(f'quantity-{variant.id}'): + quantity = float(post.get(f'quantity-{variant.id}')) + if quantity >= 1: + if sale_order.order_line: + for rec in sale_order.order_line: + variant_ids_in_sale = \ + [record.product_id.id for record in + sale_order.order_line] + if variant.id not in variant_ids_in_sale: + sale_order._cart_update( + product_id=int(variant.id), + add_qty=float(quantity)) + elif rec.product_id.id == variant.id: + rec.product_uom_qty += float(quantity) + else: + sale_order._cart_update( + product_id=int(variant.id), + add_qty=float(quantity)) + + res = request.redirect('/shop/payment') if post.get( + 'buy_now') else request.redirect( + '/shop/cart') + return res diff --git a/website_multi_variant/doc/RELEASE_NOTE.md b/website_multi_variant/doc/RELEASE_NOTE.md new file mode 100644 index 000000000..3b7938d14 --- /dev/null +++ b/website_multi_variant/doc/RELEASE_NOTE.md @@ -0,0 +1,6 @@ +## Module + +#### 08.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Website Multi Variant Add to Cart diff --git a/website_multi_variant/static/description/assets/icons/capture (1).png b/website_multi_variant/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/capture (1).png differ diff --git a/website_multi_variant/static/description/assets/icons/check.png b/website_multi_variant/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/check.png differ diff --git a/website_multi_variant/static/description/assets/icons/chevron.png b/website_multi_variant/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/chevron.png differ diff --git a/website_multi_variant/static/description/assets/icons/cogs.png b/website_multi_variant/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/cogs.png differ diff --git a/website_multi_variant/static/description/assets/icons/consultation.png b/website_multi_variant/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/consultation.png differ diff --git a/website_multi_variant/static/description/assets/icons/ecom-black.png b/website_multi_variant/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/ecom-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/education-black.png b/website_multi_variant/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/education-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/hotel-black.png b/website_multi_variant/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/hotel-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/img.png b/website_multi_variant/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/img.png differ diff --git a/website_multi_variant/static/description/assets/icons/license.png b/website_multi_variant/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/license.png differ diff --git a/website_multi_variant/static/description/assets/icons/lifebuoy.png b/website_multi_variant/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/lifebuoy.png differ diff --git a/website_multi_variant/static/description/assets/icons/manufacturing-black.png b/website_multi_variant/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/manufacturing-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/photo-capture.png b/website_multi_variant/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/photo-capture.png differ diff --git a/website_multi_variant/static/description/assets/icons/pos-black.png b/website_multi_variant/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/pos-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/puzzle.png b/website_multi_variant/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/puzzle.png differ diff --git a/website_multi_variant/static/description/assets/icons/restaurant-black.png b/website_multi_variant/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/restaurant-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/service-black.png b/website_multi_variant/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/service-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/trading-black.png b/website_multi_variant/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/trading-black.png differ diff --git a/website_multi_variant/static/description/assets/icons/training.png b/website_multi_variant/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/training.png differ diff --git a/website_multi_variant/static/description/assets/icons/update.png b/website_multi_variant/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/update.png differ diff --git a/website_multi_variant/static/description/assets/icons/user.png b/website_multi_variant/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/user.png differ diff --git a/website_multi_variant/static/description/assets/icons/wrench.png b/website_multi_variant/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/website_multi_variant/static/description/assets/icons/wrench.png differ diff --git a/website_multi_variant/static/description/assets/misc/Cybrosys R.png b/website_multi_variant/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/website_multi_variant/static/description/assets/misc/Cybrosys R.png differ diff --git a/website_multi_variant/static/description/assets/misc/email.svg b/website_multi_variant/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/phone.svg b/website_multi_variant/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/website_multi_variant/static/description/assets/misc/star (1) 2.svg b/website_multi_variant/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/support (1) 1.svg b/website_multi_variant/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/support-email.svg b/website_multi_variant/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/tick-mark.svg b/website_multi_variant/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/whatsapp 1.svg b/website_multi_variant/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/misc/whatsapp.svg b/website_multi_variant/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/website_multi_variant/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website_multi_variant/static/description/assets/modules/1.png b/website_multi_variant/static/description/assets/modules/1.png new file mode 100644 index 000000000..ba1058c42 Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/1.png differ diff --git a/website_multi_variant/static/description/assets/modules/2.png b/website_multi_variant/static/description/assets/modules/2.png new file mode 100644 index 000000000..6949185dd Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/2.png differ diff --git a/website_multi_variant/static/description/assets/modules/3.png b/website_multi_variant/static/description/assets/modules/3.png new file mode 100644 index 000000000..4e506f79b Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/3.png differ diff --git a/website_multi_variant/static/description/assets/modules/4.png b/website_multi_variant/static/description/assets/modules/4.png new file mode 100644 index 000000000..e78427938 Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/4.png differ diff --git a/website_multi_variant/static/description/assets/modules/5.png b/website_multi_variant/static/description/assets/modules/5.png new file mode 100755 index 000000000..272ec20f9 Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/5.png differ diff --git a/website_multi_variant/static/description/assets/modules/6.png b/website_multi_variant/static/description/assets/modules/6.png new file mode 100644 index 000000000..7d5c3154f Binary files /dev/null and b/website_multi_variant/static/description/assets/modules/6.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/1.png b/website_multi_variant/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..3ace258d8 Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/1.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/2.png b/website_multi_variant/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..20a781596 Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/2.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/3.png b/website_multi_variant/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..0ae431a00 Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/3.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/4.png b/website_multi_variant/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..af8a2341d Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/4.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/5.png b/website_multi_variant/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..6ef0c2282 Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/5.png differ diff --git a/website_multi_variant/static/description/assets/screenshots/hero.png b/website_multi_variant/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..1520241a7 Binary files /dev/null and b/website_multi_variant/static/description/assets/screenshots/hero.png differ diff --git a/website_multi_variant/static/description/banner.jpg b/website_multi_variant/static/description/banner.jpg new file mode 100644 index 000000000..0e905cf14 Binary files /dev/null and b/website_multi_variant/static/description/banner.jpg differ diff --git a/website_multi_variant/static/description/icon.png b/website_multi_variant/static/description/icon.png new file mode 100644 index 000000000..a2765543c Binary files /dev/null and b/website_multi_variant/static/description/icon.png differ diff --git a/website_multi_variant/static/description/index.html b/website_multi_variant/static/description/index.html new file mode 100644 index 000000000..583f68d8a --- /dev/null +++ b/website_multi_variant/static/description/index.html @@ -0,0 +1,625 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Website Multi Variant Add to Cart

+

+ Customers can Add Multiple Variants of Products with + Different Quantities to the + Cart. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

The customer can add multiple variants of products.

+

The customer can add multiple variants of products with + different quantities to + the basket at once + without having to select them one by one +

+
+
+
+
+
+
+ +
+
+

Amount of the Variants will be Visible.

+

The amount of the variants will be visible on the same + product page. +

+
+
+
+
+
+
+ +
+
+

Product Variants are Displayed in a Tabular format.

+

Product variants are displayed in a tabular format on the + product page with a + quantity field. +

+
+
+
+
+
+
+ +
+
+

Buy Now Button

+

"Buy now button for variant" to add multiple variants +

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

+ When clicking on a product having variants, customers can add + multiple variants with + different + quantities in the cart.

+
+
+
+
+
+
+ +
+
+

+ After clicking the "Add to cart" button multiple product will + added in cart.

+
+
+
+
+
+
+ +
+
+

+ If the 'Buy Now' option is enabled in the configuration settings, we can directly add multiple product variants to the payment page.

+
+
+
+
+
+
+ +
+
+

+ When the 'Buy Now' button is clicked on the website, we can directly add multiple product variants to the payment page.

+
+
+
+
+
+
+ +
+
+

+ Redirected directly into payment page.

+
+
+
+
+
+
+
    +
  • + The customer can add multiple variants of products. +
  • +
  • + The amount of the variants will be visible on the same + product page. +
  • +
  • + Product variants are displayed in a tabular format. +
      +
    +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:1st January 2024 +
+

+ Initial Commit for Website Multi Variant Add to Cart.

+
+
+
+
+
+
+
+

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/website_multi_variant/views/website_multi_variant_templates.xml b/website_multi_variant/views/website_multi_variant_templates.xml new file mode 100644 index 000000000..e80751c94 --- /dev/null +++ b/website_multi_variant/views/website_multi_variant_templates.xml @@ -0,0 +1,114 @@ + + + + + + +