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

How to add field(s) to multiple forms in different modules?

Abonare

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

Această întrebare a fost marcată
fieldinheritrelatedodoo10
1 Răspunde
6759 Vizualizări
Imagine profil
Art

I'm using v10 and I'm trying to add few fields to 'res.partner' and then add the same fields to other forms.

Here are my .py and .xml:

class add_vendor_ship_carrier(models.Model):
    _inherit = 'res.partner'
    ship_carrier = fields.Char('Ship Carrier')
    ship_carrier_account = fields.Char('Ship Carrier Account')

class add_to_sales_order(models.Model):
    _inherit = 'sale.order'
    ship_carrier = fields.Char(related='partner_id.ship_carrier')
    ship_carrier_account = fields.Char(related='partner_id.ship_carrier_account')

class add_to_purchase_order(models.Model):
    _inherit = 'purchase.order'
    ship_carrier = fields.Char(related='partner_id.ship_carrier')
    ship_carrier_account = fields.Char(related='partner_id.ship_carrier_account')
<record id="ship_carrier_supplier_form" model="ir.ui.view"> 
<field name="name">vendor.carrier.inherit</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="priority">36</field>
<field name="arch" type="xml">
<field name="property_stock_supplier" position="after">  
<field name="ship_carrier"/>
           <field name="ship_carrier_account"/>  
</field>
</field>
</record>

<record id="ship_carrier_sale_order_form" model="ir.ui.view">
    <field name="name">customer.carrier.sale.order.inherit</field>
    <field name="model">sale.order</field>
    <field name="inherit_id" ref="sale.view_order_form"/>
    <field name="priority">36</field>
    <field name="arch" type="xml">
        <field name="fiscal_position_id" position="after">
            <field name="ship_carrier"/>
            <field name="ship_carrier_account"/>
        </field>
    </field>
</record>

<record id="supplier_carrier_purchase_order_form" model="ir.ui.view">
<field name="name">supplier.carrier.purchase.order.inherit</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="priority">36</field>
   <field name="arch" type="xml">
<field name="date_planned" position="after">
<field name="ship_carrier"/>
<field name="ship_carrier_account"/>
</field>
</field>
</record>

It added my 2 custom fields to 'res.partner' and to 'sale.order' forms, but not to 'purchase.order' form.

I'm getting the following error:

ValueError: Can't validate view:
Field `ship_carrier` does not exist

I'm trying to use related fields to add them to multiple forms, but it doesn't work for purchase order for some reason. 

What am I doing wrong and what is the easiest way to add a field to multiple forms?

Thanks for help in advance.

0
Imagine profil
Abandonează
Imagine profil
Art
Autor Cel mai bun răspuns

So one smart man told me that I was getting that error because of this:

<field name="date_planned" position="after">

I was trying to add field in the tree view purchase.order.line \https://github.com/odoo/odoo/blob/10.0/addons/purchase/views/purchase_views.xml#L212

I tried to add them to an existing tabs by using <xpath> and following xml tags like expr="//form/sheet/notebook/page ...", but I failed. So I created a separate tab and put my fields in there. It's not exactly what I wanted, but good enough for now.


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
Can't add a field to an inherited model. Rezolvat
field inherit model odoo10
Imagine profil
Imagine profil
Imagine profil
3
dec. 16
9339
[odoo10] : How to inherit <templates> of web module? Rezolvat
templates inherit odoo10
Imagine profil
Imagine profil
Imagine profil
18
dec. 22
38697
How to make field required depending on the create_date timestamp? Rezolvat
form field odoo10
Imagine profil
Imagine profil
1
nov. 19
5848
How to override sale.report the right way?
sale inherit odoo10
Imagine profil
Imagine profil
1
iun. 18
6614
Expected singleton on One2many model with related fields Rezolvat
one2many related odoo10
Imagine profil
Imagine profil
6
iun. 18
6392
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