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

Default in openerp list view record once clicked its open the form view in edit mode. The same functionality how to apply in button for example List view button added once list view button clicked it switch into the form view based on this the below code used:-

        return {
            "type": "ir.actions.act_window",
            "name": "Sales Order",
            "res_model": "sale.order",
            "res_id": ids and ids[0] or False,
            "view_type": "form",
            "view_mode": "form, tree,calendar,graph",
            "view_id":  False
    "views" : [(False,'form'),(False,'tree'),(False,'calendar'),(False,'graph')],
    }

After clicking the button Form view shows data after that switch into list view data not shows but other view calendar, graph and form shows data. Only list view not shows data how to solve the issue?

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
січ. 24
14255
2
бер. 18
5062
0
січ. 18
3174
2
лют. 24
25632
3
лют. 25
55531