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
268 B
11 lines
268 B
import logging
|
|
from odoo import models, fields, api, tools
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
phone2 = fields.Char("Phone 2", unaccent=False)
|
|
mobile2 = fields.Char("Mobile 2", unaccent=False)
|