Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to override field_view_get field in orm model in openerp

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 448
    Comment on it

    In openerp first override the orm model and add fields field_view_get in orm model then return the Dictionary of Fields, arch and toolbar in orm model.
    you can use this function as given below.

    1. def fields_view_get(self, cr, user, view_id=None, view_type='form', context=None,\
    2. toolbar=False, submenu=False):
    3.  
    4. res = {}
    5. res = super(board_board, self).fields_view_get(cr, user, view_id, view_type,\
    6. context, toolbar=toolbar, submenu=submenu)
    7.  
    8. vids = self.pool.get('ir.ui.view.custom').search(cr, user,\
    9. [('user_id', '=', user), ('ref_id' ,'=', view_id)])
    10. if vids:
    11. view_id = vids[0]
    12. arch = self.pool.get('ir.ui.view.custom').browse(cr, user, view_id, context=context)
    13. res['custom_view_id'] = view_id
    14. res['arch'] = arch.arch
    15. res['arch'] = self._arch_preprocessing(cr, user, res['arch'], context=context)
    16. res['toolbar'] = {'print': [], 'action': [], 'relate': []}
    17. return res

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: