DigitalSignage/views/dss_marker.xml

54 lines
2.0 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="dss_marker_form" model="ir.ui.view">
<field name="name">dss_marker_form</field>
<field name="model">dss.marker</field>
<field eval="2" name="priority"/>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="markerid"/>
<field name="markername"/>
<field name="description" />
</group>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" options="{'post_refresh':True}" help="Follow this project to automatically track the events associated to tasks and issues of this project." groups="base.group_user"/>
<field name="activity_ids"/>
<field name="message_ids"/>
</div>
</form>
</field>
</record>
<record id="dss_marker_tree" model="ir.ui.view">
<field name="name">dss_marker_tree</field>
<field name="model">dss.marker</field>
<field name="priority" eval="16"/>
<field name="arch" type="xml">
<tree string="Trigger Aktionen">
<field name="markerid"/>
<field name="markername"/>
<field name="description"/>
</tree>
</field>
</record>
<record id="action_dss_marker_view" model="ir.actions.act_window">
<field name="name">DigitalSignage Datensatz-Marker</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">dss.marker</field>
<field name="view_mode">tree,form</field>
<field name="context">{}</field>
<field name="help" type="html">
<p class="'o_view_nocontent_smiling_face">
Neuen Standardtext erstellen
</p>
</field>
</record>
</odoo>