partner-contact/partner_address_street3/model/country.py

19 lines
478 B
Python
Raw Normal View History

2021-03-23 19:36:29 +00:00
# © 2014-2016 Camptocamp SA
# @author: Nicolas Bessi
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from flectra import fields, models
class ResCountry(models.Model):
"""Override default adresses formatting of countries"""
_inherit = 'res.country'
address_format = fields.Text(
default=(
"%(street)s\n%(street2)s\n%(street3)s\n"
"%(city)s %(state_code)s %(zip)s\n"
"%(country_name)s"
)
)