Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Inheriting a view without overriding the original view [SOLVED]

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
viewsinheritanceoverrideodoo8
5 Risposte
58948 Visualizzazioni
Avatar
Pepiño

Hi Odoo developers,

I would like to create a view inheriting from another view to remove some elements by using xpath expressions, but I don't want to modify the original view.

The view's code:

    <record model="ir.ui.view" id="email_compose_message_wizard_form2">
<field name="name">mi_new_view</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="arch" type="xml">
<xpath expr="//span[contains(.,'Followers of the document and')]"
position="replace"/>
</field>
</record>

The original view is "mail.email_compose_message_wizard_form".

My view inherits from the "mail.email_compose_message_wizard_form" view, deleting one span element.
I need that my view has all the elements from the original view except one span element.

The problem is that this span element is also deleted from the original view, and I don't want to get this.

How can I achieve this without modifying the original view?.

Thanks for your help.

EDIT (THE SOLUTION):

Thanks to Pedro Manuel Baeza for your solution in the openerp-span google group (https://groups.google.com/forum/#!topic/openerp-spain/ndfXfeFihjA)

The solution is to add 

<field name="mode">primary</field> 

in the inheriting view:

    <record model="ir.ui.view" id="email_compose_message_wizard_form2">
<field name="name">mi_new_view</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="mode">primary</field>
<field name="arch" type="xml">
<xpath expr="//span[contains(.,'Followers of the document and')]"
position="replace"/>
</field>
</record>

12
Avatar
Abbandona
Avatar
Niyas Raphy (Walnut Software Solutions)
Risposta migliore

Hi,

For this you just need to inherit the original view and set the mode as primary , which will be a working as a new view from the inherited view, along with the changes applied here.

Sample:

<record id="ir_cron_view_form" model="ir.ui.view">
<field name="name">ir.cron.view.form</field>
<field name="model">ir.cron</field>
<field name="mode">primary</field>
<field name="inherit_id" ref="base.view_server_action_form"/>
<field name="arch" type="xml">
<xpath expr="//button[@name='create_action']" position="replace">
<button name="method_direct_trigger" type="object" string="Run Manually" class="oe_highlight" attrs="{'invisible': [('state', '!=', 'code')]}"/>
</xpath>
</field>
</record>

Reference:

  1. How To Inherit And Create New Report In Odoo

  2. Apply Changes In A View For Particular User Groups In Odoo

  3. How To Inherit Views

Thanks

3
Avatar
Abbandona
Avatar
Herbert Van de Poel
Risposta migliore

For those non-developers out there, this is the way I solve this in Odoo online v15 without XML or dev skills:

Let's say I have a view A (standard Odoo view), and I want to create a new view B building on top of A.

To achieve the desired outcome where View B is modified based on View A without altering View A, you should select "Base View" in the "View Inheritance Mode" when using the Odoo configuration menu to duplicate the view.

Here's the correct process:

  1. Go to "Settings" in the main menu of Odoo.

  2. Under the "Technical" section, click on "Views" to access the view configuration.

  3. Locate View A in the list of views and click on it to open the view configuration form.

  4. In the form, click on the "Duplicate" button (or a similar option) to create a duplicate of View A.

  5. Modify the necessary details of the duplicated view, such as the name and any other attributes specific to View B.

  6. In the "View Inheritance Mode" field, select "Base View" from the dropdown menu.

By selecting "Base View" as the view inheritance mode, you indicate that View B is based on View A and any modifications made to View B will not alter View A.

  1. Save the changes.

Following these steps, you have created View B based on View A using the duplication feature in the Odoo configuration menu. The "Base View" inheritance mode ensures that any modifications made to View B will not affect View A.


2
Avatar
Abbandona
Anton

When changing to "Base View", which view form do i have to set this? in View A? Because when i set it to View B, it didn't work.

Avatar
Emipro Technologies Pvt. Ltd.
Risposta migliore

Hi,

To achieve your goal that inherit one view and do not want to change in base view then you have to define new view of the same object without inherit any other view. If you have perform inheritance then base view will always be changed.

So, just make your own new view and set it inside your menu/action. thats it.


0
Avatar
Abbandona
Pepiño
Autore

Thanks for your answer, but what I want is not to have the same code of the view repeated two times: in the base view and the inheriting view. I only want to delete one element from the base view in my inheriting view without repeating the same xml code. It is the 'don't repeat yourself' principle. But I'm not sure whether this is possible in Odoo.

Avatar
Sehrish
Risposta migliore

In Odoo/OpenERP we can inherit or use existing modules object/class/model and views. We can also inherit single field of existing modules. The question is why we need such inheritance.

The purpose of inheritance or why we need inheritance is given below:

  1. To change attributes of some fields which exists on existing/custom model (e.g. making fields readonly,invisible)

  2. To add/modify/delete old or new fields in existing/custom model (e.g. Product, Sales, HR, Fleet Management, Attendance modules model etc)

  3. We can also add buttons in already existing/custom model (form and tree) view by using inheritance

Models.py

class groups(models.Model):
 _inherit = 'res.groups'
 # we inherited res.groups model which is Odoo/OpenERP built in model and created two fields in that model.
 field_1 = fields.Char(required=True,string="Field One")
 field_2 = fields.Boolean(default=False,string="Field Two") 

XML

    
        
            res.group.form.view.inherited
            res.groups
            
            
            
            

                
                    
                                
                
                
                    
                        

                                           
        
    
  

You can get more detail about inheritance from below link:

http://learnopenerp.blogspot.com/2018/01/inheritance-in-models-and-views.html

0
Avatar
Abbandona
Avatar
Ahmed Badawi
Risposta migliore

how u solved it ?

0
Avatar
Abbandona
Ahmed Badawi

thanks - soulation under your question

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
View inheritance hiding a field
views inheritance
Avatar
Avatar
1
nov 24
2582
Change the Position of field in Xpath Risolto
views inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
5
lug 24
95798
How to extend a base template for a specific page only, without affecting other pages that use the same base template?
views inheritance
Avatar
Avatar
1
dic 23
3990
removing elements from an inherited view
views inheritance
Avatar
Avatar
1
mag 22
5020
I am building a custom module that has a dependent module that has extended the base view of res_partner. In my custom module I also have an inherited view of the base res_partner view. In it how do I hide the inherited view of my dependent module?
views inheritance
Avatar
0
gen 20
3492
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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