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 sum records in a tree view?

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
2 Respostas
44447 Visualizações
Avatar
tvaughan

I added a Tax Description/Account line item in an invoice. I added the field to the tree view by enabling developer mode, editing the view, and adding an entry in the XML for the line item. This is not a module I developed. I'd like to display the sum of the amounts, but no matter what I try I only seem able to display the number of line items as shown in this screenshot: dl.dropboxusercontent.com/u/174789/screenshot.png. In this screenshot there is only one line item, but there could be more.

How can I display the total of the line item values instead of the number of records in the database? Thanks.

Edit: Here are two more screenshots. I created a one2many field in the admin dashboard: dl.dropboxusercontent.com/u/174789/newfield.png. This is the line item entry I made in the invoice: dl.dropboxusercontent.com/u/174789/invoice.png. The field is included in the tree view like: <field name="x_FlourTaxAmount" sum="Flour Tax Total"/>. I did not create a module. I did not add a .py or .xml.

Edit: This is what we came up with. Now that we understand the solution a little better some variables need to be renamed, otherwise this works.

from openerp.osv import fields, osv

class AAA(osv.osv):
    _inherit = 'account.invoice'

    def get_tax_total(self, cr, uid, ids, field, arg, context=None, line_name=None):
        #~ import ipdb;ipdb.set_trace();
        res = {}
        for order in self.browse(cr, uid, ids, context=context):
            res[order.id] = {
                'flour_tax_total': 0,
            }
            val = 0
            for line in order.flour_tax:
        if line.name.startswith(line_name):
                    val += line.tax_amount
            res[order.id] = val
        return res

    def get_flour_tax_total(*args, **kwargs):
    kwargs["line_name"] = "Harina"
        return get_tax_total(*args, **kwargs)

    _columns = {
        'flour_tax': fields.one2many('account.invoice.tax', 'invoice_id', 'Flour Tax Amount'),
        'flour_tax_total': fields.function(get_flour_tax_total, type='float', string='Flour Tax Total'),
    }

    _defaults ={
        'flour_tax': 13,
        'flour_tax_total': 42,
    }

AAA()
3
Avatar
Cancelar
Acespritech Solutions Private Limited

In the screenshot, I can see the amount 5000.00 on top and at very bottom. So at the very bottom amount is total of all the values of field Subtotal. You can do it same for line item values but it should be type of float instead of character. Then you can achieve total of line item at the very bottom.

Avatar
PT SIVI
Melhor resposta

You should add one more field.

I presume you already have this is your file.py :

' tax_line *(or whatever)*' : fields.one2many('tax.line*(or whatever)*', 'tax_line_ids*(or whatever)*', 'Flour Tax Amount'),

You should add one more field in your file.py :

'tax_line_sum':fields.function(amount_all,type='integer',string='Total Amount'),

and

 def amount_all(self, cr, uid, ids, field, arg, context=None):
        #~ import ipdb;ipdb.set_trace();
        res = {}
        for order in self.browse(cr, uid, ids, context=context):
            res[order.id] = {
                'tax_line_sum': 0,
            }
            val = 0
            for line in order.tax_line:
                val += line.tax_line_amount
            res[order.id] = val
        return res

And don't forget to add this in your .xml:

<field name="tax_line_sum" sum='Total Tax'/>

Hope it works

4
Avatar
Cancelar
tvaughan
Autor

Great. Thank you for your reply. Please see my edit above. I have not created a new Python module. I did this through the admin. I'll try your approach, but is there a way I can do this entirely within the admin dashboard? Thanks!

PT SIVI

As far as I know, we are unable to create functional field directly from Web-UI which you will need it for sure. It was also stated here http://stackoverflow.com/questions/18058038/create-a-functional-field-in-openerp-via-web-ui.

Your approach by writing this line one .xml: ' <field name="x_FlourTaxAmount" sum="Flour Tax Total"/>' is incorrect, I presume. Because x_FlourTaxAmount field type is one2many which is unable to sum.

The best that I can suggest to display your total amount of Tax is inside your Form View (not Tree View) by adding this to your xml:

http://bit.ly/1cWsGyu

tvaughan
Autor

Thanks a lot @fahreza! You definitely pointed us in the right direction.

Avatar
tvaughan
Autor Melhor resposta

Here's the version that worked for us. Now that we understand the solution a little better some variables need to be renamed, otherwise this works.

from openerp.osv import fields, osv

class AAA(osv.osv):
    _inherit = 'account.invoice'

    def get_tax_total(self, cr, uid, ids, field, arg, context=None, line_name=None):
        #~ import ipdb;ipdb.set_trace();
        res = {}
        for order in self.browse(cr, uid, ids, context=context):
            res[order.id] = {
                'flour_tax_total': 0,
            }
            val = 0
            for line in order.flour_tax:
        if line.name.startswith(line_name):
                    val += line.tax_amount
            res[order.id] = val
        return res

    def get_flour_tax_total(*args, **kwargs):
    kwargs["line_name"] = "Harina"
        return get_tax_total(*args, **kwargs)

    _columns = {
        'flour_tax': fields.one2many('account.invoice.tax', 'invoice_id', 'Flour Tax Amount'),
        'flour_tax_total': fields.function(get_flour_tax_total, type='float', string='Flour Tax Total'),
    }

    _defaults ={
        'flour_tax': 13,
        'flour_tax_total': 42,
    }

AAA()
0
Avatar
Cancelar
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