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

18 lines
752 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="social_post_view_form" model="ir.ui.view">
<field name="name">social.post.view.form.inherit.push_notifications</field>
<field name="model">social.post</field>
<field name="inherit_id" ref="social.social_post_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='push_notification_image']" position="after">
<field name="use_visitor_timezone"
string="Local Time"
invisible="not display_push_notification_attributes or post_method == 'now'"/>
</xpath>
</field>
</record>
</data>
</odoo>