This question has been flagged
1 Reply
2737 Views

Hello,

I'm trying to display the EAN13 field (as a number, not as a barcode) on my picking list with Report designer. I can choose the field, and in the preview it displays the right number, but I can't see it on the PDF printout.

The code I'm using is in Report designer is:

[[ picking.purchase_id.product_id.ean13 ]]

and in picking.rml:
<para style="P6">[[ picking.purchase_id.product_id.ean13 ]]</para>

Other fields I created are displayed just fine (loc_rack for example).

Thanks in advance!

Avatar
Discard
Author Best Answer

I finally found the right loop and field to get it working:

[[ repeatIn(move_lines.procurements,'procurements') ]]

[[ procurements.move_id.product_id.ean13 ]]

Avatar
Discard