mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[FIX] report_label: work around base.automation's inheritance of server actions
This commit is contained in:
@@ -58,10 +58,17 @@ Usage
|
|||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
Known issues:
|
||||||
|
|
||||||
* `wkhtmltopdf` doesn't always respect dpi, and mm measures don't match. For
|
* `wkhtmltopdf` doesn't always respect dpi, and mm measures don't match. For
|
||||||
this matter, it's recommended to use this module along with
|
this matter, it's recommended to use this module along with
|
||||||
`report_wkhtmltopdf_param` and enable `--disable-smart-shrinking`.
|
`report_wkhtmltopdf_param` and enable `--disable-smart-shrinking`.
|
||||||
|
|
||||||
|
* This module depends on `base_automation` only because this module extends
|
||||||
|
`ir.actions.server` with a new kind of action, and `base.automation` inherits
|
||||||
|
from `ir.actions.server` by delegation in such a way that the modules cannot
|
||||||
|
be loaded in another order.
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"category": "Reporting",
|
"category": "Reporting",
|
||||||
"maintainers": ["ivantodorovich"],
|
"maintainers": ["ivantodorovich"],
|
||||||
"depends": [
|
"depends": [
|
||||||
"base",
|
"base_automation",
|
||||||
],
|
],
|
||||||
"data": [
|
"data": [
|
||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
Known issues:
|
||||||
|
|
||||||
* `wkhtmltopdf` doesn't always respect dpi, and mm measures don't match. For
|
* `wkhtmltopdf` doesn't always respect dpi, and mm measures don't match. For
|
||||||
this matter, it's recommended to use this module along with
|
this matter, it's recommended to use this module along with
|
||||||
`report_wkhtmltopdf_param` and enable `--disable-smart-shrinking`.
|
`report_wkhtmltopdf_param` and enable `--disable-smart-shrinking`.
|
||||||
|
|
||||||
|
* This module depends on `base_automation` only because this module extends
|
||||||
|
`ir.actions.server` with a new kind of action, and `base.automation` inherits
|
||||||
|
from `ir.actions.server` by delegation in such a way that the modules cannot
|
||||||
|
be loaded in another order.
|
||||||
|
|||||||
@@ -405,10 +405,15 @@ QWeb template for you label.</p>
|
|||||||
</div>
|
</div>
|
||||||
<div class="section" id="known-issues-roadmap">
|
<div class="section" id="known-issues-roadmap">
|
||||||
<h1><a class="toc-backref" href="#id3">Known issues / Roadmap</a></h1>
|
<h1><a class="toc-backref" href="#id3">Known issues / Roadmap</a></h1>
|
||||||
|
<p>Known issues:</p>
|
||||||
<ul class="simple">
|
<ul class="simple">
|
||||||
<li><cite>wkhtmltopdf</cite> doesn’t always respect dpi, and mm measures don’t match. For
|
<li><cite>wkhtmltopdf</cite> doesn’t always respect dpi, and mm measures don’t match. For
|
||||||
this matter, it’s recommended to use this module along with
|
this matter, it’s recommended to use this module along with
|
||||||
<cite>report_wkhtmltopdf_param</cite> and enable <cite>–disable-smart-shrinking</cite>.</li>
|
<cite>report_wkhtmltopdf_param</cite> and enable <cite>–disable-smart-shrinking</cite>.</li>
|
||||||
|
<li>This module depends on <cite>base_automation</cite> only because this module extends
|
||||||
|
<cite>ir.actions.server</cite> with a new kind of action, and <cite>base.automation</cite> inherits
|
||||||
|
from <cite>ir.actions.server</cite> by delegation in such a way that the modules cannot
|
||||||
|
be loaded in another order.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="bug-tracker">
|
<div class="section" id="bug-tracker">
|
||||||
|
|||||||
Reference in New Issue
Block a user