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.
27 lines
799 B
27 lines
799 B
# © 2014-2016 Camptocamp SA
|
|
# @author: Nicolas Bessi
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
"""Add third field in address"""
|
|
_inherit = "res.partner"
|
|
|
|
street3 = fields.Char('Street 3')
|
|
|
|
@api.model
|
|
def _address_fields(self):
|
|
fields = super(ResPartner, self)._address_fields()
|
|
fields.append('street3')
|
|
return fields
|
|
|
|
@api.multi
|
|
def _display_address(self, without_company=False):
|
|
"""Remove empty lines which can happen when street3 field is empty."""
|
|
res = super(ResPartner, self)._display_address(
|
|
without_company=without_company)
|
|
while '\n\n' in res:
|
|
res = res.replace('\n\n', '\n')
|
|
return res
|