# -*- coding: utf-8 -*- ############################################################################### # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2024-TODAY Cybrosys Technologies() # Author: Ammu Raj (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 http from odoo.http import request class WebsiteCountry(http.Controller): """ This controller used to pass the selected country to the corresponding template. """ @http.route('/website/countries', type='json', auth="public", website=True) def website_countries(self, country_id): """ This function used to search the country id, and it renders the details of the selected country in to the template. """ country_id = request.env['res.country'].sudo().browse(int(country_id)) website_id = request.env['website'].sudo().browse(request.website.id) website_id.default_country_id = country_id.id response = http.Response( template='website_restrict_country.country_selection', qcontext={'country': country_id, 'countries': website_id.country_ids}) return response.render()