pycharm-odoo icon indicating copy to clipboard operation
pycharm-odoo copied to clipboard

Automatically insert template when creating view files

Open trinhanhngoc opened this issue 1 year ago • 0 comments

E.g. when creating res_partner_views.xml, the following template will be inserted automatically:

<odoo>
    <record id="..." model="ir.ui.view">
        <field name="name">...</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="..." />
        <field name="arch" type="xml">
        </field>
    </record>
<odoo>

trinhanhngoc avatar Apr 10 '23 14:04 trinhanhngoc