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.
 
 
 
 
 

18 lines
891 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Stock Picking form view inherited-->
<record id="view_picking_form" model="ir.ui.view">
<field name="name">stock.picking.view.form.inherit.force.availability.in.stock</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form"/>
<field name="arch" type="xml">
<xpath expr="//button[@name='action_assign']"
position="after">
<field name="is_available" invisible="1"/>
<button string="Force Availability" class="btn-primary"
type="object" name="action_force_availability"
invisible="is_available == True or products_availability_state == 'available' or 'show_set_qty_button' == True"/>
</xpath>
</field>
</record>
</odoo>