You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.5 KiB
57 lines
2.5 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions (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 <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import http
|
|
from odoo.http import request
|
|
from odoo.addons.website.controllers.form import WebsiteForm
|
|
|
|
class CustomWebsiteForm(WebsiteForm):
|
|
"""
|
|
This class extends the WebsiteForm controller in Odoo to allow custom handling
|
|
of form submissions from the website. Specifically, it modifies form submissions
|
|
for the 'mail.mail' model to concatenate the 'name' and 'second_name' fields
|
|
into a single 'name' field before processing the form.
|
|
"""
|
|
@http.route('/website/form/<string:model_name>', type='http',
|
|
auth="public", methods=['POST'], website=True)
|
|
def website_form(self, model_name, **kwargs):
|
|
"""
|
|
If the model is 'mail.mail' and the fields 'name' and 'second_name' are
|
|
provided, it concatenates these two fields into the 'name' field.
|
|
"""
|
|
if model_name == 'mail.mail':
|
|
if 'name' in kwargs and 'second_name' in kwargs:
|
|
kwargs['name'] = f"{kwargs['name']} {kwargs['second_name']}"
|
|
kwargs.pop('second_name', None)
|
|
return super(CustomWebsiteForm, self).website_form(model_name, **kwargs)
|
|
|
|
|
|
@http.route('/get-company/address',type='json',auth="public",website=True,csrf=False)
|
|
def get_company_address(self):
|
|
"""
|
|
Retrieve the company address for the current user.
|
|
"""
|
|
user_id = request.env.user
|
|
address_components = [user_id.company_id.street,user_id.company_id.city,
|
|
user_id.company_id.state_id.display_name,
|
|
user_id.company_id.country_id.display_name
|
|
]
|
|
return ' '.join(filter(None, address_components))
|
|
|