Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Product customization & inheritance

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
inheritancecustomizationproduct.productodooV8
2 Răspunsuri
5422 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Zbik
Cel mai bun răspuns

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
Imagine profil
Abandonează
Imagine profil
Motez
Cel mai bun răspuns

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
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Look for product quantities on a specific res.partner location - Odoo v8
product.product odooV8
Imagine profil
0
nov. 17
3827
How to pass data from a class to another Rezolvat
inheritance odooV8
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
8
aug. 15
17530
Odoo 8 view inheritance problem
inheritance odooV8
Imagine profil
Imagine profil
1
mar. 15
3898
How to add field into product.template model form view's Purchase tab line? Rezolvat
sales inheritance odooV8
Imagine profil
Imagine profil
Imagine profil
2
iul. 25
2375
Inherited res.users form error while openingen with other user than admin
inheritance res.users odooV8
Imagine profil
1
mai 16
6671
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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