You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
774 B
15 lines
774 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!--Hide the print button in stock.picking.batch-->
|
|
<record id="stock_picking_batch_form" model="ir.ui.view">
|
|
<field name="name">stock.picking.batch.view.form.inherit.hide.all.print.button</field>
|
|
<field name="model">stock.picking.batch</field>
|
|
<field name="inherit_id" ref="stock_picking_batch.stock_picking_batch_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='action_print']" position="replace">
|
|
<button name="action_print" states="in_progress,done" string="Print" type="object"
|
|
groups="!hide_all_print_button.hide_all_print_button_group_batch_transfer"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|