partner.py
557 Bytes
import time
import logging
from psycopg2 import sql, DatabaseError
from odoo import api, fields, models, _
from odoo.tools import DEFAULT_SERVER_DATETIME_FORMAT
from odoo.exceptions import ValidationError
from odoo.addons.base.models.res_partner import WARNING_MESSAGE, WARNING_HELP
class ResPartner(models.Model):
_name = 'res.partner'
_inherit = 'res.partner'
# is_hotel = fields.Boolean(string='Is a Hotel', default=False,
# help="Check if the contact is a hotel, otherwise it is non hotel")