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)
documents spreadsheets #Honduras #cursobloqueado #leccionesterminadas
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
documents spreadsheets #Honduras #cursobloqueado #leccionesterminadas
About this forum
  1. Documents
  2. Forum

Add new fields inside documents inspector

Naroči se

Get notified when there's activity on this post

This question has been flagged
documentsinspector
3 Odgovori
5788 Prikazi
Avatar
reham almahroom

can you help me please to add a new field inside documents inspector 
(add field inside black side of document information "that shown in below image")  



0
Avatar
Opusti
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

To add a field in document inspector, You need to push the field to inspectorFields. /** @odoo-module */
import { inspectorFields} from "@documents/views/inspector/documents_inspector";

inspectorFields.push("accessed_user_ids");


After that you can call the field in the XML using Xpath. The template name is documents.DocumentsInspector.documentsInfo.


Hope it helps

1
Avatar
Opusti
Tom Rubino

could you be a bit more specific on how to do that please? Right now I have the field as x_studio_document_name. When you say push the field what does that mean?

Avatar
Alberto
Best Answer

How work in odoo 17?

0
Avatar
Opusti
Avatar
Gracious Joseph
Best Answer

To add a new field inside the Documents Inspector panel in Odoo, as shown in the provided image, you can achieve this by customizing the documents.document model and the corresponding inspector view. Here’s how you can add a field step-by-step:

1. Enable Developer Mode

  1. Go to Settings > General Settings.
  2. Activate Developer Mode (find the option in the settings menu or from your user menu dropdown).

2. Add a Custom Field to the documents.document Model

You need to add a custom field to the model that powers the Documents module.

Option 1: Using Studio (Enterprise Only)

  1. Navigate to Documents > Configuration > Documents.
  2. Open Odoo Studio (if available).
  3. Drag and drop a new field into the form view for documents.
  4. Save the changes.

Option 2: Using a Custom Module (Community or Enterprise)

If you're using Odoo Community or prefer to work with code:

  1. Create a custom module or use an existing one.
  2. Add the following code to extend the documents.document model:
    from odoo import models, fields
    
    class DocumentsDocument(models.Model):
        _inherit = 'documents.document'
    
        custom_field = fields.Char(string="Custom Field")
    
  3. Update your module by running:
    odoo-bin -u your_module_name
    

3. Add the Field to the Documents Inspector View

The Documents Inspector panel is a special view tied to the documents.document model. You need to extend this view to include your custom field.

  1. Create a new XML file in your custom module, e.g., views/documents_inspector_view.xml.
  2. Add the following code to include the custom field:
    <odoo>
        <record id="view_document_inspector_inherit" model="ir.ui.view">
            <field name="name">documents.inspector.inherit</field>
            <field name="model">documents.document</field>
            <field name="inherit_id" ref="documents.documents_inspector_sidebar_view"/>
            <field name="arch" type="xml">
                <xpath expr="//div[@class='o_inspector_body']" position="inside">
                    <div>
                        <field name="custom_field" placeholder="Enter custom value here"/>
                    </div>
                </xpath>
            </field>
        </record>
    </odoo>
    
  3. Update your module to apply the changes:
    odoo-bin -u your_module_name
    

4. Verify the Changes

  1. Navigate to the Documents app.
  2. Select a document and open the Inspector Panel (the right-hand side panel).
  3. You should now see your custom field displayed in the panel.

5. Optional: Make the Field Editable or Dynamic

  • To make the field editable directly in the Inspector panel, ensure the field is not readonly.
  • If you need additional logic, such as dynamically setting the field value or adding validation, you can use Python methods or JavaScript.

6. Troubleshooting

  • If the changes do not appear:
    • Clear the Odoo cache by restarting the server.
    • Refresh your browser or clear the browser cache.
  • Check the Odoo logs for errors if the inspector panel does not load.

Let me know if you encounter any issues or need further assistance!

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
Windows Desktop Sync with Odoo Online Documents
documents
Avatar
Avatar
1
avg. 25
803
Access rights for individual user workspaces
documents
Avatar
0
mar. 24
4160
Link Documents to Contacts
documents
Avatar
Avatar
Avatar
Avatar
3
okt. 24
6199
Odoo v16 Documents App. How can I manage versions of Documents?
documents
Avatar
0
avg. 23
3877
How can I Edit InDesign documents in a web browser?
documents
Avatar
0
mar. 23
4167
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