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.
 
 
 
 
 

29 lines
956 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="history_label_view_tree" model="ir.ui.view">
<field name="name">History</field>
<field name="model">label.history</field>
<field name="arch" type="xml">
<tree string="History">
<field name="edited_person"/>
<field name="date"/>
<field name="model"/>
<field name="old_label"/>
<field name="new_label"/>
</tree>
</field>
</record>
<record id="label_history_details" model="ir.actions.act_window">
<field name="name">Label History</field>
<field name="res_model">label.history</field>
<field name="view_mode">tree</field>
<field name="context">{}</field>
</record>
<menuitem id="history_data_details" name="Label Change History" parent="base.next_id_2" sequence="5" action="label_history_details"/>
</odoo>