sale_report_partner_view.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <template id="report_salexpartner">
  5. <t t-call="report.html_container">
  6. <t t-call="report.external_layout">
  7. <div class="page">
  8. <style type="text/css">
  9. .crm_tcab{
  10. font-size: 3mm;
  11. font-family: Arial, Helvetica, sans-serif;
  12. }
  13. .crm_tbody{
  14. font-size: 2.8mm;
  15. font-family: Arial, Helvetica, sans-serif;
  16. }
  17. .logo1{
  18. width: 100%;
  19. top: 1.5cm;
  20. }
  21. .total1{
  22. font-size: 2.8mm;
  23. font-family: Arial, Helvetica, sans-serif;
  24. }
  25. </style>
  26. <h4 class="text-center">Listado de clientes/ventas con monto</h4>
  27. <div class="logo1" />
  28. <table class="table table-condensed">
  29. <thead class="crm_tcab">
  30. <tr class="active">
  31. <th>Cliente</th>
  32. <th>Direccion</th>
  33. <th>Email</th>
  34. <th>Telefono</th>
  35. <th>Celular</th>
  36. <th class="text-right">Facturado</th>
  37. <th>Ult.Fecha Venta</th>
  38. </tr>
  39. </thead>
  40. <t t-foreach="docs" t-as="o">
  41. <tbody>
  42. <tr>
  43. <td class="text-left">
  44. <span t-field="o.name"/>
  45. </td>
  46. <td class="text-left">
  47. <span t-field="o.street"/>
  48. </td>
  49. <td class="text-left">
  50. <span t-field="o.email"/>
  51. </td>
  52. <td class="text-left">
  53. <span t-field="o.phone"/>
  54. </td>
  55. <td class="text-left">
  56. <span t-field="o.mobile"/>
  57. </td>
  58. <td class="text-right">
  59. <span t-field="o.total_facturado"/>
  60. </td>
  61. <td class="text-left">
  62. <span t-field="o.date"/>
  63. </td>
  64. </tr>
  65. </tbody>
  66. </t>
  67. </table>
  68. </div>
  69. </t>
  70. </t>
  71. </template>
  72. </data>
  73. </openerp>