<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <record id="product_label_layout_form_picking" model="ir.ui.view">
        <field name="name">product.label.layout.form</field>
        <field name="model">product.label.layout</field>
        <field name="mode">primary</field>
        <field name="priority">25</field>
        <field name="inherit_id" ref="product.product_label_layout_form"/>
        <field name="arch" type="xml">
            <xpath expr='//field[@name="custom_quantity"]' position="before">
                <field name="move_quantity"/>
            </xpath>
            <xpath expr="//field[@name='custom_quantity']" position="attributes">
                <attribute name="invisible">move_quantity == 'move'</attribute>
            </xpath>
        </field>
    </record>
    <record id="product_label_layout_form_stock" model="ir.ui.view">
        <field name="name">product.label.layout.form.stock</field>
        <field name="model">product.label.layout</field>
        <field name="inherit_id" ref="product.product_label_layout_form"/>
        <field name="arch" type="xml">
            <xpath expr='//field[@name="pricelist_id"]' position="after">
                <field name="zpl_template" invisible="'zpl' not in print_format"/>
                <field name="zpl_preview" invisible="'zpl' not in print_format" widget="image" options="{'img_class': 'border'}" nolabel="1"/>
            </xpath>
        </field>
    </record>
</odoo>
