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
725 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_order_form_inherit" model="ir.ui.view">
<field name="name">fleet.vehicle.inherited</field>
<field name="model">fleet.vehicle</field>
<field name="inherit_id" ref="fleet.fleet_vehicle_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='first_contract_date']"
position="replace">
<field name="first_contract_date" invisible="1"/>
</xpath>
<xpath expr="//field[@name='first_contract_date']"
position="before">
<field name="registration_date"/>
</xpath>
</field>
</record>
</odoo>