1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <report
- id="action_report_hrattendanceerror"
- model="hr.employee"
- string="Attendance Error Report"
- report_type="qweb-pdf"
- name="informe_hr_attendance.report_asistencia"
- file="informe_hr_attendance.report_asistencia"
- />
- <template id="report_asistencia">
- <t t-call="report.html_container">
- <t t-call="report.external_layout">
- <div class="page">
- <style type="text/css">
- .crm_tcab{
- font-size: 3mm;
- font-family: Arial, Helvetica, sans-serif;
- }
-
- .ven_tbody{
- font-size: 2.8mm;
- font-family: Arial, Helvetica, sans-serif;
- }
- .taxtotal{
- font-size: 2.8mm;
- }
- .total{
- font-size: 2.8mm;
- }
- .untotal{
- font-size: 2.8mm;
- }
- .logo1{
- width: 100%;
- top: 1.5cm;
- }
-
- </style>
- <h4 class="text-center">Listado de Asistencia de Funcionarios</h4>
- <div class="logo1"> </div>
- <table class="table table-bordered">
- <thead class="crm_tcab">
- <tr class="active">
- <th class="text-center">Nombre y Apellido</th>
- <th class="text-center">Fecha</th>
- <th class="text-center">Acción</th>
- <th class="text-center">Obs.</th>
- </tr>
- </thead>
- <t t-foreach="docs" t-as="o">
- <tbody class="veh_tbody">
- <td class="text-left">
- <span t-field="o.employee_id.name"/>
- </td>
- <td class="text-left">
- <span t-field="o.name"/>
- </td>
- <td class="text-left">
- <span t-field="o.action"/>
- </td>
- <td class="text-left">
- <span t-field="o.action_desc"/>
- </td>
- </tbody>
- </t>
- </table>
- </div>
- </t>
- </t>
- </template>
- </data>
- </openerp>
|