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 inherit a view with the purpose of hidding a <page> from a group

Abonare

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

Această întrebare a fost marcată
2 Răspunsuri
11756 Vizualizări
Imagine profil
Aitor Bouzas

Title says it all...

I'm inheriting the view base.view_partner_form and i'm trying to hide <page string="Sales &amp; Purchases"></page> from a group called 'ajuste_did.group_did_del_sales'.

Right know I tried with

<xpath expr="/form/notebook/page[@string='Sales &amp; Purchases']" position="replace">

    <page string="Sales &amp; Purchases" groups_id="[(3,reg('ajuste_did.group_did_del_saes'))]">

    ...

    </page>

</xpath>

But with no positive result... Any suggestion?

Thanks

EDIT:

Now i'm having an 'Error occurred while validating the field(s) arch: Invalid XML for View Architecture!'

This is my partner.py file:

class res_partner(osv.osv):
    _name = "res.partner"
    _inherit = ['res.partner']
    
    _columns = {
        'hide': fields.boolean('Hide'),
    }
    
    _defaults = {
        'hide': True,
    }

...

And this is my res_partner_view.xml file:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
        <record id="view_partner_form" model="ir.ui.view">
            <field name="name">base.partner.form.inherit</field>
            <field name="model">res.partner</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="base.view_partner_form" />
            <field name="arch" type="xml">
                <data>
                    <field name="image" position="after">
                        <field name="hide" invisible="1" />
                        <field name="contrato_promocional" invisible="1" />
                        <button name="generate_recurring_orders_agreement" string="Generar contrato" type="object" groups="base.group_sale_manager,base.group_sale_salesman" attrs="{'invisible': [('contrato_promocional','=', True)]}"/>
                    </field>
                    <field name="property_account_receivable" position="replace">
                        <field name="property_account_receivable" groups="account.group_account_invoice,ajuste_did.group_did_del_sales" />
                    </field>
                    <field name="property_account_payable" position="replace">
                        <field name="property_account_payable" groups="account.group_account_invoice,ajuste_did.group_did_del_sales" />
                    </field>
                    <xpath expr="//form//sheet//notebook//spage[@string='Sales &amp; Purchases']"  position="attributes">
                        <attribute name="invisible">[('hide','=',true)]</attribute>
                    </xpath>
                </data>
            </field>
        </record>
    </data>
</openerp>


'Hide' get's by default 'True' value because i'm just checking the functionality... But it gives me the error I mentioned.

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

@Aitor, first, you cannot specify group_id to a view element.  The accepted attribute is groups.  (You might be getting the code from https://www.odoo.com/forum/help-1/question/hide-menu-for-existing-group-18704.  The approach only works for records, not view elements).

In general, there is no straight forward way to hide a page from a group. OpenERP/Odoo approach is that you assign a group to an element and that group can view the element.

So, you're left with 2 workaround, AFAIK:

  1. Create a function field in res.partner that will check if a user belong to the group, then return a value.  Include that column in the view and then you can use the value of this function field to trigger the invisible attrs of the view element.  For example your function field is called "hide" returns True if the logged in user belong to the (ajuste_did.group_did_del_saes) group.  Then the page should be re-defined as

    <field name="hide"/><xpath expr="/form/notebook/page[@string='Sales &amp; Purchases']" position="attributes"><attribute name="invisible">[('hide', '=', True)]</attribute></xpath>

  2. The other workaround is to assign a new group that has access to the page and let groups other than the one that you don't want to view the element to inherit this new group.  For example you define a new group with XML ID 'group_that_has_access'.  Let all groups except those that should not view the element (except ajuste_did.group_did_del_saes, that is) to inherit from this new group, then redefine the page as follows:

    <xpath expr="/form/notebook/page[@string='Sales &amp; Purchases']" position="attributes"><attribute name="groups">group_that_has_access</attribute></xpath>

1
Imagine profil
Abandonează
Aitor Bouzas
Autor

The first workaround is a good one... But it does not seems to work in my case, check the edit in the main post, I have an 'Error ocurred while validating the field(s) arch: Invalid XML for View Architecture!'

Ivan

Could you check the server log to see what is wrong with the XML? Also, have you tried using True, not true as the value to check against?

Aitor Bouzas
Autor

Thank so much @Ivan, the problem was that the 't' of 'true' had to be in capital letters... Regards and thanks again!

Imagine profil
Emipro Technologies Pvt. Ltd.
Cel mai bun răspuns

Try following:

<xpath expr="/form/notebook/page[@string='Sales &amp; Purchases']" position="attributes">
    <attribute name="groups"><<your group name without quote>></attribute>
</xpath>

Hope this helps!!.

1
Imagine profil
Abandonează
Aitor Bouzas
Autor

But this is for adding groups, I want to unlink one group... Am I wrong?

Emipro Technologies Pvt. Ltd.

ok.. then just write down those groups which you want ane remove the one which you don't want. The method remains the same here you can specify the comma separated values of groups.

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
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