event_event_views.xml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo><data>
  3. <record id="event_event_view_form" model="ir.ui.view">
  4. <field name="name">event.event.view.form.inherit.meet</field>
  5. <field name="model">event.event</field>
  6. <field name="inherit_id" ref="website_event.event_event_view_form"/>
  7. <field name="priority" eval="10"/>
  8. <field name="arch" type="xml">
  9. <xpath expr="//field[@name='is_published']" position="before">
  10. <button class="oe_stat_button" context="{'default_event_id': active_id, 'search_default_event_id': active_id}" icon="fa-comments-o" name="%(event_meeting_room_action)d" type="action">
  11. <field name="meeting_room_count" string="Rooms" widget="statinfo"/>
  12. </button>
  13. </xpath>
  14. <xpath expr="//label[@for='community_menu']" position="attributes">
  15. <attribute name="invisible">0</attribute>
  16. </xpath>
  17. <xpath expr="//field[@name='community_menu']" position="attributes">
  18. <attribute name="invisible">0</attribute>
  19. </xpath>
  20. <xpath expr="//field[@name='community_menu']" position="after">
  21. <field name="meeting_room_allow_creation" invisible="1"/>
  22. </xpath>
  23. </field>
  24. </record>
  25. </data></odoo>