Odoo modules extending contacts / partners
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.

11 lines
265 B

  1. import logging
  2. from odoo import models, fields, api, tools
  3. _logger = logging.getLogger(__name__)
  4. class ResPartner(models.Model):
  5. _name = "res.partner"
  6. phone2 = fields.Char("Phone 2", unaccent=False)
  7. mobile2 = fields.Char("Mobile 2", unaccent=False)