14 lines
391 B
Python
14 lines
391 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2016 Eficent Business and IT Consulting Services S.L.
|
|
# (http://www.eficent.com)
|
|
# © 2016 Serpent Consulting Services Pvt. Ltd. (<http://www.serpentcs.com>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from openerp import models
|
|
|
|
|
|
class Partner(models.Model):
|
|
|
|
_name = 'res.partner'
|
|
_inherit = ['res.partner', 'mail.thread']
|