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.
61 lines
2.6 KiB
61 lines
2.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Visa Management -->
|
|
<template id="report_visa_management">
|
|
<t t-call="web.html_container">
|
|
<t t-foreach="docs" t-as="doc">
|
|
<t t-call="web.external_layout">
|
|
<center>
|
|
<h2>Visa Management</h2>
|
|
</center>
|
|
<div class="text-center"
|
|
style="margin-top:50px; font-size:20px">
|
|
<strong>Approval No :</strong>
|
|
<t t-esc="doc.name"/>
|
|
<strong style="margin-left:10px">Employee Name :
|
|
</strong>
|
|
<t t-esc="doc.employee_id.name"/>
|
|
</div>
|
|
<table class="table table-bordered" style="margin-top:50px"
|
|
border="1">
|
|
<thead>
|
|
<th name="visa_application_no_id">Visa Application no
|
|
</th>
|
|
<th name="gender">Gender</th>
|
|
<th name="passport">Passport No</th>
|
|
<th name="profession">Profession</th>
|
|
<th name="expire_date">Expire Date</th>
|
|
<th name="visa_type">Visa Type</th>
|
|
<th name="state">Status</th>
|
|
</thead>
|
|
<tbody class="order_body">
|
|
<tr>
|
|
<td>
|
|
<span t-esc="doc.visa_application_no_id.name"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.gender"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.passport"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.profession"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.expire_date"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.visa_type"/>
|
|
</td>
|
|
<td>
|
|
<span t-esc="doc.state"/>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|