1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/website_event_social/views/event_event_views.xml
2024-12-10 09:04:09 +07:00

20 lines
763 B
XML

<?xml version="1.0"?>
<odoo>
<record id="event_event_view_form" model="ir.ui.view">
<field name="name">event.event.view.form.inherit.social</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='stage_id']" position="before">
<field name="firebase_enable_push_notifications" invisible="1"/>
<field name="registration_ids" invisible="1"/>
<button name="action_send_push" string="Send Push" type="object"
groups="social.group_social_user"
invisible="not registration_ids or not firebase_enable_push_notifications"/>
</xpath>
</field>
</record>
</odoo>