Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How to inherit a view with the purpose of hidding a <page> from a group

Odoberať

Get notified when there's activity on this post

This question has been flagged
2 Replies
11757 Zobrazenia
Avatar
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
Avatar
Zrušiť
Avatar
Ivan
Best Answer

@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
Avatar
Zrušiť
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!

Avatar
Emipro Technologies Pvt. Ltd.
Best Answer

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
Avatar
Zrušiť
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!

Registrácia
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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