mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
27 lines
964 B
XML
27 lines
964 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2023 ACSONE SA/NV
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="stock_move_form_view">
|
|
<field name="name">stock.move.form (in stock_picking_volume)</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="location_dest_id" position="after">
|
|
<label for="volume" />
|
|
<div>
|
|
<field name="volume" class="oe_inline" />
|
|
<field
|
|
name="volume_uom_name"
|
|
nolabel="1"
|
|
class="oe_inline"
|
|
style="margin-left:5px"
|
|
/>
|
|
</div>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|