1

会社のレポートヘッダーを最初のページにのみ表示したい.PDFで美しいqwebレポートができました。しかし、レポート (販売注文など) に複数のページがある場合、ヘッダーは各ページにあります。

最初のページにのみ会社のヘッダーを配置する方法は?

ありがとう、

4

3 に答える 3

0

ヘッダーは、最初の page.report で一度だけ表示されます。他は空です

<template id="report_quotation_header" inherit_id="report.external_layout_header">
           <xpath expr="//div[@class='header']" position="replace">
        <div class="header">
            <t t-set="data_report_margin_top" t-value="12"/>
            <t t-set="data_report_header_spacing" t-value="9"/>
            <t t-set="data_report_dpi" t-value="110"/>
        <div class="row">
        <div class="col-xs-3" name="company_address">
            <div t-field="company.partner_id" 
                t-field-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": true}'
                style="border-bottom: 1px solid black;"/>
        </div>
    </div>
        </div>
        </xpath>
    </template>  <!-- end teamplate header-->
于 2015-12-21T09:34:45.660 に答える