Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Guest House
    • Distributeur de boissons
    • Hotel
    Real Estate
    • Real Estate Agency
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consulting
    • Accounting Firm
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Solar Energy Systems
    • Cordonnier
    • Services de nettoyage
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Odoo 18 - Custom Module - Error on nested class view

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
developmentmodules
2 Réponses
3532 Vues
Avatar
Cedric

Hey all, writing some Odoo modules to get into module development.

I have a wizard.py​ that specifies:

class MyWizard(models.TransientModel):
    _name = 'my.wizard'
    _description = 'Wizard'
    line_ids = fields.One2many("my.wizard.line", "wizard_id", string="Lines")


And a wizard_line.py​that has:

class MyWizardLine(models.TransientModel):
    _name = 'my.wizard.line'
    _description = 'Wizard Line'
    wizard_id = fields.Many2one('my.wizard', string="Wizard")
    sale_line_id = fields.Many2one('sale.order.line', string="Sale Order Line")
    product_id = fields.Many2one('product.product', string="Product", required=True)

Both are being imported in __init__.py​:

from . import wizard
from . import wizard_line


I have a view under views/wizard_view.xml​:

<odoo>
    <record id="my_wizard_form" model="ir.ui.view">
        <field name="name">my.wizard.form</field>
        <field name="model">my.wizard</field>
        <field name="arch" type="xml">
            <form string="This is a wizard">
                <group>
                    <field name="sale_id" readonly="1"/>
                    <field name="line_ids">
                        <tree>
                            <field name="product_id"/>
                        </tree>
                    </field>
                </group>
                <footer>
                    <button string="Cancel" class="btn-secondary" special="cancel"/>
                </footer>
            </form>
        </field>
    </record>
</odoo>


But this part:

<field name="line_ids">
​<tree>
    ​<field name="product_id"/>
​</tree>
</field>


Throws an error saying:

Field "product_id" does not exist in model "my.wizard"

It appears as if the view is trying to access product_id​ directly on my.wizard​ while it should grab the one that's available through the line_ids​ One2many reference to my.wizard.line​?


Am I doing this wrong?

0
Avatar
Ignorer
Cedric
Auteur

It does, doesn't it...

However, line_ids is defined as follows in the parent class with name my.wizard​:

line_ids = fields.One2many("my.wizard.line", "wizard_id", string="Lines")

The line model has the name:

_name = 'my.wizard.line'

The view references the parent model:

<field name="model">my.wizard</field>

And subsequently uses line_ids​ correctly:

<field name="line_ids">

I feel like I'm making some obvious logic error here somewhere...

Caitlyn Beasley

It looks like the error might be related to how the nested class is being referenced in the view. Double-check that the correct model name is used in the record or field tags within the XML. Also, make sure any custom fields in the nested class are properly defined and accessible.

Cedric
Auteur

Hi Emad,

Thank you so much! I knew it HAD to be some new tag in Odoo 18 :-)

I can't accept or upvote because I don't have the karma to do so yet. But when I get my 5 karma, I'll revisit, accept and upvote :-)

Avatar
Emad Akram
Meilleure réponse

Hello Cedric

in Odoo 18 the tag 

<tree> 

was replaced with the tag 

<list>

So in your current code Odoo handles the product_id field as if its a field in the model "my.wizard"

if you use the <list> instead of the <tree> it will handle it as a field in the "my.wizard.line"

If this helps please upvote my answer and mark it correct

0
Avatar
Ignorer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,

Please check with the following code.

<field name="line_ids">
<list name="Lines">
<field name="product_id"/>
</list>
</field>

In Odoo 18 tag <tree> replaced with the  <list>.


Hope it helps

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
How to upgrade modules in a specific file?
development modules
Avatar
0
mars 24
2395
Trying to add fields to sale order form view give "AssertionError: Element openerp has extra content" Résolu
development modules
Avatar
Avatar
2
nov. 16
6522
Error: External ID not found in the system Résolu
development modules
Avatar
Avatar
Avatar
3
févr. 16
17386
How do I apply changes to and test the TDD Developer Workflow ? Résolu
development modules
Avatar
Avatar
1
mars 15
5042
How to prevent some modules from loading
development modules
Avatar
Avatar
Avatar
Avatar
3
mars 15
10260
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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