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.
44 lines
1.9 KiB
44 lines
1.9 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Jumana Jabin MP(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.
|
|
|
|
###############################################################################
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
"""Inherits Company for Adding the Whatsapp Fields"""
|
|
_inherit = 'res.company'
|
|
|
|
whatsapp_number = fields.Char(string='Whatsapp Number',
|
|
help="The Company Whatsapp Number to "
|
|
"which the Inquiry messages has to"
|
|
" be received")
|
|
message = fields.Text(string='Message',
|
|
default="I want to know more details of the product",
|
|
help="This will be the Inquiry message")
|
|
|
|
@api.constrains('whatsapp_number')
|
|
def _check_whatsapp_number(self):
|
|
"""Validate Mobile Number"""
|
|
if self.whatsapp_number:
|
|
if not self.whatsapp_number.isnumeric() or not len(
|
|
self.whatsapp_number) > 8 or ' ' in self.whatsapp_number:
|
|
raise UserError(_('Whatsapp Number should be valid number'
|
|
' without any space or signs'))
|
|
|