This question has been flagged
11 Replies
19844 Views

I use odoo 11 latest version in windows.

My custom qweb template generate a good html, but the pdf does'nt work.

Default pdf reports work.

My code:

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

<odoo>

<template id="sale.sale_proposition">

<t t-set="o" t-value="doc.with_context({'lang':doc.partner_id.lang})" />

<div class="page">

<div class="oe_structure"/>

<div style="text-align:center;font-size:1.5em;font-weight:bold;font-style:italic">

<div class="row">

Proposition technique et commerciale<br />

N° <span t-field="o.name" /><br />

POUR

</div>

<div>

<img t-if="o.partner_id.image" t-att-src="'data:image/png;base64,%s' % o.partner_id.image.decode('ascii')" style="max-height: 100px;"/>

</div>

<div>

<span t-field="o.partner_id.name" /><br />

<t t-if="o.partner_id.street"><span t-field="o.partner_id.street" /><br /></t>

<t t-if="o.partner_id.street2"><span t-field="o.partner_id.street2" /><br /></t>

<span t-if="o.partner_id.zip" t-field="o.partner_id.zip" />

<span t-if="o.partner_id.city" t-field="o.partner_id.city" /><br t-if="o.partner_id.city or o.partner_id.city" />

</div>

<div t-if="o.partner_id.privilegedContactId">

À l'attention de

<span t-if="o.partner_id.privilegedContactId.title" t-field="o.partner_id.privilegedContactId.title" />

<span t-field="o.partner_id.privilegedContactId.name" />

</div>

<div>

Réalisée par

</div>

<div>

<img class="img img-responsive" src="/mymodule/static/img/coverpage.jpg"/>

</div>

</div>

<div class="oe_structure"/>

</div>

</template>

<template id="sale.report_proposition">

<t t-call="web.html_container">

<t t-foreach="docs" t-as="doc">

<t t-call="sale.sale_proposition" t-lang="doc.partner_id.lang"/>

</t>

</t>

</template>

<report

id="sale.action_report_proposition"

string="Proposition commerciale"

model="sale.order"

report_type="qweb-pdf"

file="sale.report_proposition"

name="sale.report_proposition"

print_report_name="'Proposition_commerciale_%s' % (object.name)"

/>

</odoo>


Here's what I get by opening the pdf with my text editor:



Avatar
Discard

Hello Benoît Fontaine,

Can you please check the version of wkhtmltopdf library which installed & responsible for the same.

Stable version of wkhtmltopdf is > wkhtmltopdf 0.12.2.1 (with patched qt).

Thanks

Best Answer

You will need to change logon account for odoo service. It happens when odoo is unable to access the file generated, To avoid this issue set Odoo Service Logon Account to Administrator (Whoever has full control) instead of local service.

Avatar
Discard
Best Answer

Hi Benoît Fontaine,

If like me, you don't want any formatting from Odoo then you can use

 <t t-call="web.basic_layout">

This worked for me. 

Avatar
Discard
Author

Thanks ! It's work fine

Best Answer

hey Hello Benoît Fontaine,
instead of this line <div class="page">, use <div class="article">

Avatar
Discard
Author Best Answer

I had version 0.12.1.2

I just install 0.12.2.1:

C: \ Program Files (x86) \ Odoo 11.0> thirdparty \ wkhtmltopdf --version

wkhtmltopdf 0.12.2.1 (with qt patched)

But nothing changed

Avatar
Discard

I am having exactly the same issue in Odoo v11. My new custom report works in html but the pdf is generated blank.

Have you made any progress?

Best Answer

Please follow below step:

Download wkhtmltopdf patched with qt using below command

 - sudo wget -P Downloads https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.1/wkhtmltox-0.12.1_linux-trusty-amd64.deb

Here, replace "trusty" with your OS name and if 64 bit only then keep "amd64" like that , otherwise change it to "i386" and down load the deb file.

After that execute the following commands,

cd ~/Downloads

- sudo dpkg -i wkhtmltox-0.12.1_linux-trusty-amd64.deb

Now, check wkhtmltopdf version with below command,

- wkhtmltopdf -V

Hope above step help full.

Best Thanks,

Ankit H Gandhi.

Avatar
Discard
Best Answer

Thanks Ahmad Khan - I had the same problem and your solution worked for me too ...

Avatar
Discard
Best Answer

Hello Benoît Fontaine,

You are missing <t t-call="web.external_layout"> in your report format.

wkhtmltopdf doesn't have any Issues here.

Also replied to your Github Issue in case  you are not getting mail from here.

Avatar
Discard
Best Answer

Odoo v 11.0 & Windows 10 64bits

Replace <div class="page"> with <div class="article"> as Ahmad Khansaid before. It worked for me.



Avatar
Discard