Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <odoo>
  2. <data>
  3. <report
  4. id="libreria.report_libro"
  5. model="libreria.libro"
  6. string="Informe Libro"
  7. name="libreria.report_libro_view"
  8. file="libreria.report_libro_view"
  9. report_type="qweb-html"/>
  10.  
  11. <template id="report_libro_view">
  12. <t t-call="report.html_container">
  13. <t t-foreach="docs" t-as="libro">
  14. <t t-call="report.external_layout">
  15. <div class ="page">
  16. <h2 t-field="libro.name"/>
  17. <div>
  18. <strong>Precio:</strong>
  19. <span t-field="libro.precio"/>
  20. </div>
  21. <div>
  22. <strong>Ejemplares:</strong>
  23. <span t-field="libro.ejemplares"/>
  24. </div>
  25. <div>
  26. <strong>Categoria:</strong>
  27. <span t-field="libro.categoria"/>
  28. </div>
  29. </div>
  30. </t>
  31. </t>
  32. </t>
  33. </template>
  34. </data>
  35. </odoo>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement