mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
17 lines
630 B
XML
17 lines
630 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="stock_picking_form_view">
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="date_deadline" position="before">
|
|
<field
|
|
name="procure_method"
|
|
attrs="{'readonly': [('state', '!=', 'draft')], 'invisible': [('state', '!=', 'draft')]}"
|
|
groups="stock.group_adv_location"
|
|
/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|