You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

74 lines
3.1 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!--All dealer based report-->
<template id="all_dealer_based_report_pdf">
<t t-call="web.html_container">
<t t-call="web.external_layout">
<div class="page">
<div class="text-center">
<h1 style="font-size:35px"><b>Dealer List</b></h1>
</div>
<br/><br/>
<t t-if="form_data.get('from_date')">
From Date :
<t t-esc="form_data['from_date']"/>
</t>
<br/><br/>
<t t-if="form_data.get('to_date')">
To Date :
<t t-esc="form_data['to_date']"/>
</t>
<br/><br/>
<div class="row">
<table class="table">
<thead>
<tr>
<th width="10px">
<strong>Sl.no</strong>
</th>
<th width="10px">
<strong>Reference</strong>
</th>
<th width="10px">
<strong>Dealer Name</strong>
</th>
<th width="10px">
<strong>Signed On</strong>
</th>
<th width="10px">
<strong>Email</strong>
</th>
<th width="10px">
<strong>Franchise Agreement</strong>
</th>
</tr>
</thead>
<t t-foreach="fetch_all_details" t-as="line">
<tr>
<td>
<span t-esc="line_index+1"/>
</td>
<td>
<span t-esc="line['serial_no']"/>
</td>
<td>
<span t-esc="line['name']"/>
</td>
<td>
<span t-esc="line['signed_on']"/>
</td>
<td>
<span t-esc="line['dealer_mail']"/>
</td>
<td>
<span t-esc="line['agreement_type']"/>
</td>
</tr>
</t>
</table>
</div>
</div>
</t>
</t>
</template>
</odoo>