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

After inheritance, and create new view, it shows all fields

Abonare

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

Această întrebare a fost marcată
viewsinheritancehr_expense
3 Răspunsuri
11556 Vizualizări
Imagine profil
David Yao

Hi all, I'm really new to Odoo. yeah, again, I got another inheritance problem.

The issue I'm facing is that: After inheritance hr.expense to my custom module "expense_new", I would like to create new view to it, tree view seems works fine (maybe I did it wrong tho) but its form view display all the fields including new field I added. (all field display regardless its invisible attribute, more than 25 fields displayed on the screen). I believe It is something wrong on XML file.

The way I'm using to inherit is "_inherits", and here is my code:   

class expenseNew(models.Model):    
    _name = 'expense_new.expense_new'
    _inherits = {'hr.expense': 'expense_new_id'}
    expense_new_id = fields.Many2one('hr.expense', help="This is a many2one field in expense_new module, and this field is used as a link to hr.expense module")
    # ......Override original fields......
    name = fields.Char(string='Expense Summary', readonly=True, required=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]})
    ...
    # ......Extra fields/ my own fields......
    calculate_total_amount = fields.Float(string='Total Cost', store=True, compute='_compute_amount_my', digits=dp.get_precision('Account'))
    ...
<record id="expense_new_tree_view" model="ir.ui.view">        
    <field name="name">expense_new.expense_new.tree.view</field>
    <field name="model">expense_new.expense_new</field>
    <field name="arch" type="xml">
        <tree string="Expenses">
            <field name="name"/>
            <field name="employee_id"/>
            <field name="date" required="True"/>
            <field name="state"/>
            <field name="calculate_total_amount"/>
        </tree>
    </field>
</record>
<record id="expense_new_form_view" model="ir.ui.view">
    <field name="name">expense_new.expense_new.form.view</field>
    <field name="model">expense_new.expense_new</field>
    <!--<field name="inherit_id" ref="hr_expense.hr_expense_form_view"/>-->
    <field name="arch" type="xml">
        <form string="Expenses" class="o_expense_form">
            <sheet>
                ......    
                <div class="oe_title">
                    <label for="name"/>
                    <h1>
                        <field name="name" placeholder="e.g. Lunch with Customer"/>
                    </h1>
                </div>
                <group>
                    <group>
                        <field name="date"/>
                        <field name="employee_id" groups="hr_expense.group_hr_expense_user"/>
                        <field name="calculate_total_amount"/>
                    </group>
                </group>
            </sheet>
        </form>
    </field>
</record>
<record id="submit_your_expense_action" model="ir.actions.act_window">
    <field name="name">My Expenses to Submit ("draft" expenses))</field>
    <field name="res_model">expense_new.expense_new</field>
    <field name="view_mode">tree,form</field>
</record>
<menuitem .../>

 

And also, In "_inherits" way, is it possible to inherit its "hr_expense.hr_expense_form_view" view by using "inherit_id" on XML and add my own field to it? I guess I cant because, in terms of database, my own field doesn't stored in the "hr_expense" table but it is stored in my own database "expense_new.expense_new", am I right? 

So, If I inherit a view then I should write <field name="model">original_module.model</field> and on the action, <field name="res_model">original_module.model</field> Otherwise (e.g. in this case) I use my own model name, right?

Can somebody please help me out, any hint, reference or suggestion will be useful. Thx a lot!

0
Imagine profil
Abandonează
Imagine profil
David Yao
Autor Cel mai bun răspuns

Hi all, following is my solution for my question (this link helps me a lot, similar solution, https://www.odoo.com/forum/help-1/question/how-to-inherit-prototype-inheritance-from-one-module-to-another-new-module-86223), the key is Odoo don't know which view to apply, I believe that's why my issue occurs. Please point out if I missed anything! Thx.

PY file:

class expenseNew(models.Model):        
    _name = 'expense_new.expense_new'     
    # _inherits = {'hr.expense': 'expense_new_id'}
    _inherit = 'hr.expense' # you can still use "_inherits" tho if you need  
    expense_new_id = fields.Many2one('hr.expense', help="This is a many2one field in expense_new module, and this field is used as a link to hr.expense module")     
    # ......Override original fields......     
    name = fields.Char(string='Expense Summary', readonly=True, required=True, states={'draft': [('readonly', False)], 'refused': [('readonly', False)]})     
    ...     
    # ......Extra fields/ my own fields......     
    calculate_total_amount = fields.Float(string='Total Cost', store=True, compute='_compute_amount_my', digits=dp.get_precision('Account'))     
    ...

XML file:

<record id="expense_new_tree_view" model="ir.ui.view">    
    <field name="name">expense_new.expense_new.tree.view</field>
    <field name="model">expense_new.expense_new</field>
    <field name="inherit_id" ref="hr_expense.view_expenses_tree"/>
    <field name="arch" type="xml">
        <field name="name"/>
        <field name="employee_id"/>
        <field name="date" required="True"/>
        <field name="state"/>
        <xpath expr="//field[@name='state']" position="after">
            <field name="calculate_total_amount"/>
        </xpath>
    </field>
</record>
<record id="expense_new_form_view" model="ir.ui.view">
    <field name="name">expense_new.expense_new.form.view</field>
    <field name="model">expense_new.expense_new</field>
    <field name="inherit_id" ref="hr_expense.hr_expense_form_view"/>
    <field name="arch" type="xml">
        <xpath expr="//field[@name='employee_id']" position="after">
            <field name="calculate_total_amount"/>
        </xpath>
    </field>
</record>
<!-- this is where magic happen -->
<record model="ir.actions.act_window.view" id="action_test_tree">
    <field name="sequence" eval="1"/>
    <field name="view_mode">tree</field>
    <field name="view_id" ref="expense_new_tree_view"/>
    <field name="act_window_id" ref="submit_your_expense_action"/>
</record>
<record model="ir.actions.act_window.view" id="action_test_form">
    <field name="sequence" eval="1"/>
    <field name="view_mode">form</field>
    <field name="view_id" ref="expense_new_form_view"/>
    <field name="act_window_id" ref="submit_your_expense_action"/>
</record>
<!-- this is where magic happen -->
<menuitem ... />


0
Imagine profil
Abandonează
Imagine profil
Subhanullah
Cel mai bun răspuns

If you want to extend an existing view, you need to use XPath expression, XPath expression has two attributes the path (expr = "//path") that you want to place your custom field and the position(position=" after/before/replace/inside"), so here you should do like this;


<record id="expense_new_form_view" model="ir.ui.view">        
    <field name="name">expense_new.expense_new.form.view</field>        
    <field name="model">expense_new.expense_new</field>        
    <field name="inherit_id" ref="hr_expense.hr_expense_form_view"/>     
    <field name="arch" type="xml">            
        <xpath expr=”//path” position=”specify the position”>
		<field name=”your 1 custom field />
		<field name=”your 2 custom field />
	  </xpath>        
    </field>

For more details, refer to this link,

https://www.odoo.yenthevg.com/xpath-expressions-in-odoo-8/

0
Imagine profil
Abandonează
David Yao
Autor

hi Subhanullah, thx for reply. I have tried XPath before and it doesn't work as well, I just figure out the key to my problem is I need to tell Odoo which view I want. I will post my solution later. Hope it helps others

Subhanullah

Hi David,

Sounds good, but this is how you tell ODOO which view you want to access,

<field name="inherit_id" ref="hr_expense.hr_expense_form_view"/>

David Yao
Autor

yes, it is used to inherit certain view. BTW, What about "ir.actions.act_window.view"? Do you know what does it do? As you can see, I also used mode_id, view_id and act_window_id, I guess these are telling Odoo --- for A (act_window_id) action I want open B (view_id) view in C (form) way, am I right? Any documents you found for those?And please tell me if my understanding is incorrect. Thx.

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
View inheritance hiding a field
views inheritance
Imagine profil
Imagine profil
1
nov. 24
2815
Change the Position of field in Xpath Rezolvat
views inheritance
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
5
iul. 24
96533
How to extend a base template for a specific page only, without affecting other pages that use the same base template?
views inheritance
Imagine profil
Imagine profil
1
dec. 23
4172
removing elements from an inherited view
views inheritance
Imagine profil
Imagine profil
1
mai 22
5271
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
Imagine profil
0
ian. 20
3641
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