how can I hide the create button from the account.invoice_tree view, when I call the view from the accounting dashboard option, and show it when I call the view from the invoices menu option. Please I will appreciate your help and more detail. Thank you.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
2
Risposte
4637
Visualizzazioni
Hi,
You can pass create = False inside the context.
See the sample,
context = dict(self.env.context or {})
context.update(create=False)
views = [
(tree_view_id, 'tree'),
(form_view_id, 'form'),
(graph_view_id, 'graph')
]
return {
'name': _('Product Margins'),
'context': context,
'view_type': 'form',
"view_mode": 'tree,form,graph',
'res_model': 'product.product',
'type': 'ir.actions.act_window',
'views': views,
'view_id': False,
'search_view_id': search_view_id,
}
Thanks
Hello Niyas sir,
Your code very help full me.
1+
Thank you
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
2
ago 25
|
2754 | ||
|
1
lug 25
|
1098 | ||
|
1
ago 25
|
1151 | ||
|
0
mag 25
|
1526 | ||
|
2
apr 25
|
3719 |