123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <report
- id="report_phonecall_report"
- string="Listado de Llamadas de Clientes"
- model="crm.phonecall"
- report_type="qweb-pdf"
- file="informes_phone_call.report_crm_phonecall"
- name="informes_phone_call.report_crm_phonecall"
- />
- <template id="report_crm_phonecall">
- <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;
- }
-
- .crm_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 Llamadas de Clientes</h4>
- <div class="logo1"> </div>
- <table class="table table-bordered">
- <thead class="crm_tcab">
- <tr class="active">
- <th class="text-center">Fecha y Hora</th>
- <th class="text-center">Cliente</th>
- <th class="text-center">Motivo de la Llamada</th>
- <th class="text-center">Usuario</th>
- <th class="text-center">Telefono</th>
- <th class="text-center">Prioridad</th>
- </tr>
- </thead>
- <t t-foreach="docs" t-as="o">
- <tbody class="crm_tbody">
- <td class="text-left">
- <span t-field="o.date"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_id.name"/>
- </td>
- <td class="text-left">
- <span t-field="o.name"/>
- </td>
- <td class="text-left">
- <span t-field="o.user_id"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_phone"/>
- </td>
- <td class="text-left">
- <span t-field="o.priority"/>
- </td>
- </tbody>
- </t>
- </table>
- </div>
- </t>
- </t>
- </template>
- </data>
- </openerp>
|