orden_servicio_report.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <!-- Vista del informe -->
  5. <report
  6. id="report_orden_servicio"
  7. model="orden.servicio"
  8. string="Orden de Servicio Report"
  9. report_type="qweb-pdf"
  10. name="orden_servicio.report_orden_servicio1"
  11. file="orden_servicio.report_orden_servicio1"
  12. attachment_use="False"
  13. />
  14. <!-- Plantilla del informe en formato PDF -->
  15. <template id="report_orden_servicio1">
  16. <t t-call="report.html_container">
  17. <t t-foreach="docs" t-as="o">
  18. <t t-call="report.external_layout">
  19. <div class="page">
  20. <h2>Orden de Servicio</h2>
  21. <table class="table table-condensed">
  22. <thead>
  23. <tr>
  24. <th>Referencia</th>
  25. <th>Cliente</th>
  26. <th>Fecha Orden</th>
  27. <th>Obra</th>
  28. <th>Dir. Obra</th>
  29. <th>Fecha Inic.</th>
  30. <th>Fecha Fin</th>
  31. <th>T. Costo Obra</th>
  32. <th>Estado</th>
  33. </tr>
  34. </thead>
  35. <tbody>
  36. <tr>
  37. <td><span t-field="o.name"/></td>
  38. <td><span t-field="o.partner_id.name"/></td>
  39. <td><span t-field="o.order_date"/></td>
  40. <td><span t-field="o.name_obra"/></td>
  41. <td><span t-field="o.dir_obra"/></td>
  42. <td><span t-field="o.planned_start_date"/></td>
  43. <td><span t-field="o.planned_end_date"/></td>
  44. <td><span t-field="o.total_obra"/></td>
  45. <td><span t-field="o.state"/></td>
  46. </tr>
  47. </tbody>
  48. </table>
  49. </div>
  50. </t>
  51. </t>
  52. </t>
  53. </template>
  54. </data>
  55. </openerp>