<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <data>
        <template id="label_transfer_template_view">
            <t t-foreach="docs" t-as="picking">

                <t t-foreach="picking.move_lines" t-as="move">
                    <t t-foreach="move.move_line_ids" t-as="move_line">
                        <t t-if="move_line.product_uom_id.category_id.measure_type == 'unit'">
                            <t t-set="qty" t-value="int(move_line.qty_done)"/>
                        </t>
                        <t t-else="">
                            <t t-set="qty" t-value="1"/>
                        </t>
                        <t t-foreach="range(qty)" t-as="item">
                            <t t-translation="off">
^XA
^FO100,50
^A0N,44,33^FD<t t-esc="move_line.product_id.display_name"/>^FS
^FO100,100
<t t-if="move_line.product_id.tracking != 'none' and move_line.lot_name">
^A0N,44,33^FDLN/SN: <t t-esc="move_line.lot_name"/>^FS
^FO100,150^BY3
^BCN,100,Y,N,N
^FD<t t-esc="move_line.lot_name"/>^FS
</t>
<t t-if="move_line.product_id.tracking == 'none' and move_line.product_id.barcode">
^BCN,100,Y,N,N
^FD<t t-esc="move_line.product_id.barcode"/>^FS
</t>
^XZ
                            </t>
                        </t>
                    </t>
                </t>
            </t>
        </template>

        <template id="label_picking_type_view">
            <t t-foreach="docs" t-as="operation">
                <t t-translation="off">
^XA
^FO100,50
^A0N,44,33^FD<t t-esc="operation.name"/>^FS
<t t-if="operation.barcode">
^FO100,100
^BCN,100,Y,N,N
^FD<t t-esc="operation.barcode"/>^FS
</t>
^XZ
                </t>
            </t>
        </template>
    </data>
</odoo>
