请创建一个新模块,在这个模块中,我有python类(继承自product.product模型):
class ClassProduct:
_inherit = 'product.product'
目标是在“ dxf Viewer”下的整个页面中查看扩展名为dxf的文件,请参见此处的图片:enter image description here
当我单击“ dxf Viewer”选项卡时,我将在“ dxf Viewer”选项卡下的页面中看到图像dxf 这是此视图的xml文件:
<record id="product_template_form_view_costumized" model="ir.ui.view">
<field name="name">product.template.common.form.costumized</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<xpath expr="//page[@name='inventory']" position="after">
<!-- Add your fields or attributes here -->
<page string="dxf Viewer">
<group>
<group>
<!--<field name="choose_dxf_file" widget="image"/>-->
<!--<field name="name"/>-->
<!--<field name="file1"/>-->
</group>
</group>
</page>
</xpath>
</field>
</record>
下面是一个不使用odoo的示例:enter link description here