Skip to content

Commit

Permalink
[FIX] base_address_extended: NL street format
Browse files Browse the repository at this point in the history
The street format for Netherlands should be have the street name beforfe
the street number.

Closes #25204
opw-1859233
  • Loading branch information
nim-odoo committed Jun 15, 2018
1 parent d702e82 commit b09b3d5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addons/base_address_extended/__manifest__.py
Expand Up @@ -16,7 +16,8 @@
with the street name, the house number, and room number.
""",
'data': [
'views/base_address_extended.xml'
'views/base_address_extended.xml',
'data/base_address_extended_data.xml',
],
'depends': ['base'],
}
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<record id="base.nl" model="res.country">
<field eval="'%(street_name)s %(street_number)s/%(street_number2)s'" name="street_format" />
</record>
</data>
</odoo>

0 comments on commit b09b3d5

Please sign in to comment.