12 lines
299 B
Python
12 lines
299 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')
|