Odoo18-Base/addons/hr/views/discuss_channel_views.xml
2025-01-06 10:57:38 +07:00

15 lines
669 B
XML

<?xml version="1.0" ?>
<odoo><data>
<record id="discuss_channel_view_form" model="ir.ui.view">
<field name="name">discuss.channel.view.form.inherit.hr</field>
<field name="model">discuss.channel</field>
<field name="inherit_id" ref="mail.discuss_channel_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='group_ids']" position="after">
<field name="subscription_department_ids" widget="many2many_tags"
invisible="channel_type != 'channel'"
string="Auto Subscribe Departments"/>
</xpath>
</field>
</record>
</data></odoo>