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

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