mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-19 13:41:59 +02:00
14 lines
366 B
Python
14 lines
366 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MailingContact(models.Model):
|
|
_name = 'mailing.contact'
|
|
_inherit = ['mailing.contact', 'mail.thread.phone']
|
|
|
|
mobile = fields.Char(string='Mobile')
|
|
|
|
def _phone_get_number_fields(self):
|
|
return ['mobile']
|