Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
3 Odpovědi
9944 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Nejlepší odpověď

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
Zrušit
Nejlepší odpověď

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


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

Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
0
bře 25
1319
0
led 25
3411
1
srp 23
14724
1
srp 23
13327
1
čvc 23
10361