This question has been flagged
1 Reply
12213 Views

I would like to print product labels on a Dymo Labelprinter 450. How to do this? And how to manage the size and the fonts?

Update 29-07-2013

I see the question is upvoted. Thank you all!

I don't see any answers or comments in 4 months .... Please comment what you need to know for a little bit of help.

Avatar
Discard
Best Answer

I had a similar requirement, print the label on a Brother label printer which accepts the size 62mmx28mm.

The page size can be set in the template tag like this:

<document>
        <template pageSize="(175.78,79.38)" leftMargin="0.0cm" rightMargin="0.0cm" topMargin="0.0cm" bottomMargin="0.0cm" title="Address list" author="Generated by Open ERP">

The pageSize is given in DTP-point, in this case:

175.78 DTP-point = 62mm and 79.38 DTP-point = 28mm

Avatar
Discard
Author

This looks good! But where can I find "in the template tag". Is it somewhere in the OpenErp settings?

You can find it in the product_label.xsl file. It is located on your openerp server.

Author

Thank you, this is perfect!