I have a button in a form, that calls an object method returning a Window Action dictionary.
Clicking on it, it opens a new form, as desired. This form opens in View mode.
Is it possible to make it open in Edit mode ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I have a button in a form, that calls an object method returning a Window Action dictionary.
Clicking on it, it opens a new form, as desired. This form opens in View mode.
Is it possible to make it open in Edit mode ?
Hi,
Pass form_view_initial_mode as edit in the context.
Sample:
def action_duplicate(self):
self.ensure_one()
action = self.env["ir.actions.actions"]._for_xml_id("account.action_move_journal_line")
action['context'] = dict(self.env.context)
action['context']['form_view_initial_mode'] = 'edit'
action['context']['view_no_maturity'] = False
action['views'] = [(self.env.ref('account.view_move_form').id, 'form')]
action['res_id'] = self.copy().id
return action
See: How To Open Form View In Edit Mode From Python Code Odoo
Thanks
Create an account today to enjoy exclusive features and engage with our awesome community!
Üye Olİlgili Gönderiler | Cevaplar | Görünümler | Aktivite | |
---|---|---|---|---|
|
1
Mar 15
|
4262 | ||
|
3
Mar 15
|
5905 | ||
Form Sheet width
Çözüldü
|
|
8
May 16
|
33928 | |
|
1
May 15
|
3971 | ||
|
1
Mar 15
|
17763 |
See http://help.openerp.com/question/3447/closed-open-a-form-in-a-specified-state-editbrowse/