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
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    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

import a field from product to my module

Abonare

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

Această întrebare a fost marcată
modulesmany2one
4211 Vizualizări
Imagine profil
Xleth Yireh

Hello! i try to import a field from the product module to my module, but when i try it, it appears all the product data and not just the field i want, here is the code of the .py file:

 

class student(osv.osv):
    _name = 'student'
    _rec_name = 'default_code'
    _columns = {
        'name': fields.char('name',size=30,required=True, help='the name'),
        'first_name': fields.char('first name',size=30,required=True, help='the first name'),
        'birth_date': fields.date('birth date',size=30,required=True, help='the birth date'),
        'email': fields.char('email', help='the email'),
        'phone': fields.integer('phone',size=30, help='the phone'),
        'sexo': fields.selection([('m','Masculino'),('f','Femenino')],'Sexo',help="Opcion sexual"),
        'product': fields.many2one('product.product','cantidad', help='the Specialty'),

    }
student()

And my view:

<record model="ir.ui.view" id="view_student_form">
                <field name="name">student.form</field>
                <field name="model">student</field>
                <field name="type">form</field>
                <field name="arch" type="xml">
                    <form string="student">
                        <group col="1" colspan="2">
                            <field name='image_medium' widget='image' />
                        </group>
                        <group col="2" colspan="2">
                            <field name="name" select="1"/>
                            <field name="first_name" select="2"/>
                            <field name="phone" />
                        </group>
                        <group col="2" colspan="2">
                            <field name="birth_date" select="0"/>
                            <field name="email" select="0"/>
                            <field name='sexo'/>
                        </group>
                        <notebook colspan="4">
                            <page string="stock">
                                <field name="product" select="0" widget='many2one_list'/>
                            </page>
                        </notebook>

And this is how it appears: http://drasticelanik.comoj.com/product.jpg

it appears the name field and not the default_code field.

I'm doing something wrong?

0
Imagine profil
Abandonează
Prakash

In the student table you define _rec_name = 'default_code' its wrong. to Inherit product.product table and define _rec_name or using override name_get method in the product.product class and display the default_code.

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
Autofill many2one field with the "Owner" id
modules many2one openerp7
Imagine profil
0
iun. 15
4467
value not pass from many2one field to form
many2one
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
sept. 25
2278
Nuevo menú en "CRM"
modules
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
iul. 25
2754
Allow Access to update module
modules
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
mai 25
4621
Display values of dropdown in a many2one field Rezolvat
many2one
Imagine profil
Imagine profil
2
feb. 25
6874
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