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.
51 lines
2.2 KiB
51 lines
2.2 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Mohammed Irfan T(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 <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
"""This class used to inherit Res Configuration for adding extra fields"""
|
|
_inherit = 'res.config.settings'
|
|
|
|
mobile_phone_no = fields.Char(string='Mobile Phone No:',
|
|
help='User Can add mobile number',
|
|
config_parameter='integration_whatsapp_chat_live.'
|
|
'mobile_phone_no')
|
|
custom_message = fields.Text(string="Custom Message",
|
|
help='User Can add custom message')
|
|
|
|
@api.model
|
|
def get_values(self):
|
|
"""Return values for the field custom messages"""
|
|
res = super(ResConfigSettings, self).get_values()
|
|
params = self.env['ir.config_parameter'].sudo()
|
|
custom_message_id = params.get_param(
|
|
'integration_whatsapp_chat_live.custom_message')
|
|
res.update(custom_message=custom_message_id, )
|
|
return res
|
|
|
|
@api.model
|
|
def set_values(self):
|
|
"""Set values for the field custom messages"""
|
|
super(ResConfigSettings, self).set_values()
|
|
self.env['ir.config_parameter'].sudo().set_param(
|
|
"integration_whatsapp_chat_live.custom_message",
|
|
self.custom_message)
|
|
|