This question has been flagged
9 Replies
53533 Views

Hi,

i would like to know how to override create method in the new odoo API. to replace this :

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

     new_id = super(CRM_Lead, self).create(cr, uid, vals, context=context)

     lead = self.browse(cr, uid, new_id, context=context) 

     self._compute_stage_deadline(cr, uid, lead, context)

     return new_id

Avatar
Discard
Best Answer

Yo can see an example here:

http://bit.ly/1Gntm47

class AccountJournal(models.Model):
_inherit = "account.journal"

@api.model
def create(self, vals):
rec = super(AccountJournal, self).create(vals)
        # ...
return rec

Make sure you use the exact name of the python class in the super function and also that you return the same object you get from it.

Avatar
Discard
Best Answer

Learn how to override create method in Odoo v8 using API with example,

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

Avatar
Discard
Best Answer

Is that a spelling mistake in your answer, shown in the reply below? vals & values

    @api.model
def create(self, values):
new_id = super(res_partner, self).create(vals)
print values
Avatar
Discard
Best Answer

please see the below  link from v7 to new API code

http://www.slideshare.net/openobject/odoo-from-v7-to-v8-the-new-api

Avatar
Discard
Author Best Answer

I saw this doc but i didn't find the way to write my code.

for a create method, in the old method you return something,

but in the new method what do you return ? I have a dictionnary but nothing is created.

 

Avatar
Discard

Well did you still run the super method? It should still provide you with an id. new_id = super(CRM_Lead, self).create(vals)

Thanks for yur answer, i think i have a problem with my code.


import datetime
from lxml import etree
import math
import pytz
import urlparse
from openerp import models, fields, api, _
#from odoo import Model, api
from openerp import models, fields, api, _
from openerp.exceptions import Warning
from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT, DEFAULT_SERVER_DATE_FORMAT
import logging


class tiers(models.Model):
   
    _inherit = "res.partner"
    activation_date = fields.Date("Date d'effet")
    tiers_selection = fields.Many2one("tiersref")
    qty = fields.Char(string='qty', translate=True)             
    price = fields.Char(string='price', translate=True)
    description = fields.Char(string='Remarque', translate=True)
    redevance = fields.One2many('redevanceref','redevanceclient_id', string='redevance client')
   
    @api.multi
    def onchange_tiers(self,tiers_selection):
        if tiers_selection:
            state = self.env['tiersref'].browse(tiers_selection)
            print state.name
            if state.name == "Entite":
                print "ok"
                return {'value':{'is_company':True}}

   
    @api.model
    def create(self, values):
        new_id = super(res_partner, self).create(vals)
        print values




I have this answer :
global name res_partner is not defined.

Lauréote Loïc



Subject: Re: False
From: ludo@neobis.nl
To: laureote-loic@hotmail.fr
Date: Mon, 11 Aug 2014 10:36:21 +0000

Well did you still run the super method? It should still provide you with an id. new_id = super(CRM_Lead, self).create(vals)
--
Ludo - Neobis Sent by OpenERP S.A. using Odoo. Access your messages and documents in Odoo
I can't find this reply in the odoo help forum?

Anyway, your create method is on the "tiers" class, so the super should call that instead of res_partner.

-- 
mvg,
-
         Ludo van Zuylen
 
         Neobis ICT Dienstverlening BV
         Hoogvlietsekerkweg 130A
         3194 AM Hoogvliet-Rotterdam
 
         Tel      : +31(0)10-4814444

         Internet : http://www.neobis.nl

laureote-loic@hotmail.fr schreef op 11/08/14 om 13:07:
<blockquote cite="mid:DUB119-W498EC14F185141E92033308FED0@phx.gbl" type="cite">
Thanks for yur answer, i think i have a problem with my code.


import datetime
from lxml import etree
import math
import pytz
import urlparse
from openerp import models, fields, api, _
#from odoo import Model, api
from openerp import models, fields, api, _
from openerp.exceptions import Warning
from openerp.tools import DEFAULT_SERVER_DATETIME_FORMAT, DEFAULT_SERVER_DATE_FORMAT
import logging


class tiers(models.Model):
   
    _inherit = "res.partner"
    activation_date = fields.Date("Date d'effet")
    tiers_selection = fields.Many2one("tiersref")
    qty = fields.Char(string='qty', translate=True)             
    price = fields.Char(string='price', translate=True)
    description = fields.Char(string='Remarque', translate=True)
    redevance = fields.One2many('redevanceref','redevanceclient_id', string='redevance client')
   
    @api.multi
    def onchange_tiers(self,tiers_selection):
        if tiers_selection:
            state = self.env['tiersref'].browse(tiers_selection)
            print state.name
            if state.name == "Entite":
                print "ok"
                return {'value':{'is_company':True}}

   
    @api.model
    def create(self, values):
        new_id = super(res_partner, self).create(vals)
        print values




I have this answer :
global name res_partner is not defined.

Lauréote Loïc



Subject: Re: False
From: ludo@neobis.nl
To: laureote-loic@hotmail.fr
Date: Mon, 11 Aug 2014 10:36:21 +0000

Well did you still run the super method? It should still provide you with an id. new_id = super(CRM_Lead, self).create(vals)
--
Ludo - Neobis Sent by OpenERP S.A. using Odoo. Access your messages and documents in Odoo
--
loic972 Sent by OpenERP S.A. using Odoo. Access your messages and documents in Odoo

Create https://github.com/nbessi/odoo_new_api_guideline/blob/master/source/environment.rst Create has not changed, except the fact it now returns a recordset: self.create({'name': 'New name'})