I want to print labels with ode. To do this, I created my own paper format and found a way to associate it with my label. My shortcut report is a pdf report. (When I create a report, I can view it in the default paper format.)
this is a code for custom paper size
<openerp> <data> <record id="mymodule_label" model="report.paperformat"> <field name="name">Item Label</field> <field name="default" eval="True"/> <field name="format">custom</field> <field name="page_height">50</field> <field name="page_width">100</field> <field name="orientation">Portrait</field> <field name="margin_top">3</field> <field name="margin_bottom">3</field> <field name="margin_left">3</field> <field name="margin_right">3</field> <field name="header_line" eval="False"/> <field name="header_spacing">3</field> <field name="dpi">80</field> </record> </data> </openerp>
I repeat that my problem is how to associate this paper format with my pdf report
source share