res_users.py 322 B

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