Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
7695 Lượt xem

Hello,

I am getting the following error from my function:

Error: QWeb2 - template['TreeView']: Runtime Error: TypeError: dict.field.attrs.modifiers is undefined

I want the function to switch the user's screen to the tree view, using the following code:

    view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name','=','database.sync.display.tree')])
    return {
        'name': ('act_database_sync_display_tree_view'),
        'domain': "[]",
        'view_type': 'tree',
        'view_mode': 'tree',
        'res_model': 'database.sync',
        'view_id': (view_id),
        'nodestroy': True,
        'target': 'current',
        'context': context,
        'type': 'ir.actions.act_window',
    }

What am i not returning that openerp wants to see? I don't need to see a specific record, i just want to switch from the form view back to the tree view when i push a button.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

If all you want is to return the standard list view of the model, then at the end of your function simply return this:

        return {
            'view_type': 'tree',
            'view_mode': 'tree,form',
            'res_model': 'database.sync',
            'type': 'ir.actions.act_window',
            'target': 'current',
            'context': context
    }
Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 6 18
2718
3
thg 4 25
4809
5
thg 11 23
43174
3
thg 9 23
9565
1
thg 9 22
3851