Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

override create method in the new openerp API

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
9 Respuestas
55435 Vistas
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
Descartar
Avatar
Yurdik Cervantes Mendoza
Mejor respuesta

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
Descartar
Avatar
Burhan Vakharia
Mejor respuesta

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
Descartar
Avatar
Akhil P Sivan
Mejor respuesta

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
Descartar
Avatar
Prakash
Mejor respuesta

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
Descartar
Avatar
loic972
Autor Mejor respuesta

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

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

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