mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
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_picking_form_view">
|
|
<field name="name">stock.picking.form (in stock_picking_volume)</field>
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='other_infos']" position="before">
|
|
<group name='logistics_data' string="Logistics">
|
|
<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>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|