跳至内容
菜单
此问题已终结

I want to put an image inside a button of a custom module in odoo 9.


I have 2 buttons in my_module.xml:

<?xml version="1.0"?>
<openerp>
    <data>
        <record id="view_my_module_tree" model="ir.ui.view">
            <field name="name">my.module.tree</field>
            <field name="model">my.module</field>
            <field name="type">tree</field>
            <field name="arch" type="xml">
                <tree string="my_module_tree" create="false" delete="false">
                    <button name="button_form" icon="cat" type="object"/>
                    <button name="button_form" icon="dog" type="object"/>                   
                </tree>
            </field>
        </record>  
    </data>
</openerp>


That works if the icons 'cat.png' and dog.png' are inside 'addons/web/static/src/img/icons/'. But I want to put this icons in my custom module.

I have created the 'my_module/static/src/img/icons/' hierarchy and put both images inside, but none of them appear in the buttons.

What I am doing wrong?

Do I need to put something in openerp.py file?

形象
丢弃
相关帖文 回复 查看 活动
2
9月 19
3860
1
9月 19
3993
0
12月 17
5678
1
4月 16
4228
3
1月 19
6204