Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

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

Naroči se

Get notified when there's activity on this post

This question has been flagged
fieldinheritrelatedodoo10
1 Odgovori
6757 Prikazi
Avatar
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
Avatar
Opusti
Avatar
Art
Avtor Best Answer

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
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Can't add a field to an inherited model. Solved
field inherit model odoo10
Avatar
Avatar
Avatar
3
dec. 16
9338
[odoo10] : How to inherit <templates> of web module? Solved
templates inherit odoo10
Avatar
Avatar
Avatar
18
dec. 22
38695
How to make field required depending on the create_date timestamp? Solved
form field odoo10
Avatar
Avatar
1
nov. 19
5847
How to override sale.report the right way?
sale inherit odoo10
Avatar
Avatar
1
jun. 18
6614
Expected singleton on One2many model with related fields Solved
one2many related odoo10
Avatar
Avatar
6
jun. 18
6392
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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