Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

override create method in the new openerp API

Subscribe

Get notified when there's activity on this post

This question has been flagged
9 Replies
55430 Views
Avatar
loic972

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

0
Avatar
Discard
Avatar
Yurdik Cervantes Mendoza
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.

4
Avatar
Discard
Avatar
Burhan Vakharia
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/

1
Avatar
Discard
Avatar
Akhil P Sivan
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
1
Avatar
Discard
Avatar
Prakash
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

1
Avatar
Discard
Avatar
loic972
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.

 

0
Avatar
Discard
Ludo - 21South

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

OdooBot
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
OdooBot
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
Prakash

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'})

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now