mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2019 ACSONE SA/NV
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<!--FORM view-->
|
|
<record model="ir.ui.view" id="stock_inventory_form_view">
|
|
<field
|
|
name="name"
|
|
>stock.inventory.form (in stock_inventory_justification)</field>
|
|
<field name="model">stock.inventory</field>
|
|
<field name="inherit_id" ref="stock.view_inventory_form" />
|
|
<field name="arch" type="xml">
|
|
<field name="product_ids" position="after">
|
|
<field name="justification_ids" widget="many2many_tags" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
<!--SEARCH view-->
|
|
<record model="ir.ui.view" id="stock_inventory_search_view">
|
|
<field
|
|
name="name"
|
|
>stock.inventory.search (in stock_inventory_justification)</field>
|
|
<field name="model">stock.inventory</field>
|
|
<field name="inherit_id" ref="stock.view_inventory_filter" />
|
|
<field name="arch" type="xml">
|
|
<field name="product_ids" position="after">
|
|
<field name="justification_ids" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|