Hi everyone,
I have modified header view to get personnalized report header.
But I do not know how to increase space between my new header and the beginning of the page (customer address for example).
Any idea ?
Regards,
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi everyone,
I have modified header view to get personnalized report header.
But I do not know how to increase space between my new header and the beginning of the page (customer address for example).
Any idea ?
Regards,
Did you try by adjusting the top margin of your div containing customer address?
For eg:
<template id="report.new_layout_header">
<div class="header">
<div class="row">
<div class="col-xs-12">
<div style="border-bottom: 1px solid black;"></div>
</div>
</div>
<div class="row mt8 mb8">
<div class="col-xs-5">
<div t-field="company.partner_id"
t-field-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": true}'
style="border:1px solid #000000;"/>
</div>
</div>
</div>
</template>
Luo tili jo tänään nauttiaksesi yksinoikeusominaisuuksista ja osallistuaksesi mahtavaan yhteisöömme!
RekisteröidyAiheeseen liittyviä artikkeleita | Vastaukset | Näkymät | Toimenpide | |
---|---|---|---|---|
|
1
jouluk. 20
|
6187 | ||
QWeb Report Can't Access Company Fields
Ratkaistu
|
|
3
jouluk. 16
|
9102 | |
|
1
maalisk. 15
|
7410 | ||
|
1
huhtik. 25
|
485 | ||
|
2
maalisk. 25
|
626 |
Go to Settings > Reports > Paper format. Choose the paper format you're using and play around with those margins. I believe the top margin is the one controlling your height for the report header.
Yenthe answered the correct .....