mirror of
https://github.com/bringout/oca-purchase.git
synced 2026-04-20 08:02:05 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
676 B
XML
18 lines
676 B
XML
<odoo>
|
|
<record id="view_picking_form" model="ir.ui.view">
|
|
<field name="name">stock.picking.form</field>
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath
|
|
expr="//field[@name='move_ids_without_package']/form/group"
|
|
position="after"
|
|
>
|
|
<newline />
|
|
<group name="allocations" string="Purchase Request Allocations">
|
|
<field name="purchase_request_allocation_ids" />
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|