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.

28 lines
1.2 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; width: {{this.company_id.partner_labels_width}}mm; padding: {{this.company_id.partner_labels_padding}}mm; margin: {{this.company_id.partner_labels_margin}}mm; display: inline-block; overflow: hidden;">
  14. <div t-esc="this.name_get()[0][1]" style="white-space: pre-line;" />
  15. </div>
  16. </t>
  17. </div>
  18. </body>
  19. </html>
  20. </template>
  21. <report id="report_res_partner_label"
  22. string="Labels"
  23. model="res.partner"
  24. name="partner_label.view_res_partner_label"
  25. report_type="qweb-pdf"
  26. paperformat="report.paperformat_euro"
  27. />
  28. </odoo>