You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.9 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
  3. License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) -->
  4. <openerp>
  5. <data>
  6. <template id="report_partner">
  7. <t t-call="report.html_container">
  8. <t t-call="report.internal_layout">
  9. <t t-call="report.external_layout">
  10. <div class="page">
  11. <div class="row">
  12. <h4 style="padding-left:15em;padding-top:1em">
  13. Partner Data
  14. </h4>
  15. <p>
  16. Date: <span t-esc="date"/><br/>
  17. Partner: <span t-field="partner.display_name"/>
  18. </p>
  19. <br/><br/>
  20. <t t-if="tables">
  21. <t t-foreach="tables" t-as="models">
  22. <t t-foreach="tables[models]" t-as="table">
  23. <t t-if="tables[models][table]">
  24. <table class="table table-condensed" style="border: 1px solid black; border-collapse: collapse;">
  25. <thead>
  26. <tr>
  27. <th style="border-right: 1px solid black;"><span t-esc="table"/></th>
  28. </tr>
  29. <tr>
  30. <th style="border-right: 1px solid black;" t-foreach="tables[models][table][0]" t-as="head">
  31. <span t-esc="head"/>
  32. </th>
  33. </tr>
  34. </thead>
  35. <tr t-foreach="tables[models][table]" t-as="row">
  36. <td style="border-right: 1px solid black;" t-foreach="row" t-as="field">
  37. <span t-esc="row[field]"/>
  38. </td>
  39. </tr>
  40. </table>
  41. </t>
  42. <br/>
  43. </t>
  44. </t>
  45. </t>
  46. <p t-if="not tables">
  47. <strong>We have no data for this partner.</strong>
  48. </p>
  49. </div>
  50. </div>
  51. </t>
  52. </t>
  53. </t>
  54. </template>
  55. <!--<template id="report_partner">-->
  56. <!--<t t-call="report.html_container">-->
  57. <!--<t t-call="gdpr_partner_report.report_partner"/>-->
  58. <!--</t>-->
  59. <!--</template>-->
  60. </data>
  61. </openerp>