citizen_zpl_printer/views/stock_picking_views.xml
2026-01-26 11:26:45 +07:00

19 lines
789 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_picking_form_inherit_citizen_zpl" model="ir.ui.view">
<field name="name">stock.picking.form.inherit.citizen.zpl</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form"/>
<field name="arch" type="xml">
<header position="inside">
<button name="action_print_citizen_label"
string="Print ZPL Barcode"
type="object"
class="oe_highlight"
invisible="state != 'done' or not has_printable_lots"/>
<field name="has_printable_lots" invisible="1"/>
</header>
</field>
</record>
</odoo>