mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
17 lines
606 B
XML
17 lines
606 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record id="stock_location_form_inherit" model="ir.ui.view">
|
|
<field name="name">stock.location.name.format</field>
|
|
<field name="model">stock.location</field>
|
|
<field name="inherit_id" ref="stock.view_location_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="usage" position="after">
|
|
<field
|
|
name="location_name_format"
|
|
attrs="{'invisible': [('location_kind', '=', 'bin')]}"
|
|
/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|