Skip to Content
Menú
This question has been flagged
3 Respostes
9953 Vistes

how to override the create method for a model in new api.


i have two models

1.'person_travel'

2.'person_calender'


second model is for the calender view. the 'person_travel'  creates records of  travel details with date.

what i need is , when a user creates a travel record  with a particular date i need that record to be displayed in the calender view with same date....how to do it??????


my plan is to override the create method in 'person_travel' model...how to achieve it??

Avatar
Descartar
Best Answer

Hi Abdul,

When you are overriding ORM Methods (write, create ...), if you don't want to call the super function(sometimes it will raise exception if you call super after your modification), you can use like this:-

To eliminate need of calling super method, you can use like this:-

instead of this -> super(stock_move, self).write(cr, uid, ids, vals, context=context)

you can give-> osv.osv.write(self, cr, uid, ids, vals, context=context)

This will call directly write function of ORM...

Hope this helps....



Avatar
Descartar
Best Answer

Hello,

For override create method you need to override this method in 'person_travel' model.


class person_travel(osv.osv):

  _descriptin = "Person Travel"

_name = "person.travel"

  _columns = {}


_defaults = {}

def create(self,cr,uid,vals,context=None)

    Put your code here.

   return super(person_travel, self).create(cr, uid, vals, context=context)


Hope this will help you.


Avatar
Descartar
Best Answer

Learn Overriding Create Method in Odoo 8 with Example - Odoo Technical


http://odootechnical.com/learn-overriding-create-method-in-odoo-8/

Avatar
Descartar
Related Posts Respostes Vistes Activitat
0
de març 25
1336
0
de gen. 25
3427
1
d’ag. 23
14742
1
d’ag. 23
13367
1
de jul. 23
10377