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
    • Conocimientos
    • 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

Product customization & inheritance

Suscribirse

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

Se marcó esta pregunta
inheritancecustomizationproduct.productodooV8
2 Respuestas
5401 Vistas
Avatar
Thijs Maenhout

Hi,

I'm trying to create a brewery customization. In order to do this, I would like to create different types of products. For example Yeast, Malt and Hops. Each Product has it own group of specific properties. So I reasoned: Lets inherit a new product from the standard product like this:
import time
from openerp.osv import fields, osv
class product_yeast(osv.osv): _inherit = 'product.product' _name = 'product.yeast' _columns = { 'yeast_form': fields.selection([('Vloeibare gist', 'Vloeibare gist'), ('Korrelgist', 'Korrelgist')], 'yeast_Form'), 'yeast_type': fields.selection([('Bovengist', 'Bovengist'), ('Bovengist', 'Bovengist'), ('Ondergist', 'Ondergist'), ('Wilde gist', 'Wilde gist'), ('Menggist', 'Menggist')], 'yeast_Form'), 'yeast_Flocculation': fields.selection( [('Laag', 'Laag'), ('Laag-medium', 'Laag-medium'), ('Medium', 'Medium'), ('Medium-hoog', 'Medium-hoog'), ('Hoog', 'Hoog'), ('Niet', 'Niet')], 'yeast_Flocculation'), } product_yeast()
next I was trying to make a customized view for this:

<?xml version="1.0" ?>
<openerp>
  <data>
  <data>
        <record model="ir.ui.view" id="view_product_form_yeast">
           <field name="name">product.product.tree.inherit</field>
            <field name="model">product.yeast</field>
            <field name="inherit_id" ref="product.product_product_tree_view"/>
            <field name="arch" type="xml">
                <field name="ean13" position="after">
                    <group string="Yeast">
                  <field name="yeast_form"/>
                  <field name="yeast_type"/>
                  <field name="yeast_Flocculation"/>
                    </group>
                </field>
            </field>
        </record>
        <record id="product_normal_form_view" model="ir.ui.view">
            <field name="name">product.normal.form.inherit</field>
            <field name="model">product.yeast</field>
            <field name="inherit_id" ref="product.product_normal_form_view"/>
            <field name="arch" type="xml">
                <field name="ean13" position="after">
                    <group string="Yeast">
                  <field name="yeast_form"/>
                  <field name="yeast_type"/>
                  <field name="yeast_Flocculation"/>
                    </group>
                </field>
            </field>
        </record>
    </data>
</openerp>
I was planning to make different views for each productType (yeast, malt, hops). But now it seems that the view doesn't work because product.yeast doesn't contain the field 'arch' tough it is inheriting from product.product:


raise ValidationError('\n'.join(errors))
ParseError: "ValidateError Field(s) `arch` failed against a constraint: Invalid view definition" while parsing file:///C:/Bitnami/odoo-8.0-6/apps/odoo/Lib/site-packages/odoo-8.0_a2115ef-py2.7.egg/openerp/addons/brewery/product_view.xml:4, near <record model="ir.ui.view" id="view_product_form_yeast"> <field name="name">product.product.tree.inherit</field> <field name="model">product.yeast</field> <field name="inherit_id" ref="product.product_product_tree_view"/> <field name="arch" type="xml"> <field name="ean13" position="after"> <group string="Yeast"> <field name="yeast_form"/> <field name="yeast_type"/> <field name="yeast_Flocculation"/> </group> </field> </field> </record>

So probably I'm modelling my products in the wrong way. What is the preferable way to add fields to different types of products? What are the downsides of my approach? Kind regards and thank you for your comments, Thijs

0
Avatar
Descartar
Avatar
Zbik
Mejor respuesta

1. In XML you have duplicate

<data>
<data>

2. Do not use in tree view

<group string="Yeast"> 

3. My suggestion, inherit by this way (without new model definition)

class product_product(osv.osv):
    _inherit = 'product.product'
####_name = 'product.yeast'
....
<field name="model">product.product</field> 


 

0
Avatar
Descartar
Avatar
Motez
Mejor respuesta

If you are going to have a small database and looking for a quick solution then do as Zbik said. However with this solution you'll have a plenty of empty data on your database and you may encounter some troubles with your code. My suggestion is to continue with what you are doing but you need to define new views for your custom models.

0
Avatar
Descartar
¿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
Look for product quantities on a specific res.partner location - Odoo v8
product.product odooV8
Avatar
0
nov 17
3819
How to pass data from a class to another Resuelto
inheritance odooV8
Avatar
Avatar
Avatar
Avatar
Avatar
8
ago 15
17519
Odoo 8 view inheritance problem
inheritance odooV8
Avatar
Avatar
1
mar 15
3889
How to add field into product.template model form view's Purchase tab line? Resuelto
sales inheritance odooV8
Avatar
Avatar
Avatar
2
jul 25
2347
Inherited res.users form error while openingen with other user than admin
inheritance res.users odooV8
Avatar
1
may 16
6665
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