summaryrefslogtreecommitdiff
path: root/addons/base_address_city/views/res_country_view.xml
blob: 9e57ed5700b740b5143b8bf04b0a5c5b718bdeb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <data>
    <record id="view_res_country_city_extended_form" model="ir.ui.view">
        <field name="model">res.country</field>
        <field name="inherit_id" ref="base.view_country_form"/>
        <field name="arch" type="xml">
            <xpath expr="//div[hasclass('oe_button_box')]" position="inside">
                <button name="%(action_res_city_tree)d"
                    class="oe_stat_button"
                    icon="fa-globe"
                    type="action"
                    context="{'default_country_id': active_id, 'search_default_country_id': active_id}"
                    string="Cities">
                </button>
            </xpath>
            <xpath expr="//field[@name='phone_code']" position="after">
                <field name="enforce_cities"/>
            </xpath>
        </field>
    </record>
    </data>
</odoo>