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.
 
 
 
 
 

31 lines
1.2 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Seat arrangements view action-->
<record id="seat_arrangement_line_action" model="ir.actions.act_window">
<field name="name">seat.arrangement.line.action</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">seat.arrangement.line</field>
<field name="view_mode">tree,form</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to add the seat.
</p>
</field>
</record>
<!-- Seat arrangements form view-->
<record id="seat_arrangement_line_view_form" model="ir.ui.view">
<field name="name">seat.arrangement.line.view.form</field>
<field name="model">seat.arrangement.line</field>
<field name="arch" type="xml">
<form>
<sheet>
<group>
<field name="row_no"/>
<field name="column_ids" widget="many2many_tags"/>
<field name="seat_manage_id" invisible="1"/>
</group>
</sheet>
</form>
</field>
</record>
</odoo>