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.
16 lines
664 B
16 lines
664 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inheriting and add the field to enable the seat booking option to the
|
|
website-->
|
|
<record id="view_event_form" model="ir.ui.view">
|
|
<field name="name">event.event.view.form.inherit.event.seat.booking</field>
|
|
<field name="model">event.event</field>
|
|
<field name="inherit_id" ref="event.view_event_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='auto_confirm']"
|
|
position="after">
|
|
<field name="is_seat_booking"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|