Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar 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
  • Proyecto
  • 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

How to add a simple field to partner?

Suscribirse

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

Se marcó esta pregunta
inheritance
3 Respuestas
15716 Vistas
Avatar
thenon

I've read the available documentation (particularly the travel example), and googled around, searched this forum, etc. Cannot find a bullet proof example of how to simply add a single field to partner and have it displayed.

Here's what I have:

__openerp__.py

{
    "name" : "NT3",
    "version" : "1.7",
    "author" : "Foo",
    "category" : "Generic Modules/Others",
    "website" : "http://www.example.com",
    "description": "Foo",
    "depends" : ["base"],
    "init_xml" : [],
    "update_xml" : ["nt2_view.xml"],
    "active": True,
    "installable": True
}

__init__.py:

import nt3

nt3.py:

from osv import osv, fields
from tools.translate import _

class res_partner(osv.osv):
    _inherit = 'res.partner'

    _columns = {
        'mycol': fields.char('MyCol', size=16, help='Foo'),
        }

res_partner()

nt2_view.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
     <data>

        <record id="view_partner_form" model="ir.ui.view">
            <field name="name">res.partner.form</field>
            <field name="model">res.partner</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="base.view_partner_form" />
            <field name="arch" type="xml">
                <field name="email" position="after">
                    <field name="mycol" />
                </field>
            </field>
        </record>   

    </data>
</openerp>

I can see mycol gets added to the database, but get this error when accessing the view:

2013-04-08 13:33:13,163 5956 ERROR dev8 openerp.osv.orm: **Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':
 * res.partner.form**

Either you wrongly customized this view, or some modules bringing those views are not compatible with your current data model
2013-04-08 13:33:13,163 5956 ERROR dev8 openerp.netsvc: View error
Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':
 * res.partner.form

Either you wrongly customized this view, or some modules bringing those views are not compatible with your current data model
Traceback (most recent call last):
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\netsvc.py", line 293, in dispatch_rpc
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\service\web_services.py", line 626, in dispatch
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\osv\osv.py", line 188, in execute_kw
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\osv\osv.py", line 144, in wrapper
except_osv: ('View error', u"Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':\n * res.partner.form\n\nEither you wrongly customized this view, or some modules bringing those views are not compatible with your current data model")
2013-04-08 13:33:13,173 5956 INFO dev8 werkzeug: 127.0.0.1 - - [08/Apr/2013 13:33:13] "POST /web/dataset/call_kw/res.partner:fields_view_get HTTP/1.1" 200 -

What have I done wrong?

apologies for formatting here - not easy to do on this forum.

2
Avatar
Descartar
Avatar
Carlos Yanez
Mejor respuesta

Hello!

I have tested and run your code. It works properly. Did you try to un-install your module and install it again?

Cheers, CarlosY

1
Avatar
Descartar
thenon
Autor

Restarting the server (as opposed to just deleting the pyc files, or upgrading the module in place) worked.

Carlos Yanez

I forgot that one, I do it all the time! :-)

Avatar
patrick
Mejor respuesta

I do not know if it is allowed to give your own view the same ID as the view you are trying to inherit. Try changing:

record id="view_partner_form" model="ir.ui.view"

to

record id="my_view_partner_form" model="ir.ui.view"

0
Avatar
Descartar
thenon
Autor

Made no difference unfortunately. I copied that code from an app that was published on app.openerp.com, so seems correct.

Ray Carnes

OpenERP will pre-pend the name of your module to every record id so you don't need to worry about it being unique.

AJ Schrafel Paper Corp

did you reload your module or restart your server so the new XML is loaded?

Ray Carnes

XML changes will be seen by OpenERP any time the module is updated - Python changes will not. The python code that OpenERP uses is loaded from disk once only - that happens when the server starts. Any changes made to python files that the server has already seen (loaded) remain invisible until the server is re-started (and they are re-loaded). If you add a new python file - such as when you create a brand new module - then the server sees it (loads it) when you install that module, but any subsequent changes are invisible (it already has it loaded). Always restart after Python changes.

thenon
Autor

Thanks Ray and Patently - that was exactly it - I had thought the compilation was dynamic after clicking "Upgrade" on the module.

Avatar
AJ Schrafel Paper Corp
Mejor respuesta

The field in your XML file needs the same capitalization as your python file -> MyCol

you are presently using mycol in your XML.

0
Avatar
Descartar
thenon
Autor

Would be surprised,since MyCol is the db column name, not the model name? Anyway, tried that, and got this: File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server.\openerp\osv\orm.py", line 2260, in fields_view_get File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server.\openerp\osv\orm.py", line 1937, in __view_look_dom_arch except_orm: ('View error', u"Can't find field 'MyCol' in the following view parts composing the view of object model 'res.partner':\n * res.partner.form\n\nEither you wrongly customized this view, or some modules bringing those views

Ray Carnes

mycol is the field name, MyCol is the label of that field..

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

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

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Can't inherit base.view_partner_form of res.partner
inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
4
feb 25
4102
Include in inherit from JS class
inheritance
Avatar
Avatar
1
ago 24
2944
How to Override a method in parent class in JS Resuelto
inheritance
Avatar
Avatar
2
nov 24
4376
Do I have to create a new module to change the standard form view?
inheritance
Avatar
Avatar
2
feb 23
3161
inherit problem: "cannot be located in parent view " for a <p /> inherited for sale_report_templates.line line 169
inheritance
Avatar
Avatar
1
dic 22
1371
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información 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 totalmente integrado.

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