Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
1309 Представления

Hello,


I would like to reduce or even erase the banner in Helpdesk (the one on the top where we can see the stats of the tickets) because I don't need to see those informations very often and they make the teams less readable. Is there a way to do that? I'm on Odoo15

Thanks

Аватар
Отменить
Лучший ответ

Hi,

To remove the banner from Helpdesk, you have to inherit the XML kanban view of the "helpdesk.team" model and remove the "js_class" attribute from the kanban tag.

To do that you can try this code:

<record id="your_xml_id" model="ir.ui.view">


   <field name="name">your_xml_name</field>


   <field name="model">helpdesk.team</field>


   <field name="inherit_id" ref="helpdesk.helpdesk_team_view_kanban"/>


   <field name="arch" type="xml">


        <xpath expr="//kanban" position="attributes">


            <attribute name="js_class">0</attribute>


        </xpath>


   </field>


</record>


Regards

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
авг. 25
375
0
мар. 25
1707
0
окт. 24
1670
1
сент. 24
1759
1
авг. 24
1878