This question has been flagged
1 Reply
6648 Views

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.

Avatar
Discard
Best Answer

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
    }
Avatar
Discard