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.

39 lines
1.9 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-top: {{this.company_id.partner_labels_margin_top}}mm;
  17. margin-bottom: {{this.company_id.partner_labels_margin_bottom}}mm;
  18. margin-left: {{this.company_id.partner_labels_margin_left}}mm;
  19. margin-right: {{this.company_id.partner_labels_margin_right}}mm;
  20. display: inline-block;
  21. overflow: hidden;
  22. float:left;
  23. page-break-inside: avoid;">
  24. <address t-field="this.self"
  25. t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": True}'/>
  26. </div>
  27. </t>
  28. </div>
  29. </body>
  30. </html>
  31. </template>
  32. <report id="report_res_partner_label"
  33. string="Partner Labels"
  34. model="res.partner"
  35. name="partner_label.view_res_partner_label"
  36. report_type="qweb-pdf"
  37. paperformat="report.paperformat_euro"
  38. />
  39. </odoo>