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.
18 lines
475 B
18 lines
475 B
# © 2014-2016 Camptocamp SA
|
|
# @author: Nicolas Bessi
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo 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"
|
|
)
|
|
)
|