This question has been flagged
3 Replies
6109 Views

 Hello,

I've made qweb report for account invoice and having totally custom paper format on Server. In that report, Headers & Footers are coming from layout.xml file and it is used in main report. Everything was going fine. But When i've install libraries for odoo Android App (Library Name: python-gcm), header & footer are disappeared. i.e. layout.xml is stopped working. Only body of that page is printed.Now any of the changes are not accepted in layout. & This is done just after 20 Hours the library was installed.

I can't figure out what the actual problem is. Is this problem of library that affecting the report or anything else ?


Layout.xml

..
<template id="external_layout">
<!-- Multicompany -->
<t t-if="o and 'company_id' in o">
<t t-set="company" t-value="o.company_id"></t>
</t>
<t t-if="not o or not 'company_id' in o">
<t t-set="company" t-value="res_company"></t>
</t>
<t t-call="custom_acc_invoices.external_layout_header" />
<t t-raw="0" />
<t t-call="custom_acc_invoices.external_layout_footer" />
</template>
<template id="external_layout_header">
<div class="header" style="border:1px solid black;padding:5px;margin:0%">
<table>
<tbody>
<tr>
<td>
              <!-- Data of Headers fetching from the Fields -->
</td>
</tr>
</tbody>
</table>
</div>
</template>
<template id="external_layout_footer">
<div class="footer">
<div class="text-center" style="border-top: 1px solid black;margin=30px">
<ul t-if="not company.custom_footer" class="list-inline">
         <!-- Data of Footers fetching from company Fields -->
</ul>
<t t-if="company.custom_footer">
<span t-raw="company.rml_footer"/>
</t>
<ul class="list-inline">
<li>Page:</li>
<li><span class="page"/></li>
<li>/</li>
<li><span class="topage"/></li>
</ul>
</div>
</div>
</template>


Main Report xml file

...
<template id="report_custom_acc_invoices_document">
<t t-call="custom_acc_invoices.external_layout">
<div class="page">
<table class="table table-condensed" style="border:1px solid black" width="100%">
    <!-- ..... data of body page -->
</table>
</div>
...

How can I fix this problem?  

Thanks in advance.

 


Avatar
Discard
Best Answer

Hello,

We have faces similar problem in our implementation.

We found that when we install Python GCM and call it to send notification to our Android App from Odoo, all QWeb reports stops printing Header and Footer. We still don't understand as to why this is happening?

Current work around for us is to uninstall Python GCM and also remove all code from our Odoo module that sends Notifications.

If you manage to find any solution to this problem please do share it here...


HTH


Yogesh

Avatar
Discard
Author

Works Perfectly!! +1 for this. Thank You.

Author Best Answer

Hello !!

After some of the days I getting the same errors. But now, I found permanent solution for this.

The wkhtmltopdf process will use the web.base.url system parameter as the root path to all linked files, but this parameter is automatically updated each time the Administrator is logged in. If your server resides behind some kind of proxy, that could not be reachable. You can fix this by adding one of these system parameters:

report.url, pointing to an URL reachable from your server (probably http://localhost:8069 or something similar). It will be used for this particular purpose only.

web.base.url.freeze, when set to True, will stop the automatic updates to web.base.url

So, finally I've fixed this problem.

 

Avatar
Discard