Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

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

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
2 Respostas
11755 Visualizações
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
Cancelar
Avatar
Ivan
Melhor resposta

@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
Cancelar
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.
Melhor resposta

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

Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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