partner-contact/partner_address_street3/models/res_country.py
2021-05-30 02:14:14 +00:00

20 lines
486 B
Python

# Copyright 2014-2020 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"
)
)