oca-project/odoo-bringout-oca-project-project_stock/project_stock/views/project_project_view.xml
Ernad Husremovic 6094c218b2 Move 124 sale modules to oca-sale, create oca-project with 56 project modules from oca-workflow-process
🤖 Generated with [Claude Code](https://claude.ai/code)

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

24 lines
994 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="edit_project" model="ir.ui.view">
<field name="name">project.project.form</field>
<field name="model">project.project</field>
<field name="inherit_id" ref="project.edit_project" />
<field name="arch" type="xml">
<xpath expr="///group[@name='extra_settings']" position="before">
<group string="Stock" name="stock_misc" groups="stock.group_stock_user">
<field name="picking_type_id" />
<field
name="location_id"
groups="stock.group_stock_multi_locations"
/>
<field
name="location_dest_id"
groups="stock.group_stock_multi_locations"
/>
<field name="stock_analytic_date" />
</group>
</xpath>
</field>
</record>
</odoo>