incoterm_id is a field of purchase module, not purchase_stock ; so move the inherit of this field from purchase_stock_usability_akretion to purchase_usability_akretion
22 lines
747 B
XML
22 lines
747 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2023-2024 Akretion France (https://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_move_tree" model="ir.ui.view">
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_tree" />
|
|
<field name="arch" type="xml">
|
|
<!-- picking.purchase_id is a native field ; it is added to the picking form view in this module -->
|
|
<field name="product_id" position="after">
|
|
<field name="product_supplier_code" optional="hide" column_invisible="not parent.purchase_id"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|