Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
1322 Переглядів

Hello,

I am working on Odoo online 17.2e saas and I want to hide the 'Find missing transactions' menu item in the actions button on this screen. Is this possible?


Thanks.

Аватар
Відмінити
Найкраща відповідь


Try to remove this contextual action if it not works gives group as admin or anything

Аватар
Відмінити
Найкраща відповідь
def fields_view_get(self, view_id=None, view_type='form', toolbar=False,
submenu=False):
res = super().fields_view_get(view_id=view_id, view_type=view_type,
toolbar=toolbar, submenu=submenu)
if toolbar:
for action in res['toolbar'].get('action'):
if action.get('xml_id'):
if action['xml_id'] == 'your xml of action' and self._context.get(
'default_type') == 'entry':
res['toolbar']['action'].remove(action)
return res

Try this 

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
3
вер. 25
291
1
серп. 25
226
1
серп. 25
303
0
серп. 25
179
1
серп. 25
230