I have created a custom report with this below code.But when i try to print this report .It returns blank page.I tried by using web.external_layout,basic_layout .Installed wkhtmltopdf .Nothing helps me.
id="monthly_sales_report">
t-call="web.html_container">
t-foreach="docs" t-as="o">
t-call="web.internal_layout">
class="page">
class="table table-bordered" style="border: 1px solid #000;">
t-set="counter" t-value="0"/>
style="text-align: center;color: #000;text-color: #000;">Product
style="text-align: center;color: #000;text-color: #000;">Quantity
style="text-align: center;color: #000;text-color: #000;">Amount
style="text-align: center;color: #000;text-color: #000;">Order Date
t-foreach='o.order_line' t-as='line'>
style="height:5px;text-align: center;color: #000;text-color: #000">t-esc="line.product_id.name"/>
style="height:5x;text-align: center;color: #000;text-color: #000;">t-esc="line.qty_invoiced"/>
style="height:5x;text-align: center;color: #000;text-color: #000;">t-esc="line.price_unit"/>
style="height:5x;text-align: center;color: #000;text-color: #000;">t-esc="doc.date_order"/>
Can anyone please help me.