mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
21 lines
905 B
XML
21 lines
905 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)
|
|
Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo <http://odoo.pnlug.it>)
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) -->
|
|
|
|
<odoo>
|
|
<!-- extends nonconformity form view adding new field inspection reference -->
|
|
<record id="view_mgmtsystem_nonconformity_inspection" model="ir.ui.view">
|
|
<field name="name">view.mgmtsystem.nonconformity.inspection</field>
|
|
<field name="model">mgmtsystem.nonconformity</field>
|
|
<field name="inherit_id"
|
|
ref="mgmtsystem_nonconformity.view_mgmtsystem_nonconformity_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="system_id" position="after">
|
|
<field name="inspection_id"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|