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.
28 lines
1.1 KiB
28 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Defines the tree view for the label history -->
|
|
<record id="label_history_view_tree" model="ir.ui.view">
|
|
<field name="name">label.history.view.tree</field>
|
|
<field name="model">label.history</field>
|
|
<field name="arch" type="xml">
|
|
<list string="History">
|
|
<field name="user_id"/>
|
|
<field name="date"/>
|
|
<field name="model"/>
|
|
<field name="old_label"/>
|
|
<field name="new_label"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
<!-- Defines the action window for label history -->
|
|
<record id="label_history_action" model="ir.actions.act_window">
|
|
<field name="name">Label History</field>
|
|
<field name="res_model">label.history</field>
|
|
<field name="view_mode">list</field>
|
|
<field name="context">{}</field>
|
|
</record>
|
|
<!-- Adds a menu item for Label History -->
|
|
<menuitem id="label_history_menu" name="Label History"
|
|
parent="base.next_id_2" sequence="5"
|
|
action="label_history_action"/>
|
|
</odoo>
|
|
|