oca-purchase/odoo-bringout-oca-purchase-workflow-purchase_request/purchase_request/views/stock_picking_views.xml
Ernad Husremovic 7378b233e9 Add oca-purchase submodule with 96 purchase modules moved from oca-workflow-process
🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-30 18:00:40 +02:00

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>