Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Food & Hospitality
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Guest House
    • Distribuidor de bebidas
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consulting
    • Accounting Firm
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Trades
    • Handyman
    • Hardware y asistencia informática
    • Solar Energy Systems
    • Zapatero
    • Servicios de limpieza
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

[SOLVED] Call a report from a wizard (odoo 8)

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
reportswizardsodoo8.0
2 Respuestas
22959 Vistas
Avatar
dlsuarez

I need help to generate a report from a button in a wizard view.

I use qweb in odoo 8.0.

This is my code:

wizards/stats,py

@api.multi
    def compute_stats(self):
        stats = self._get_stats()
        leads = self._get_leads(
            stats.salesperson_ids.mapped("id"),
            stats.source_ids.mapped("id"),
            stats.stage_ids.mapped("id"),
            stats.reason_ids.mapped("id")
        )
        report_obj = self.env['report']
        report = report_obj._get_report_from_name('crm_ticket_platforms.crm_stats')
        docargs = {
            'doc_ids': self._ids,
            'doc_model': report.model,
            'docs': self,
        }
        return report_obj.render('crm_ticket_platforms.crm_stats', docargs)

report/crm_stats.xml

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data>
        <report
            id="crm_ticket_platforms_report_crm_stats"
            model="stats"
            string="CRM Stats"
            report_type="qweb-pdf"
            name="crm_ticket_platforms.crm_stats"
            file="crm_ticket_platforms.crm_stats"
            attachment_use="False"
            attachment="(object.filename+'.pdf')"
        />
        <template id="report_crm_stats_document">
            <t t-call="report.html_container">
                <t t-foreach="docs" t-as="doc">
                    <t t-call="report.external_layout">
                        <div class="page">
                            <p><h2>Id:</h2> <span t-field="doc.id"/></p>
                            <separator/>
                        </div>
                    </t>
                </t>
            </t>
        </template>
        <template id="crm_stats">
            <t t-call="report.html_container">
                <t t-foreach="doc_ids" t-as="doc_id">
                    <t t-raw="translate_doc(doc_id, doc_model, 'lang', 'crm_ticket_platforms.report_crm_stats_document')"/>
                </t>
            </t>
        </template>
    </data>
</openerp>

This apparently works but not show/save the 'pdf' report.

Thanks!

4
Avatar
Descartar
Avatar
Vasanth
Mejor respuesta

Hi,

You can use the folowing code in the xml view( report_session.xml ) and then call the report from the wizard button

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

        <template id="report_session">
            <t t-call="report.html_container">
                <t t-foreach="docs" t-as="doc">
                    <t t-call="report.external_layout">
                        <div class="page">
                            <div class="oe_structure" />
                            <div class="text-center"><h1><span t-esc="doc.name"></span></h1></div>
                        </div>
                    </t>
                </t>
            </t>
        </template>

 

        <report id="report_print"
                string="Report"
                model="res.partner"
                report_type="qweb-pdf"
                file="res_partner.report_session"
                name="res_partner.report_session" />

</data>

</openerp>

1
Avatar
Descartar
Avatar
Ankit H Gandhi(AHG)
Mejor respuesta

Hello dlsuarez,
    
step 1 create report template using template tag
    
example like
    
<?xml version="1.0" encoding="utf-8"?>

<openerp> 
    <data>

        <template id="report_student_master_qweb">
            <t t-call="report.html_container"> 
                <t t-foreach="docs" t-as="o"> 
                    <t t-call="report.external_layout">
                        <div class="page">
                            <div class="oe_structure"/>
                            <div class="row">
                                <span class="text-center"><h1>Student Information</h1></span>
                                <table class="table table condensed">
                                    <tr>
                                        <td><h3><strong>GRN No:</strong></h3></td>
                                        <td><h3 t-field="o.code"/></td>
                                    </tr>
                                    <tr>
                                        <td><h3><strong>First Name:</strong></h3></td>
                                        <td><h3 t-field="o.fname"/></td>
                                    </tr>
                                    <tr>
                                        <td><h3><strong>Middle Name:</strong></h3></td>
                                        <td><h3 t-field="o.mname"/></td>
                                    </tr>
                                    <tr t-if="o.lname">
                                        <td><h3><strong>Last Name:</strong></h3></td>
                                        <td><h3 t-field="o.lname"/></td>
                                    </tr>
                                    <tr t-if="o.gender">
                                        <td><h3><strong>Gender:</strong></h3></td>
                                        <td><h3 t-field="o.gender"/></td>
                                    </tr>
                                    <tr t-if="o.dob">
                                        <td><h3><strong>Date of Birth:</strong></h3></td>
                                        <td><h3 t-field="o.dob"/></td>
                                    </tr>
                                    <tr t-if="o.join_date">
                                        <td><h3><strong>Joining Date:</strong></h3></td>
                                        <td><h3 t-field="o.join_date"/></td>
                                    </tr>
                                </table>
                            </div>
                        </div>
                    </t>
                </t>
            </t> 
        </template>

    </data>
</openerp>

step 2 registration that report using report tag
    
example like
    
<?xml version="1.0" encoding="utf-8"?>
<openerp> 
    <data>
        <report id="school_management_qweb_report"
                string="school Management Report Qweb"
                model="student.master"
                report_type = "qweb-pdf"
                file="school_management.report_student_master_qweb"
                name="school_management.report_student_master_qweb" />
    </data>
</openerp>
    
step 3 create py file of wizard.
    
example like
    
from openerp.osv import orm, fields
from openerp.tools.translate import _

class wiz_student_report(orm.TransientModel):
    _name = 'wiz.student.report'
    _columns = {
        'student_id': fields.many2one('student.master', 'Student Name'),
        'birth_sdate': fields.date('Start Date'),
        'birth_edate': fields.date('End Date'),
    }

    def student_report(self, cr, uid, ids, context=None):
        student_obj = self.pool.get('student.master')
        cur_obj = self.browse(cr, uid, ids, context=context)
        datas = {}
        if cur_obj.birth_sdate >= cur_obj.birth_edate:
            raise orm.except_orm(_('Warning!'),_('End date is %s must be greater then start date is %s') % (cur_obj.birth_edate,cur_obj.birth_sdate))
        student_ids = student_obj.search(cr, uid, [('fname', '=', cur_obj.student_id.fname),('dob','>=',cur_obj.birth_sdate),('dob','<=',cur_obj.birth_edate)], context=context)
        if student_ids:
            data = self.read(cr, uid, ids, context=context)[0]
            datas = {
            'ids': student_ids,
            'model': 'wiz.student.report', # wizard model name
            'form': data,
            'context':context
            }
            return {
                   'type': 'ir.actions.report.xml',
                   'report_name': 'school_management.report_student_master_qweb',#module name.report template name
                   'datas': datas,
               }
               
step 4 create xml file of wizard
    
example like
    
<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data>

        <record model="ir.ui.view" id="wiz_student_report_form">
            <field name="name">wiz.student.report.form</field>
            <field name="model">wiz.student.report</field>
            <field name="arch" type="xml">
                <form string="Student Report">
                    <group>
                        <group string="Student Name">
                            <field name="student_id" nolabel="1" options="{'no_create': True}" required="1"/>
                        </group>
                    </group>
                    <group string="Birth Date Between" col="4" colspan="4">
                        <field name="birth_sdate" required="1"/>
                        <field name="birth_edate" required="1"/>
                    </group>
                    <footer>
                        <button string="Report" name="student_report" type="object" class="oe_highlight"/>
                        or
                        <button string="Cancel" class="oe_link" special="cancel" />
                    </footer>
                </form>
            </field>
        </record>

        <record model="ir.actions.act_window" id="wiz_student_report_action">
            <field name="name">Student Wize Report</field>
            <field name="res_model">wiz.student.report</field>
            <field name="type">ir.actions.act_window</field>
            <field name="view_type">form</field>
            <field name="view_mode">form</field>
            <field name="target">new</field>
        </record>
        
    </data>
</openerp>

step 5 put this code in view xml file for pop up the wizard using button click.
    
example like
    
<button name="%(wiz_student_report_action)d" string="Student Wize Report" type="action"/>
    
if you find this answer helpful, please give me a thumbs up vote    

Regards,

Ankit H Gandhi
 

6
Avatar
Descartar
Pascal Tremblay

In the tag, why do you use "model="student.master"? What is this model?

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Can anyone give the link for excel report customization for odoo? Resuelto
reports excel odoo8.0
Avatar
Avatar
Avatar
2
jun 23
5072
How to create div in QWeb that is always at the bottom of the page? Resuelto
qweb reports odoo8.0
Avatar
Avatar
Avatar
Avatar
Avatar
14
may 22
48279
Print a py3o report from wizard Resuelto
reports wizards odoo11
Avatar
Avatar
1
feb 21
4577
Background image gets cut off on the last page of a QWeb report (Odoo8) Resuelto
qweb reports odoo8.0
Avatar
1
feb 24
6017
Where is the python file for report_payslip.xml file? - Odoo 8
hr_payroll reports odoo odoo8.0
Avatar
0
mar 15
5589
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

Website made with

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