my_report_partnerfecha_view.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <template id="report_posxpartnerfecha">
  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 por fecha</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 class="text-left">Facturado</th>
  33. </tr>
  34. </thead>
  35. <t t-foreach="docs" t-as="o">
  36. <tbody>
  37. <tr>
  38. <td class="text-left">
  39. <span t-field="o.name"/>
  40. </td>
  41. <td class="text-left">
  42. <span t-field="o.date"/>
  43. </td>
  44. </tr>
  45. </tbody>
  46. </t>
  47. </table>
  48. </div>
  49. </t>
  50. </t>
  51. </template>
  52. </data>
  53. </openerp>