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.
 
 
 
 
 

49 lines
2.0 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Form view of the model give.vote-->
<record id="give_vote_view_form" model="ir.ui.view">
<field name="name">give.vote.view.form</field>
<field name="model">give.vote</field>
<field name="arch" type="xml">
<form>
<group class="oe_title">
<field name="employee_id"/>
<field name="priority" widget="priority"/>
<field name="comments"/>
<field name="reference"/>
<field name="employee_department_id"/>
<field name="is_vote" invisible="1"/>
</group>
<footer>
<button name="action_vote" string="Vote" type="object"
class="oe_highlight"/>
<button name="action_submit_comment" string="Submit comment"
type="object" class="oe_highlight"/>
</footer>
</form>
</field>
</record>
<!--Tree view of the model give.vote-->
<record id="give_vote_views_tree" model="ir.ui.view">
<field name="name">give.vote.view.tree</field>
<field name="model">give.vote</field>
<field name="arch" type="xml">
<tree>
<field name="employee_id"/>
<field name="employee_department_id"/>
<field name="comments"/>
<field name="priority"/>
<field name="status"/>
</tree>
</field>
</record>
<!--wizard action-->
<record id="give_vote_wizard_action" model="ir.actions.act_window">
<field name="name">Give Vote</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">give.vote</field>
<field name="view_mode">form</field>
<field name="view_id" ref="give_vote_view_form"/>
<field name="target">new</field>
</record>
</odoo>