Hi Friends I have used Qweb to generate the pdf report in odoo 9 now i can download the pdf file but the file does not showing the data
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_invoice">
<t t-call="report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="report.external_layout">
<div class="page">
<div class="row">
<h2 class="text-center" style="font-size: 24px;font-weight: bold;">company </h2>
<p>This object's name is <span t-field="o.name"/></p>
</div>
</div>
</t>
</t>
</t>
</template>
</odoo>
wkhtmltopdf -V
if running on linux from the terminal. To ensure the report is working at all replace everything inside of yourpage
div with a static<h1>HELLO WORLD</h1>
to verify your report is working and properly setup with odoo. Next Add in data. You want wkhtmltopdf 0.12.1 or higher. – Phillip Stackhttps://www.odoo.com/documentation/8.0/reference/reports.html
– George Daramouskas