odoo_dev 开发培训作业:图书管理系统
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

39 lines
1.5KB

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <odoo>
  3. <report id="action_library_book_sql_report"
  4. string="Library Book SQL Report"
  5. model="library.book.report"
  6. report_type="qweb-html"
  7. name="library_app.report_library_book_sql"
  8. />
  9. <template id="report_library_book_sql">
  10. <t t-call="web.html_container">
  11. <t t-call="web.external_layout">
  12. <div class="page">
  13. <table class="table table-striped">
  14. <tr>
  15. <th>Title</th>
  16. <th>Published</th>
  17. <th>Date</th>
  18. </tr>
  19. <t t-foreach="docs" t-as="o">
  20. <tr>
  21. <td class="col-xs-6">
  22. <span t-field="o.name"/>
  23. </td>
  24. <td class="col-xs-3">
  25. <span t-field="o.publisher_id"/>
  26. </td>
  27. <td class="col-xs-3">
  28. <span t-field="o.date_published"
  29. t-options="{'widget':'date'}"
  30. />
  31. </td>
  32. </tr>
  33. </t>
  34. </table>
  35. </div>
  36. </t>
  37. </t>
  38. </template>
  39. </odoo>
上海开阖软件有限公司 沪ICP备12045867号-1