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.

52 lines
2.2 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. <?xml version="1.0"?>
  2. <odoo>
  3. <report
  4. id="partner_agreement_contract_document"
  5. model="agreement"
  6. string="Contract Document"
  7. name="agreement.report_agreement_document"
  8. file="agreement.report_agreement_document"
  9. report_type="qweb-pdf"/>
  10. <report
  11. id="partner_agreement_contract_document_preview"
  12. model="agreement"
  13. string="Contract Document Preview"
  14. name="agreement.report_agreement_document"
  15. file="agreement.report_agreement_document"
  16. report_type="qweb-html"/>
  17. <template id="report_agreement_document">
  18. <t t-name="agreement.report_agreement_document">
  19. <t t-call="web.html_container">
  20. <t t-foreach="docs" t-as="doc">
  21. <t t-call="web.external_layout">
  22. <div class="page">
  23. <h1 t-field="doc.name"/>
  24. <h2>Parties</h2>
  25. <h3>Company Information</h3>
  26. <h3>Customer Information</h3>
  27. <table class="table table-condensed">
  28. <tbody class="section_tbody">
  29. <tr t-foreach="doc.sections_ids" t-as="s">
  30. <h2 t-field="s.name"/>
  31. <span t-field="s.content"/>
  32. <table class="table table-condensed">
  33. <tbody class="clause_tbody">
  34. <tr t-foreach="s.clauses_ids" t-as="c">
  35. <h3 style="padding:20px" t-field="c.name"/>
  36. <h4 style="padding:20px" t-field="c.content"/>
  37. </tr>
  38. </tbody>
  39. </table>
  40. </tr>
  41. </tbody>
  42. </table>
  43. </div>
  44. </t>
  45. </t>
  46. </t>
  47. </t>
  48. </template>
  49. </odoo>