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

Product customization & inheritance

Suscribirse

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

Se marcó esta pregunta
inheritancecustomizationproduct.productodooV8
2 Respuestas
5404 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.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Look for product quantities on a specific res.partner location - Odoo v8
product.product odooV8
Avatar
0
nov 17
3821
How to pass data from a class to another Resuelto
inheritance odooV8
Avatar
Avatar
Avatar
Avatar
Avatar
8
ago 15
17525
Odoo 8 view inheritance problem
inheritance odooV8
Avatar
Avatar
1
mar 15
3891
How to add field into product.template model form view's Purchase tab line? Resuelto
sales inheritance odooV8
Avatar
Avatar
Avatar
2
jul 25
2355
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 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.

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