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.
 
 
 
 
 

47 lines
1.9 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- POS Custom Message Tree View -->
<record id="pos_custom_message_view_tree" model="ir.ui.view">
<field name="name">pos.custom.message.view.tree</field>
<field name="model">pos.custom.message</field>
<field name="arch" type="xml">
<tree>
<field name="title"/>
<field name="message_type"/>
<field name="execution_time" widget="float_time"/>
<field name="message_text" optional="hide"/>
</tree>
</field>
</record>
<!-- POS Custom Message Form View -->
<record id="pos_custom_message_view_form" model="ir.ui.view">
<field name="name">pos.custom.message.view.form</field>
<field name="model">pos.custom.message</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="message_type"/>
<field name="title"/>
<field name="message_text"/>
</group>
<group/>
<group>
<field name="execution_time" widget="float_time"/>
<field name="pos_config_ids" widget="many2many_tags"/>
</group>
</sheet>
</form>
</field>
</record>
<!-- POS Custom Message Action -->
<record id="pos_custom_message_action" model="ir.actions.act_window">
<field name="name">Pos Custom Message</field>
<field name="res_model">pos.custom.message</field>
<field name="view_mode">tree,form</field>
</record>
<!-- POS Custom Message Menu Item -->
<menuitem id="pos_custom_message_menu_root"
action="pos_custom_message_action"
parent="point_of_sale.menu_point_config_product"/>
</odoo>