如何在qweb pdf中进行以下更正?

时间:2015-12-28 10:22:46

标签: report odoo odoo-8 qweb

我一直在使用qweb pdf for tables part,其中包括以下部分:

<div class="row">
    <h3><font color="blue">Action Items:</font></h3>
    <table class="table table-bordered">
        <thead>
            <tr>
                <th>Action</th>
                <th>Assigned To</th>
                <!--<th class="text-center">Ref.</th>-->
                <th>Due Date</th>
                <th>Status</th>
            </tr>
            <br/>
            <br/>
        </thead>
        <tbody>
            <tr t-foreach="o.action" t-as="line">
                <td><span t-field="line.act_ion"/></td>
                <td>
                    <span t-field="line.asgnd_to"/>
                </td>
                <td>
                    <span t-field="line.due_date"/>
                </td>
                <td>
                    <span t-field="line.Status"/>
                </td>
            </tr>
        </tbody>
    </table>
</div>

我遇到了一些问题,例如像表头一样的图像,表格正在新页面中碰撞Image table

1 个答案:

答案 0 :(得分:0)

div 标记之外创建表格,并在表格中设置以下类: class =&#34; table table-condensed&#34;