Header 与合作伙伴分类帐报告中的 body 重叠
Header overlapping with body in partner ledger report
在合作伙伴分类帐报告中,Header 与 PDF 中的 body 重叠 report.In header 我添加了公司名称和地址,这与 table数据(头数据)
<template id="report_mypartnerledger" inherit_id="account.report_partnerledger">
<xpath expr="//div[@class='page']" position="replace">
<div class="page">
<h2 align="center">Party Ledger</h2>
<div class="col-xs-3">
<strong>Period:</strong>
<p>
<p t-if="data['form']['filter'] == 'filter_period'">
Start Date: <span t-esc="get_start_period(data)"/><br/>
End Date: <span t-esc="get_end_period(data)"/>
</p>
<p t-if="data['form']['filter'] == 'filter_date'">
Start Date: <span t-esc="formatLang(get_start_date(data), date=True)"/><br />
End Date: <span t-esc="formatLang(get_end_date(data), date=True)"/>
</p>
</p>
</div>
<p style="float:right;margin:0;padding:0">
<b>Date:</b><span t-usertime="%d-%m-%Y %H:%M:%S %p" />
</p><br></br><br></br>
<table class="table table-condensed">
<thead>
<tr>
<th>Date</th>
<th>Document</th>
<th>Invoice</th>
<th>Debit</th>
<th>Credit</th>
<th>Balance</th>
<th t-if="amount_currency">Currency</th>
</tr>
</thead>
...
转到设置 -> 技术 -> 报告 -> 报告,select 从那里生成报告,如果没有纸质格式,则通过打开报告为报告添加纸质格式。
然后回到Settings -> Technical -> Reports -> Paper formats,select相应的paper format,然后调整它的top margin, header spacing等
在合作伙伴分类帐报告中,Header 与 PDF 中的 body 重叠 report.In header 我添加了公司名称和地址,这与 table数据(头数据)
<template id="report_mypartnerledger" inherit_id="account.report_partnerledger">
<xpath expr="//div[@class='page']" position="replace">
<div class="page">
<h2 align="center">Party Ledger</h2>
<div class="col-xs-3">
<strong>Period:</strong>
<p>
<p t-if="data['form']['filter'] == 'filter_period'">
Start Date: <span t-esc="get_start_period(data)"/><br/>
End Date: <span t-esc="get_end_period(data)"/>
</p>
<p t-if="data['form']['filter'] == 'filter_date'">
Start Date: <span t-esc="formatLang(get_start_date(data), date=True)"/><br />
End Date: <span t-esc="formatLang(get_end_date(data), date=True)"/>
</p>
</p>
</div>
<p style="float:right;margin:0;padding:0">
<b>Date:</b><span t-usertime="%d-%m-%Y %H:%M:%S %p" />
</p><br></br><br></br>
<table class="table table-condensed">
<thead>
<tr>
<th>Date</th>
<th>Document</th>
<th>Invoice</th>
<th>Debit</th>
<th>Credit</th>
<th>Balance</th>
<th t-if="amount_currency">Currency</th>
</tr>
</thead>
...
转到设置 -> 技术 -> 报告 -> 报告,select 从那里生成报告,如果没有纸质格式,则通过打开报告为报告添加纸质格式。 然后回到Settings -> Technical -> Reports -> Paper formats,select相应的paper format,然后调整它的top margin, header spacing等