答案 0 :(得分:2)
<强>视图/ stock.xml 强>:
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_production_lot_form_inherit" model="ir.ui.view">
<field name="model">stock.production.lot</field>
<field name="inherit_id" ref="stock.view_production_lot_form"/>
<field name="arch" type="xml">
<group name="main_group" position="inside">
<group>
<!-- Add your fields here. -->
</group>
</group>
</field>
</record>
</odoo>
注意:您需要将stock
模块添加到自定义模块依赖项中
并在自定义模块清单的views/stock.xml
文件中包含data
文件
列表。