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.
 
 
 
 
 

21 lines
753 B

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<!-- Defines a tree view for the ora files.-->
<record id="ora_file_tree_view" model="ir.ui.view">
<field name="name">ora.file.tree.view</field>
<field name="model">ora.file</field>
<field name="arch" type="xml">
<list editable="bottom">
<field name="name"/>
<field name="file"/>
<field name="id_file"/>
</list>
</field>
</record>
<!-- Action for the model.-->
<record id="ora_file_action" model="ir.actions.act_window">
<field name="name">Files</field>
<field name="res_model">ora.file</field>
<field name="view_mode">list</field>
</record>
</odoo>