Files
app-odoo/app_mixin_name_en/views/res_partner_views.xml
ivan deng 1d605c1175 update
2021-08-22 01:27:31 +08:00

18 lines
665 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<!-- Partner Form视图用继承方式改写2018-11-21,ivan -->
<!--todo: 英文环境下不显示-->
<record id="app_view_partner_form" model="ir.ui.view">
<field name="name">app.res.partner.form</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='type']" position="after">
<field name="name_en_US"/>
</xpath>
</field>
</record>
</data>
</odoo>