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

Odoo 14: Extending the a model and adding a custom filter

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
filterinheritancesale.order
2 Respostas
8560 Visualizações
Avatar
Servicios Tecnológicos OK Cargo S.L.

Hi,


I have started working recently with Odoo, so I assume that I'm still doing "easy tasks" but I can't find a solution by our own.


I have started creating a new module using scaffolding. In this module I wanted to extend the Sales application adding a new field to the 'sale.order' model, this has been quite easy because is fully documented in many places.


So I have added a new field in the model and inherited the 'sale.view_order_form' view to show/edit our new field. I have also extended 'sale.view_quotation_tree' and 'sale.view_order_tree' to show the data from this field in a column in the tree view.


But now, I'm stuck with filtering. I have seen that is quite similar to how I have extended other views.

        <record id="sale_order_view_search_inherit_quotation_wt" model="ir.ui.view">
            <field name="name">sale.order.search.inherit.quotation.wt</field>
            <field name="model">sale.order</field>
            <field name="mode">primary</field>
            <field name="inherit_id" ref="sale.sale_order_view_search_inherit_quotation"/> <!-- this is the view that we want to extend -->
            <field name="arch" type="xml">
                <!-- We have tried using xpath to locate the place to put the filter -->
                <!--
                <xpath expr="//filter[@name='draft']" position="replace">
                    <filter string="Loading Date" name="loading_date_filter" date="loading_date"/>
                </xpath>
                -->
                <!-- We have tried also using this way -->
                <filter name="draft" position="after">
                    <filter string="Loading Date" name="loading_date_filter" date="loading_date"/>
                </filter>
            </field>
        </record>


I assume that the module is being loaded fine because I can see the info in control panel view editing (in Developer Mode).


I've tried with (and without) primary mode, also adding a priority with different values and using other filters as reference for positioning, but the result is always the same, the new filter is not shown.


Has anybody experienced a similar issue?


Kind regars,

Álvaro

0
Avatar
Cancelar
Avatar
Arturo Chau Tizón 2020
Melhor resposta

Any solution?

0
Avatar
Cancelar
Avatar
Begineer
Melhor resposta

Hi,

 I guess the reference given in the inherit_id field is wrong,

I hope it should be ref='sale.view_sales_order_filter'

Thanks.

0
Avatar
Cancelar
Servicios Tecnológicos OK Cargo S.L.
Autor

Hi,

I thought using the reference at the begining, but revising views definition file:

https://github.com/odoo/odoo/blob/14.0/addons/sale/views/sale_views.xml

and the control panel view editing (in Developer Mode), I saw that the view for quotations is ref="sale.sale_order_view_search_inherit_quotation" and for orders is ref="sale.sale_order_view_search_inherit_sale" and both views inherit from ref='sale.view_sales_order_filter'.

In my case, I want to include the new filter near the filters added in those extended views.

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
PROBLEM WITH INHERITANCE AND SALE MODEL
inheritance sale.order
Avatar
Avatar
Avatar
2
mai. 23
2896
Sale - Override action_button_confirm() Resolvido
inheritance sale.order override
Avatar
Avatar
1
mar. 17
9154
How to copy default value from other field? Resolvido
inheritance defaults sale.order
Avatar
Avatar
2
abr. 15
10924
Change sale module view, treestrings, names, button names
inheritance inherit sale.order
Avatar
0
mar. 15
5849
show only records that have a boolean field set to true in partner_id
inheritance sale.order partner_id filtering
Avatar
Avatar
Avatar
2
jun. 23
4402
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