2015-12-28 33 views
0

我一直在努力qweb PDF格式的表格部分具有以下部分:如何在qweb pdf中進行以下更正?

<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

+0

請檢查如果y你有[wkhtmltopdf]的正確版本(https://www.odoo.com/documentation/8.0/setup/install.html#deb) – ChesuCR

+0

是的,它被安裝0.12.2.1是版本ChesuCR –

+0

正確的版本是這個一:'wkhtmltopdf 0.12.1(帶補丁的qt)' – ChesuCR

回答

0

創建DIV標籤外,並設置表下面的類:類= 「table表冷凝」

相關問題