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.

36 lines
1.6 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <template id="view_res_partner_label">
  4. <t t-raw="'&lt;base href=%s&gt;' % base_url"/>
  5. &lt;!DOCTYPE html&gt;
  6. <html>
  7. <head>
  8. <meta charset="utf-8"/>
  9. </head>
  10. <body class="container">
  11. <div class="page">
  12. <t t-foreach="docs.with_context(show_address=True)" t-as="this">
  13. <div t-attf-style="height: {{this.company_id.partner_labels_height}}mm;
  14. width: {{this.company_id.partner_labels_width}}mm;
  15. padding: {{this.company_id.partner_labels_padding}}mm;
  16. margin: {{this.company_id.partner_labels_margin}}mm;
  17. display: inline-block;
  18. overflow: hidden;
  19. float:left;
  20. page-break-inside: avoid;">
  21. <address t-field="this.self"
  22. t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": True}'/>
  23. </div>
  24. </t>
  25. </div>
  26. </body>
  27. </html>
  28. </template>
  29. <report id="report_res_partner_label"
  30. string="Partner Labels"
  31. model="res.partner"
  32. name="partner_label.view_res_partner_label"
  33. report_type="qweb-pdf"
  34. paperformat="report.paperformat_euro"
  35. />
  36. </odoo>