Odoo18-Base/addons/website_sale_stock_wishlist/controllers/variant.py
2025-01-06 10:57:38 +07:00

14 lines
499 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.http import request, route
from odoo.addons.website_sale.controllers.variant import WebsiteSaleVariantController
class WebsiteSaleStockWishlistVariantController(WebsiteSaleVariantController):
@route()
def get_combination_info_website(self, *args, **kwargs):
request.update_context(website_sale_stock_wishlist_get_wish=True)
return super().get_combination_info_website(*args, **kwargs)