Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

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

Subscribe

Get notified when there's activity on this post

This question has been flagged
2 Replies
11751 Views
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
Discard
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
Discard
Aitor Bouzas
Author

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
Author

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
Discard
Aitor Bouzas
Author

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!

Sign up
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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