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.
32 lines
1.3 KiB
32 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--product.template inherited views-->
|
|
<record id="product_template_only_form_view" model="ir.ui.view">
|
|
<field name="name">
|
|
product.template.view.form.inherit.website.restrict.country
|
|
</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id"
|
|
ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//notebook" position="inside">
|
|
<page name="countries" string="Countries">
|
|
<group>
|
|
<field name="country_availability" widget="radio"/>
|
|
</group>
|
|
<group>
|
|
<field name="country_selection_ids"
|
|
invisible="country_availability != 'selected'">
|
|
<tree string="Selected Country"
|
|
editable="bottom">
|
|
<field name="select_country_id" column_invisible="1"/>
|
|
<field name="country_id"/>
|
|
<field name="country_code"/>
|
|
</tree>
|
|
</field>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|