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
    • e-learning
    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
    • Conocimientos
    • 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
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • 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

How to get pdf file while printing report in odoo 10?

Suscribirse

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

Se marcó esta pregunta
reportodoo
8887 Vistas
Avatar
KLN

I have used this code but not working returning empty PDF file in odoo 10

result = self.env['report'].sudo().get_pdf([order.id], 'equipment_management.report_gatepass')



full report template xml code:



<?xml version="1.0" encoding="utf-8"?>
  <openerp>
    <data>
      <report id="equipment_action"
          model="calibration.details"
          string="Gatepass "
          report_type="qweb-pdf"
          name="equipment_management.report_gatepass"
          file="equipment_management.report_gatepass"
          />

      <record id="paperformats" model="report.paperformat">
          <field name="name">European A4 low margins</field>
          <field name="default" eval="True" />
          <field name="format">A4</field>
          <field name="page_height">0</field>
          <field name="page_width">0</field>
          <field name="orientation">Portrait</field>
          <field name="margin_top">20</field>
          <field name="margin_bottom">20</field>
          <field name="margin_left">20</field>
          <field name="margin_right">20</field>
          <field name="header_line" eval="False" />
          <field name="header_spacing">10</field>
          <field name="dpi">90</field>
      </record>

      <record id="equipment_management.equipment_action" model="ir.actions.report.xml">
          <field name="paperformat_id" ref="equipment_management.paperformats" />
      </record>
      <template id="report_gatepass">
          <t t-call="report.html_container">
          <t t-set="counter" t-value="001"/>
            <t t-foreach="docs" t-as="o">
                <div class="page">
                    <style>
                        .box{
                        background: black;
                        max-width: 250px;
                        text-align:center;
                        color:white;}
                    </style>
                    <div class="row">
                        <table width="100%" cellpadding="0px" cellspacing="0px" style="border:1px solid black">
                            <tr style="border-bottom:1px solid black">
                                <td width="20%" valign="top" align="center" padding="15px">
                                    <img t-att-src="'data:image/png;base64,%s' % res_company.logo" height="100px" width="90px" />
                                </td>
                                <td width= "80%">
                                    <div style="font-size:18px;"><center><b><t t-if="res_company.name" t-esc="res_company.name"/></b></center></div>
                                    <div style="font-size:12px;"><center><t t-if="res_company.rml_header1" t-esc="res_company.rml_header1"/></center></div>
                                    <div style="font-size:12px"><center><t t-if="res_company.street" t-esc ="res_company.street"/>  <t t-if="res_company.street2" t-esc ="res_company.street2"/>  <t t-if="res_company.state_id" t-esc ="res_company.state_id.name"/>  <t t-if="res_company.country_id" t-esc ="res_company.country_id.name"/></center></div>
                                    <div style="font-size:12px"><center>Tel No.<t t-if="res_company.phone" t-esc ="res_company.phone"/>,  Fax<t t-if="res_company.fax" t-esc ="res_company.fax"/>,  Email <t t-if="res_company.email" t-esc ="res_company.email"/>,  Website <t t-if="res_company.website" t-esc ="res_company.website"/></center></div>
                                </td>
                            </tr>
                            <tr>
                                <td colspan="2" width="100%" style="font-size:24px"><center><div class="box"><strong>GATEPASS</strong></div></center></td>
                            </tr>
                            <tr style="border-bottom:1px solid black">
                                <td colspan="2" width="100%" style="font-size:14px"><center><strong>(NIWE-Returnable Material)</strong></center></td>
                            </tr>
                            <tr style="border-bottom:1px solid black">
                                <td colspan="2">
                                    <table width="100%" cellpadding="0px" cellspacing="0px">
                                        <tr>
                                            <td width="25%" style="font-size:14px;line-height:300%;"><center><strong>Reference No.:</strong></center></td>
                                            <td width="25%" style="font-size:14px;line-height:300%;text-align:left;"><strong><t t-esc="o.name"/></strong></td>
                                            <td width="25%" style="font-size:14px;line-height:300%;"><center><strong>Date:</strong></center></td>
                                            <td width="25%" style="font-size:14px;line-height:300%;text-align:left"><strong><span t-field="o.date" t-field-options='{"format": "dd-MM-y"}'/></strong></td>
                                        </tr>
                                    </table>
                                </td>  
                            </tr>
                            <tr style="border-bottom:1px solid black">
                                <td colspan="2">
                                    <table width="100%" cellpadding="0px" cellspacing="0px" style="font-size:12px">
                                        <tr style="border-bottom:1px solid black;height:50px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">1</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Name and Designation of the Person taking the Material</td>
                                            <td width="42%" style="padding-left:5px"><t t-if="o.responsible_person.name" t-esc="o.responsible_person.name"/></td>
                                        </tr>
                                        <tr style="border-bottom:1px solid black;height:60px;">                                        
                                            <td width="5%" style="text-align:center;border-right:1px solid black">2</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Address of supplier taking material out of NIWE Campus(with phone No.)</td>
                                            <td width="42%" style="padding-left:5px">
                                            <div style="font-size:12px"><t t-if="o.responsible_person.street" t-esc ="o.responsible_person.street"/></div>
                                            <div><t t-if="o.responsible_person.street2" t-esc ="o.responsible_person.street2"/></div>
                                            <div><t t-if="o.responsible_person.state_id" t-esc ="o.responsible_person.state_id.name"/> </div>
                                            <div><t t-if="o.responsible_person.country_id" t-esc ="o.responsible_person.country_id.name"/></div>
                                            <div style="font-size:12px"><t t-if="o.responsible_person.phone" t-esc ="o.responsible_person.phone"/></div>
                                            <div><t t-if="o.responsible_person.mobile" t-esc ="o.responsible_person.mobile"/></div>
                                            </td>
                                        </tr>
                                        <tr style="border-bottom:1px solid black;height:60px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">3</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Description of items with its serial Number and Quantity etc.,</td>
                                            <td width="42%" style="padding-left:5px">
                                                <div><b>Name:</b><t t-if="o.instrument.name" t-esc="o.instrument.name"/></div>
                                                <div><b>Serial No:</b><t t-if="o.serial" t-esc="o.serial"/></div>
                                                <div><b>Description:</b><t t-if="o.instrument.description" t-esc="o.instrument.description"/></div>
                                            </td>
                                        </tr>
                                        <tr style="border-bottom:1px solid black;height:60px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">4</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Purpose for which the Material(s) in/are being taken out</td>
                                            <td width="42%" style="padding-left:5px"><t t-if="o.purpose" t-esc="o.purpose"/></td>
                                        </tr>
                                        <tr style="border-bottom:1px solid black;height:60px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">5</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Probable date of return of Material if any</td>
                                            <td width="42%" style="padding-left:5px"><t t-if="o.date_of_return"><span t-field="o.date_of_return" t-field-options='{"format": "dd-MM-y"}'/></t></td>
                                        </tr>
                                        <tr style="border-bottom:1px solid black;height:60px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">6</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">NIWE-officer responsible for inspection Returning the Material</td>
                                            <td width="42%" style="padding-left:5px"><t t-if="o.officer.name" t-esc="o.officer.name"/></td>
                                        </tr>
                                        <tr style="height:60px;">
                                            <td width="5%" style="text-align:center;border-right:1px solid black">7</td>
                                            <td width="53%" style="padding-left:5px;border-right:1px solid black">Any other Informations</td>
                                            <td width="42%" style="padding-left:5px"><t t-if="o.other_info" t-esc="o.other_info"/></td>
                                        </tr>
                                    </table>
                                </td>
                            </tr>
                        </table>
                        <table style="font-size:12px" width="100%">
                            <tr>
                                <br/><br/><br/><br/>
                            </tr>
                            <tr>
                                <td width="35%" style="text-align:left"><span><div>Signature of the person taking the</div>
                                <div>Material out NIWE Campus</div></span></td>
                                <td width="35%"><span><div>Signature of the Officer/Material</div><div style="text-align:center">Indenter</div></span></td>
                                <td width="30%" style="text-align:right">Signature of Head/Project Leader</td>
                            </tr>
                        </table>
                        <table style="font-size:12px" width="100%">
                            <tr>
                                <br/><br/><br/><br/>
                            </tr>
                            <tr>
                                <td width="50%" style="text-align:left">Authorized Signatory</td>
                                <td width="50%" style="text-align:right"><span>Signature of Security Officer/Security
                                <div>Guard on duty in NIWE</div></span></td>
                            </tr>
                        </table>
                    </div>
                </div>
            </t>
          </t>
      </template>
</data>
</openerp>

0
Avatar
Descartar
Pravitha

can you post the python function you wrote to invoke the call to print report

¿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
How can I create and save a report in the attachments?
report odoo
Avatar
0
sept 24
2539
Odoo Report - getting currently singular active ID
report odoo
Avatar
0
mar 18
4346
Problem of printing odoo reports in a VPS Resuelto
report odoo
Avatar
1
nov 16
3867
How to make a button print with two choices in odoo
report odoo
Avatar
Avatar
1
ene 16
5140
How to call report from button (Odoo) Resuelto
report odoo
Avatar
Avatar
1
oct 15
18670
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