Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

override create method in the new openerp API

Odebírat

Get notified when there's activity on this post

This question has been flagged
9 Odpovědi
55455 Zobrazení
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
Zrušit
Avatar
Yurdik Cervantes Mendoza
Nejlepší odpověď

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

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

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

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

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
Zrušit
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!

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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