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.
20 lines
814 B
20 lines
814 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--To add the field in the country for terms and condition-->
|
|
<odoo>
|
|
<record id="res_country_form_inherit" model="ir.ui.view">
|
|
<field name="name">res.country.view.form.terms.and.condition</field>
|
|
<field name="model">res.country</field>
|
|
<field name="inherit_id" ref="base.view_country_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='state_ids']" position="after">
|
|
<notebook>
|
|
<page string="Terms and Conditions">
|
|
<group>
|
|
<field name="sale_terms_condition" widget="html"/>
|
|
</group>
|
|
</page>
|
|
</notebook>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|