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.

31 lines
1.4 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <template id="view_res_partner_label">
  4. <t t-call="web.basic_layout">
  5. <t t-foreach="docs.with_context(show_address=True)" t-as="this">
  6. <div t-attf-style="height: {{this.company_id.partner_labels_height}}mm;
  7. width: {{this.company_id.partner_labels_width}}mm;
  8. padding: {{this.company_id.partner_labels_padding}}mm;
  9. margin-top: {{this.company_id.partner_labels_margin_top}}mm;
  10. margin-bottom: {{this.company_id.partner_labels_margin_bottom}}mm;
  11. margin-left: {{this.company_id.partner_labels_margin_left}}mm;
  12. margin-right: {{this.company_id.partner_labels_margin_right}}mm;
  13. display: inline-block;
  14. overflow: hidden;
  15. float:left;
  16. page-break-inside: avoid;">
  17. <address t-field="this.self"
  18. t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": True}'
  19. />
  20. </div>
  21. </t>
  22. </t>
  23. </template>
  24. <report id="report_res_partner_label"
  25. string="Partner Labels"
  26. model="res.partner"
  27. name="partner_label.view_res_partner_label"
  28. report_type="qweb-pdf"
  29. paperformat="base.paperformat_euro"
  30. />
  31. </odoo>