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 run report from code

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
4 Respostas
16660 Visualizações
Avatar
arcull

Hi there.

I'm trying to make a custom model extending account.invoice, which will add a button on sales invoice form, to print my new custom report. So far, the button, does trigger my function in custom model (I've put there a warning to test), so now the only thing left seems to run my new custom report somehow. The content of imortant file is:

models.py:

# -*- coding: utf-8 -*-

from openerp import models, fields, api, _

from openerp.exceptions import Warning

class Inv(models.Model):

_inherit = 'account.invoice'

_name = 'account.invoice'

#_name = 'my.inv'

#_name = 'account.invoice'

name = fields.Char(string="Title", required=False)

description = fields.Text()

#comment = fields.Text()

@api.multi

def print_invoice_my(self):

#raise Warning( _("do something here") )

#assert len(self) == 1

#self.sent = True

#return self.env['report'].get_action(self, 'account.invoice.report_invoice_my')

return self.env['report'].get_action(self, 'my.report_invoice_my')

#report_obj = self.env['report']

#report = report_obj._get_report_from_name('my.report_invoice_my')

my.xml:

<openerp>
   <data>
	<record id="invoice_form_my" model="ir.ui.view">
            <field name="name">account.invoice.form.my</field>
            <field name="model">account.invoice</field>
	    <field name="inherit_id" ref="account.invoice_form"/>
            <field name="arch" type="xml">
              <button name="invoice_print" position="after">
  	        <button type="object" name="print_invoice_my" string="my Invoice"/>
		<!--<button name="%(report_invoice_my)d" string="my Invoice" type="action"/>-->
              </button>
            </field>      
        </record>   
   </data>
</openerp>

my_report.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>
      <report 
        id="id_report_invoice_my"
        #model="account.invoice"
        model="my"
        string="my Invoice"
        report_type="qweb-pdf"
        name="my.report_invoice_my"
        attachment_use="False"
        file="my.report_invoice_my"
      />
    </data>
</openerp>


report_invoice_my.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="report_invoice_my">
    <t t-call="report.external_layout">
        <div class="page">
            <div class="row">
                <h3>Title</h3>
            </div>
        </div>
    </t>
</template>
</data>
</openerp>


I've tried to folow this tutorial

http://www.odoo.yenthevg.com/creating-custom-reports-odoo-8/


However, when trying to hit my button, I get error: "Bad Report Reference" This report is not loaded into the database: my.report_invoice_my.


Posts related to this one are:

https://www.odoo.com/forum/help-1/question/how-to-add-new-button-in-sales-invoice-form-95995

https://www.odoo.com/forum/help-1/question/how-to-connect-button-with-function-96285

https://www.odoo.com/forum/help-1/question/cant-inherit-account-invoice-96458


Can you please suggest how can I fix this, much thanks in advance, best regards.



0
Avatar
Cancelar
Avatar
Temur
Melhor resposta

does your my_report.xml is exactly same as it is posted here? If so, then you miss <openerp> and <data> tags in it. it should be:

my_report.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>


<report
id="report_invoice_my"
model="account.invoice"
string="my Invoice"
report_type="qweb-pdf"
name="my.report_invoice_my"
attachment_use="False"
file="my.report_invoice_my"
/>

 </data> </openerp>

otherwise it will not be loaded into a database.


0
Avatar
Cancelar
arcull
Autor

Thanks Temur,my_report.xml has openerp and data tags as required, I just haven't copied entire file. Do you hava any other suggestion maybe? Why doesn't the invoice.account module which I extended and added print_invoice_my have it now?

Temur

What is the current error you get actually?

Avatar
arcull
Autor Melhor resposta

This is my current, but now working solution.

The model looks like:

# -*- coding: utf-8 -*-
from openerp import models, fields, api, _
from openerp.exceptions import Warning
from openerp.report import report_sxw
class Inv(models.Model):
     _inherit = 'account.invoice'
     _name = 'account.invoice'
     name = fields.Char(string="Title", required=False)
     description = fields.Text()
     # previous try to run report     
     @api.multi
     def print_invoice_my_old(self,data=None):
        report_obj = self.env['report']
        report = report_obj._get_report_from_name('my.report_invoice_my')
        docargs = {
            'doc_ids': self._ids,
            'doc_model': report.model,
            'docs': self,
        }
        return report_obj.render('my.report_invoice_my', docargs)
class myinv(report_sxw.rml_parse):
    def __init__(self, cr, uid, name, context):
        super(example_report_parser, self).__init__(cr, uid, name, context=context)
        self.localcontext.update({
            'next_seq': self._get_next_seq,
            'select_value': self._selection_value,
        })
    @api.multi
    def print_invoice_my(self,data=None):
       report_obj = self.env['report']
       report = report_obj._get_report_from_name('my.report_invoice_my')
       docargs = {
           'doc_ids': self._ids,
           'doc_model': report.model,
           'docs': self,
       }
       return report_obj.render('my.report_invoice_my', docargs)
class myinv_parser(models.AbstractModel):
    _name = 'report.my.report_invoice_my'
    _inherit = 'report.abstract_report'
    _template = 'report.my.report_invoice_my'
    _wrapped_report_class = myinv

The button in xml looks like:

            <field name="arch" type="xml">
              <button name="invoice_print" position="after">
 <button type="object" name="print_invoice_my" string="MY Invoice"/>
              </button>
            </field>  

The error I'm obviously getting is:

AttributeError: 'account.invoice' object has no attribute 'print_invoice_my'.

How can I make this work? I guess  I'm missing something here, thanks for your help.

0
Avatar
Cancelar
Temur

do you have "account" or "account_accountant" in a dependency list?

Avatar
Axel Mendoza
Melhor resposta

Check this another resource

https://www.odoo.com/es_ES/forum/help-1/question/how-to-define-a-custom-methods-functions-to-be-used-in-a-qweb-report-how-to-define-and-use-a-report-parser-92244

0
Avatar
Cancelar
arcull
Autor

Thanks Axel your tutorial looks usefull. However I can not apply it to my case. The prblem is that I'm iheriting (extending) account.invoice module and the button on invoice form calls function in this same model. Please see my current (not working) solution bellow. If you know how to fix please suggest, many thanks.

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