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

[SOLVED] How to set attrs in the view based on the condition of a selection field being blank?

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
attrsviewfieldselectionsolved
1 Responder
16760 Visualizações
Avatar
Victor Admin

I have very much been enjoying customizing the user experience in the view by setting attrs based on the values of certain fields. But how do we check to see if the value has not been set yet? I haven't been able to figure it out

In the example below, this div is hidden if my selection field called x_sale_services_purchased, is set to any of the 3 values, but I want it to also be invisible if x_sale_services_purchased has not yet been set to anything:

 

<div style="background-color: #f0f0fa; border-radius: 5px; padding: 5px;" attrs="{'invisible': ['|','|','|','|',('x_sale_services_purchased','=','s_f'),('x_sale_services_purchased','=','s_web'),('x_sale_services_purchased','=','s_seo'),('x_sale_services_purchased','=','')]}"> </div>

 

The part in bold does not work (no error though). I have also tried 'NULL' with no success. What is the proper way to acheive this? I feel like I'm wandering into undocumented territory, although if documentation for this exists somewhere then please point me in the right direction! =) Thank you

0
Avatar
Cancelar
Avatar
Emipro Technologies Pvt. Ltd.
Melhor resposta

Hi Victor,

Use your attr as like below.

attrs="{'invisible': ['|','|','|',('x_sale_services_purchased','=','s_f'),('x_sale_services_purchased','=','s_web'), ('x_sale_services_purchased','=','s_seo'),('x_sale_services_purchased','=',False)]}"

It will work.

1
Avatar
Cancelar
Emipro Technologies Pvt. Ltd.

Hi Victor, Have you checked with my answer ? Is it ok for you ? Have you any another issue in this solution ? Then let me know. If it is good for you then accept my answer. Thanks for that.

Victor Admin
Autor

Hello! I'm sorry for not responding sooner, I was pulled away from this project temporarily right after posting the question. I just tried and your answer - it works perfectly, and makes total sense. Thank you very much! I do not yet have enough karma to accept it as an answer (which seems like an odd design to me, seeing as it was me who asked the question) but I will add [SOLVED] to the subject and will come back when I have enough karma to mark your answer as accepted. Thanks again for your help!

Victor Admin
Autor

By the way, is this aspect of multiple conditions for attrs documented anywhere? I gleaned the concept of it off of various forum posts, and came up with my method through trial and error, but it is such a cool and useful feature that I assume it has to be documented somewhere

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
Publicações relacionadas Respostas Visualizações Atividade
field attribute invisible with boolean do not work
attrs form view field invisible
Avatar
Avatar
1
mar. 24
31854
get Id in field selection
field selection
Avatar
Avatar
1
mar. 15
9185
field visible as text for manager and dropdown for employee
field selection
Avatar
0
mar. 15
4258
view xml, attrs use variable with attribute Resolvido
attrs xml view
Avatar
Avatar
1
mar. 24
11380
How to use record.field.field in views domain?
attrs domain view
Avatar
Avatar
Avatar
3
ago. 22
5369
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