| 1234567891011121314 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- from odoo import api, fields, models, _
- from odoo.exceptions import UserError
- import logging
- _logger = logging.getLogger(__name__)
- class ResUsers(models.Model):
- _inherit = "res.users"
- # CRM sync method removed
|