1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <report
- id="report_crm_mensaje"
- string="Listado de Mensajes de Clientes"
- model="crm.mensaje"
- report_type="qweb-pdf"
- file="crm_mensaje.report_mensaje"
- name="crm_mensaje.report_mensaje"
- />
- <template id="report_mensaje">
- <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;
- }
-
- .crmc_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 Mensajes de Clientes</h4>
- <div class="logo1"> </div>
- <table class="table table-bordered">
- <thead class="crm_tcab">
- <tr class="active">
- <th class="text-left">Fecha y Hora</th>
- <th class="text-left">Cliente</th>
- <th class="text-left">Movil1</th>
- <th class="text-left">Movil2</th>
- <th class="text-left">Descripcion</th>
- <th class="text-left">Prox.Accion</th>
- <th class="text-left">Estado</th>
- </tr>
- </thead>
- <t t-foreach="docs" t-as="o">
- <tbody class="crmc_tbody">
- <td class="text-left">
- <span t-field="o.create_date"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_id"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_phone"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_mobile"/>
- </td>
- <td class="text-left">
- <span t-field="o.description"/>
- </td>
- <td class="text-left">
- <span t-field="o.action_next"/>
- </td>
- <td class="text-left">
- <span t-field="o.state"/>
- </td>
- </tbody>
- </t>
- </table>
- </div>
- </t>
- </t>
- </template>
- </data>
- </openerp>
|